295 lines
9.4 KiB
PHP
295 lines
9.4 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | likeshop开源商城系统
|
||
// +----------------------------------------------------------------------
|
||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||
// | gitee下载:https://gitee.com/likeshop_gitee
|
||
// | github下载:https://github.com/likeshop-github
|
||
// | 访问官网:https://www.likeshop.cn
|
||
// | 访问社区:https://home.likeshop.cn
|
||
// | 访问手册:http://doc.likeshop.cn
|
||
// | 微信公众号:likeshop技术社区
|
||
// | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
|
||
// | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
|
||
// | 禁止对系统程序代码以任何目的,任何形式的再发布
|
||
// | likeshop团队版权所有并拥有最终解释权
|
||
// +----------------------------------------------------------------------
|
||
// | author: likeshop.cn.team
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\admin\logic;
|
||
|
||
use app\common\model\Ad;
|
||
use app\admin\model\AdPosition;
|
||
use app\common\server\UrlServer;
|
||
use think\Db;
|
||
use think\Exception;
|
||
|
||
class AdLogic
|
||
{
|
||
|
||
/**
|
||
* 广告管理列表
|
||
* @param $get
|
||
* @return array
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @throws \think\exception\DbException
|
||
*/
|
||
public static function lists($get)
|
||
{
|
||
$ad = new Ad();
|
||
$where = [];
|
||
$where[] = ['del', '=', 0];
|
||
if ($get['client'] != '') {
|
||
$where[] = ['client', '=', $get['client']];
|
||
}
|
||
if (isset($get['keyword']) && $get['keyword']) {
|
||
$where[] = ['name', 'like', '%' . $get['keyword'] . '%'];
|
||
}
|
||
|
||
if (isset($get['pid']) && $get['pid'] != '') {
|
||
$where[] = ['pid', '=', $get['pid']];
|
||
}
|
||
|
||
$ad_count = $ad
|
||
->where($where)
|
||
->count();
|
||
$ad_list = $ad->where($where)
|
||
->page($get['page'], $get['limit'])
|
||
->order('id desc')
|
||
->select();
|
||
|
||
$position = AdPosition::where('del', 0)->column('id,name', 'id');
|
||
|
||
foreach ($ad_list as $item) {
|
||
$item['image'] = UrlServer::getFileUrl($item['image']);
|
||
|
||
$url = '';
|
||
$item['client_name'] = Ad::getAdTypeDesc($item['client']);
|
||
if (isset($position[$item['pid']])) {
|
||
$item['position_name'] = $position[$item['pid']];
|
||
}
|
||
switch ($item['link_type']) {
|
||
case 1:
|
||
$page = Ad::getLinkPage($item['client'], $item['link']);
|
||
$url = '商城页面:' . $page['name'];
|
||
break;
|
||
case 2:
|
||
$goods = Db::name('goods g')
|
||
->where(['g.id' => $item['link']])
|
||
->field('g.name,min_price,max_price')
|
||
->find();
|
||
if ($goods) {
|
||
$price = '¥' . $goods['max_price'];
|
||
if ($goods['max_price'] !== $goods['min_price']) {
|
||
$price = '¥' . $goods['min_price'] . '~' . $goods['max_price'];
|
||
}
|
||
$url = '商品页面:' . $goods['name'] . '价格:' . $price;
|
||
}
|
||
break;
|
||
case 3:
|
||
$url = '自定义链接:' . $item['link'];
|
||
}
|
||
$item['link'] = $url;
|
||
|
||
|
||
}
|
||
return ['count' => $ad_count, 'list' => $ad_list];
|
||
}
|
||
|
||
|
||
/**
|
||
* 添加
|
||
* @param $post
|
||
* @return bool
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @throws \think\exception\DbException
|
||
*/
|
||
public static function add($post)
|
||
{
|
||
|
||
$ad = new Ad();
|
||
|
||
$post['type'] = isset($post['type']) ? $post['type'] : 1;
|
||
$post['status'] = isset($post['status']) ? $post['status'] : 0;
|
||
$post['link_type'] = isset($post['link_type']) ? $post['link_type'] : '';
|
||
$link = '';
|
||
|
||
switch ($post['link_type']) {
|
||
case '1':
|
||
$link = $post['page'];
|
||
break;
|
||
case '2':
|
||
$link = $post['goods_id'];
|
||
break;
|
||
case '3':
|
||
$link = $post['url'];
|
||
break;
|
||
}
|
||
$time = time();
|
||
$data = [
|
||
'name' => $post['name'],
|
||
'client' => $post['client'],
|
||
'pid' => $post['pid'],
|
||
'image' => $post['image'],
|
||
'link_type' => $post['link_type'],
|
||
'link' => $link,
|
||
'status' => $post['status'],
|
||
'category_id' => $post['category_id'] ?? 0,
|
||
'create_time' => $time,
|
||
];
|
||
|
||
return $ad->allowField(true)->save($data);
|
||
}
|
||
|
||
/**
|
||
* 编辑
|
||
* @param $post
|
||
* @return bool
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @throws \think\exception\DbException
|
||
*/
|
||
public static function edit($post)
|
||
{
|
||
$ad = new Ad();
|
||
$post['type'] = isset($post['type']) ? $post['type'] : 1;
|
||
$post['status'] = isset($post['status']) ? $post['status'] : 0;
|
||
$post['link_type'] = isset($post['link_type']) ? $post['link_type'] : '';
|
||
$time = time();
|
||
$link = '';
|
||
switch ($post['link_type']) {
|
||
case '1':
|
||
$link = $post['page'];
|
||
break;
|
||
case '2':
|
||
$link = $post['goods_id'];
|
||
break;
|
||
case '3':
|
||
$link = $post['url'];
|
||
break;
|
||
}
|
||
$data = [
|
||
'name' => $post['name'],
|
||
'client' => $post['client'],
|
||
'pid' => $post['pid'],
|
||
'image' => $post['image'],
|
||
'link_type' => $post['link_type'],
|
||
'link' => $link,
|
||
'category_id' => $post['category_id'] ?? 0,
|
||
'status' => $post['status'],
|
||
'update_time' => $time,
|
||
|
||
];
|
||
return $ad->allowField(true)->save($data, ['id' => $post['id']]);
|
||
}
|
||
|
||
/**
|
||
* 删除
|
||
* @param $delData
|
||
* @return int|string
|
||
* @throws Exception
|
||
* @throws \think\exception\PDOException
|
||
*/
|
||
public static function del($id, $client)
|
||
{
|
||
$data = [
|
||
'del' => 1,
|
||
'update_time' => time(),
|
||
];
|
||
return Db::name('ad')->where(['client' => $client, 'del' => 0, 'id' => $id])->update($data);
|
||
|
||
}
|
||
|
||
/**
|
||
* 广告表信息
|
||
* @param $id
|
||
* @return mixed
|
||
*/
|
||
public static function info($id)
|
||
{
|
||
$ad = new Ad();
|
||
$info = $ad::get(['id' => $id]);
|
||
$info['goods'] = '';
|
||
if ($info['link_type'] == 2) {
|
||
$goods = Db::name('goods g')
|
||
->where(['g.id' => $info['link']])
|
||
->field('g.id, g.name, g.image, min_price, max_price')
|
||
->find();
|
||
$price = '¥' . $goods['max_price'];
|
||
if ($goods['max_price'] !== $goods['min_price']) {
|
||
$price = '¥' . $goods['min_price'] . '~' . $goods['max_price'];
|
||
}
|
||
$goods['price'] = $price;
|
||
$goods['image'] = UrlServer::getFileUrl($goods['image']);
|
||
$info['goods'] = $goods;
|
||
}
|
||
$info['abs_image'] = UrlServer::getFileUrl($info['image']);
|
||
return $info;
|
||
}
|
||
|
||
/**
|
||
* 获取广告位置列表
|
||
* @return array
|
||
*/
|
||
public static function infoPosition($client)
|
||
{
|
||
$position_list = Db::name('ad_position')
|
||
->where(['client' => $client, 'status' => 1, 'del' => 0])
|
||
->group('name')
|
||
->column('id,name', 'id');
|
||
asort($position_list);
|
||
return $position_list;
|
||
}
|
||
|
||
|
||
/**
|
||
* 更改状态
|
||
* @param $get
|
||
* @return int|string
|
||
* @throws Exception
|
||
* @throws \think\exception\PDOException
|
||
*/
|
||
public static function switchStatus($get)
|
||
{
|
||
$data = [
|
||
'status' => $get['status'],
|
||
'update_time' => time(),
|
||
];
|
||
return Db::name('ad')->where(['client' => $get['client'], 'del' => 0, 'id' => $get['id']])->update($data);
|
||
}
|
||
|
||
|
||
/**
|
||
* 获取相应广告位置尺寸
|
||
* @param $get
|
||
* @return array|\PDOStatement|string|\think\Model|null
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @throws \think\exception\DbException
|
||
*/
|
||
public static function imgSize($get)
|
||
{
|
||
$img_size = Db::name('ad_position')
|
||
->where(['id' => $get['id'], 'del' => 0])
|
||
->field('width,height')
|
||
->find();
|
||
return $img_size;
|
||
}
|
||
|
||
|
||
/**
|
||
* Notes:筛选首页推荐分类
|
||
* @return array|\PDOStatement|string|\think\Collection
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @throws \think\exception\DbException
|
||
* @author: 2021/3/6 12:01
|
||
*/
|
||
public static function getGoodsCategory(){
|
||
return Db::name('goods_category')->where(['level'=>1,'is_recommend'=>1])->field('id,name')->select();
|
||
}
|
||
|
||
} |