123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- <?php
-
-
- namespace app\shop\logic\content;
-
-
- use app\common\basics\Logic;
-
- use app\common\model\content\Closure; //截流配置表 模型
-
- use app\common\model\content\IndustryCategory as IndustryCategoryModel; //行业表 模型
-
- use app\common\model\content\ClosureCategory as ClosureCategoryModel; //应用分类表 模型
-
- use Exception;
-
- class ClosureLogic extends Logic
- {
- /**
- * 获取文章分类
- * @param $get
- * @return array
- */
- public static function lists($get, $shop_id)
- {
- try {
- $where = [
- ['shop_id', '=', $shop_id],
- ['del', '=', 0]
- ];
-
- if (!empty($get['title']) and $get['title'])
- $where[] = ['title', 'like', '%' . $get['title'] . '%'];
-
- if (!empty($get['cid']) and is_numeric($get['cid']))
- $where[] = ['cid', '=', $get['cid']];
-
- //行业分类
- if (!empty($get['yid']) and is_numeric($get['yid']))
- $where[] = ['yid', '=', $get['yid']];
-
-
- if (isset($get['is_notice']) and is_numeric($get['is_notice']))
- $where[] = ['is_notice', '=', $get['is_notice']];
-
- $model = new Closure();
- $lists = $model->field(true)
- ->where($where)
- ->with(['category', 'category2'])
- //->order('sort', 'asc')
- ->order([
- 'yid' => 'asc',
- 'cid' => 'asc'
- ])
- ->paginate([
- 'page' => $get['page'],
- 'list_rows' => $get['limit'],
- 'var_page' => 'page'
- ])
- ->toArray();
-
- foreach ($lists['data'] as &$item) {
- $item['category'] = $item['category']['name'] ?? '未知';
- $item['category2'] = $item['category2']['name'] ?? '未知';
- $item['is_notice'] = $item['is_notice'] ? '是' : '否';
- $item['is_show'] = $item['is_show'] ? '显示' : '隐藏';
- }
-
- return ['count' => $lists['total'], 'lists' => $lists['data']];
- } catch (Exception $e) {
- return ['error' => $e->getMessage()];
- }
- }
-
- /**
- * @Notes: 文章详细
- * @Author: 张无忌
- * @param $id
- * @return array
- */
- public static function detail($id)
- {
- $model = new Closure();
- $data = $model->field(true)->findOrEmpty($id)->toArray();
- $data['form_data'] = json_decode($data['form_data'], true);
- return $data;
- }
-
-
- /**
- * @Notes: 添加文章
- * @Author: 张无忌
- * @param $post
- * @return bool
- */
- public static function add($post)
- {
- try {
-
- $model = new Closure();
- $arr = $model->postDataHandle($post);
-
- Closure::create([
- 'shop_id' => $post['shop_id'],
- 'cid' => $post['cid'],
- 'yid' => $post['yid'],
- 'title' => $post['title'],
- 'image' => $post['image'] ?? '',
- 'intro' => $post['intro'] ?? '',
- 'content' => $post['content'] ?? '',
- 'visit' => 0,
- 'likes' => 0,
- 'sort' => $post['sort'] ?? 0,
- 'is_notice' => $post['is_notice'],
- 'is_show' => $post['is_show'],
- 'version' => $post['shop_id'] . '-' . time(),
- 'form_data' => json_encode($arr[1], JSON_UNESCAPED_UNICODE),
- 'json_data' => json_encode($arr[0], JSON_UNESCAPED_UNICODE)
- ]);
-
- return true;
- } catch (\Exception $e) {
- static::$error = $e->getMessage();
- return false;
- }
- }
-
- /**
- * @Notes: 编辑文章
- * @Author: 张无忌
- * @param $post
- * @return bool
- */
- public static function edit($post)
- {
- try {
-
- $model = new Closure();
- $arr = $model->postDataHandle($post);
-
- Closure::update([
- 'shop_id' => $post['shop_id'],
- 'cid' => $post['cid'],
- 'yid' => $post['yid'] ?? '',
- 'title' => $post['title'],
- 'image' => $post['image'] ?? '',
- 'intro' => $post['intro'] ?? '',
- 'content' => $post['content'] ?? '',
- 'visit' => 0,
- 'likes' => 0,
- 'sort' => $post['sort'] ?? 0,
- 'is_notice' => $post['is_notice'],
- 'is_show' => $post['is_show'],
- 'version' => $post['version'],
- 'form_data' => json_encode($arr[1], JSON_UNESCAPED_UNICODE),
- 'json_data' => json_encode($arr[0], JSON_UNESCAPED_UNICODE)
- ], ['id' => $post['id']]);
-
- return true;
- } catch (\Exception $e) {
- static::$error = $e->getMessage();
- return false;
- }
- }
-
- /**
- * @Notes: 删除
- * @Author: 张无忌
- * @param $id
- * @return bool
- */
- public static function del($id)
- {
- try {
-
- $item = Closure::where(['id' => $id])->find();
- $t = $item['shop_id'].'_'.'默认配置';
- if($item['title'] == $t){
- static::$error = "默认配置不允许删除";
- return false;
- }
-
- Closure::update([
- 'del' => 1,
- 'update_time' => time()
- ], ['id' => $id]);
-
- return true;
- } catch (\Exception $e) {
- static::$error = $e->getMessage();
- return false;
- }
- }
-
- /**
- * @Notes: 隐藏
- * @Author: 张无忌
- * @param $id
- * @return bool
- */
- public static function hide($id)
- {
- try {
- $model = new Closure();
- $article = $model->findOrEmpty($id)->toArray();
-
- Closure::update([
- 'is_show' => !$article['is_show'],
- 'update_time' => time()
- ], ['id' => $id]);
-
- return true;
- } catch (\Exception $e) {
- static::$error = $e->getMessage();
- return false;
- }
- }
-
- /*
- * 初始化一个默认配置
- */
- public static function insertDefault($shop_id){
- /*
- * 查询默认记录
- */
- $model = new Closure();
- $where = [
- "shop_id" => 1,
- "cid" => 3,
- "yid" => 4,
- ];
- //先查询用户是否已有配置
- $t = $model->where(['del'=>0,'shop_id'=>$shop_id])->order('id asc')->find();
- //$t = $t->toArray();
- if(empty($t)){
- //不存在配置
- $row = $model->where($where)->order('id asc')->find();
- //默认配置id
- $cid = ClosureCategoryModel::where(['shop_id'=>$shop_id,'del'=>0,'name'=>'默认'])->value('id');
- //默认行业id
- $sid = IndustryCategoryModel::where(['shop_id'=>$shop_id,'del'=>0,'name'=>'默认'])->value('id');
-
- if(!empty($row)){
- //转成数组
- $row = $row->toArray();
- //dump($row);
- //复制给用户
- unset($row['id']);
- $row['cid'] = $cid;
- $row['yid'] = $sid;
- $row['title'] = $shop_id."_默认配置";
- $row['version'] = $shop_id.'_'.time();
- $row['create_time'] = time();
- $row['update_time'] = time();
- $row['shop_id'] = $shop_id;
- //插入数据库
- $model->insert($row);
- }
- }else{
- //查找是否存在默认配置 重新增加 这条记录不可删除
- //现有用户的记录如果已绑定 也不影响
- $title = $shop_id."_默认配置";
- $item = $model->where(['del'=>0,'shop_id'=>$shop_id,'title'=>$title])->find();
- //$item = $item->toArray();
- if(empty($item)){
- //不存在 则新增
- $row = $model->where($where)->order('id asc')->find();
- if(!empty($row)){
- //转成数组
- $row = $row->toArray();
- //复制给用户
- unset($row['id']);
- $row['title'] = $shop_id."_默认配置";
- $row['version'] = $shop_id.'_'.time();
- $row['create_time'] = time();
- $row['update_time'] = time();
- $row['shop_id'] = $shop_id;
- //插入数据库
- $model->insert($row);
- }
-
- }
- }
- }
- }
|