暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ShopComment.php 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2021-01-26
  12. */
  13. namespace app\admin\controller;
  14. use think\Page;
  15. use think\Db;
  16. use think\Config;
  17. use app\admin\logic\ShopLogic;
  18. class ShopComment extends Base
  19. {
  20. // 模型ID
  21. public $channeltype = 2;
  22. public $ShopLogic;
  23. public function _initialize()
  24. {
  25. parent::_initialize();
  26. $functionLogic = new \app\common\logic\FunctionLogic;
  27. $functionLogic->check_authorfile(2);
  28. // 产品属性表
  29. $this->shop_order_comment_db = Db::name('shop_order_comment');
  30. $this->ShopLogic = new ShopLogic;
  31. // 列出营销功能里已使用的模块
  32. $marketFunc = $this->ShopLogic->marketLogic();
  33. $this->assign('marketFunc', $marketFunc);
  34. }
  35. // 评价列表
  36. public function comment_index()
  37. {
  38. $functionLogic = new \app\common\logic\FunctionLogic;
  39. $assign_data = $functionLogic->comment_index();
  40. $this->assign($assign_data);
  41. $shopOpenComment = getUsersConfigData('shop.shop_open_comment');
  42. if (!empty($shopOpenComment) && 1 === intval($shopOpenComment)) {
  43. tpCache('web', ['web_shopcomment_switch' => 1]);
  44. } else if (isset($shopOpenComment) && 0 === intval($shopOpenComment)) {
  45. tpCache('web', ['web_shopcomment_switch' => 0]);
  46. }
  47. $web_shopcomment_switch = tpCache('global.web_shopcomment_switch');
  48. $this->assign('web_shopcomment_switch', intval($web_shopcomment_switch));
  49. return $this->fetch();
  50. }
  51. // 评价详情
  52. public function comment_details()
  53. {
  54. $comment_id = input('param.comment_id/d');
  55. if (!empty($comment_id)) {
  56. // 退换货信息
  57. $field = 'a.comment_id, a.order_id, a.users_id, a.order_code, a.product_id, a.upload_img, a.admin_reply, a.content, a.total_score, a.is_show, a.add_time, b.product_name, b.product_price, b.litpic as product_img, b.num as product_num, c.username, c.nickname, c.head_pic, d.title, d.users_price, d.litpic';
  58. $Comment[0] = $this->shop_order_comment_db->alias('a')->where('comment_id', $comment_id)
  59. ->field($field)
  60. ->join('__SHOP_ORDER_DETAILS__ b', 'a.details_id = b.details_id', 'LEFT')
  61. ->join('__USERS__ c', 'a.users_id = c.users_id')
  62. ->join('__ARCHIVES__ d', 'a.product_id = d.aid')
  63. ->find();
  64. $array_new = get_archives_data($Comment, 'product_id');
  65. $Comment = $Comment[0];
  66. // 如果不存在商品标题则执行
  67. if (empty($Comment['product_name'])) $Comment['product_name'] = $Comment['title'];
  68. // 如果不存在商品价格则执行
  69. if (empty($Comment['product_price'])) $Comment['product_price'] = $Comment['users_price'];
  70. // 如果不存在商品数量则执行
  71. if (empty($Comment['product_num'])) $Comment['product_num'] = 1;
  72. // 评价上传的图片
  73. $Comment['upload_img'] = !empty($Comment['upload_img']) ? explode(',', unserialize($Comment['upload_img'])) : [];
  74. foreach ($Comment['upload_img'] as $key => $value) {
  75. if (empty($value)) {
  76. unset($Comment['upload_img'][$key]);
  77. } else {
  78. $Comment['upload_img'][$key] = handle_subdir_pic(get_default_pic($value));
  79. }
  80. }
  81. // 如果不存在商品图则执行
  82. if (empty($Comment['product_img'])) $Comment['product_img'] = $Comment['litpic'];
  83. // 商品图片
  84. $Comment['product_img'] = handle_subdir_pic(get_default_pic($Comment['product_img']));
  85. // 商品链接
  86. $Comment['arcurl'] = get_arcurl($array_new[$Comment['product_id']]);
  87. // 商品评价评分
  88. $Comment['order_total_score'] = Config::get('global.order_total_score')[$Comment['total_score']];
  89. // 评价转换星级评分,注释暂停使用,显示实际星评分
  90. // $Comment['total_score'] = GetScoreArray($Comment['total_score']);
  91. // 评价的内容
  92. $Comment['content'] = !empty($Comment['content']) ? htmlspecialchars_decode(unserialize($Comment['content'])) : '';
  93. // 回复的内容
  94. $adminReply = !empty($Comment['admin_reply']) ? unserialize($Comment['admin_reply']) : [];
  95. $adminReply['adminReply'] = !empty($adminReply['adminReply']) ? htmlspecialchars_decode($adminReply['adminReply']) : '';
  96. $Comment['admin_reply'] = $adminReply;
  97. // 会员信息
  98. // $Users = Db::name('users')->field('users_id, username, nickname, mobile')->find($Comment['users_id']);
  99. $Comment['nickname'] = empty($Comment['nickname']) ? $Comment['username'] : $Comment['nickname'];
  100. $Comment['head_pic'] = handle_subdir_pic(get_default_pic($Comment['head_pic']));
  101. // 是否属于后台系统评价
  102. $Comment['systemComment'] = 0;
  103. if (empty($Comment['order_id']) && empty($Comment['order_code']) && empty($Comment['details_id'])) {
  104. $Comment['systemComment'] = 1;
  105. }
  106. // dump($Comment);exit;
  107. // 加载数据
  108. // $this->assign('Users', $Users);
  109. $this->assign('Comment', $Comment);
  110. return $this->fetch('comment_details');
  111. } else {
  112. $this->error('非法访问!');
  113. }
  114. }
  115. // 评价删除
  116. public function comment_del()
  117. {
  118. $id_arr = input('del_id/a');
  119. $id_arr = eyIntval($id_arr);
  120. if(IS_POST && !empty($id_arr)){
  121. $ResultID = $this->shop_order_comment_db->where(['comment_id' => ['IN', $id_arr]])->delete();
  122. if (!empty($ResultID)) {
  123. foreach ($id_arr as $key => $val) {
  124. cache('EyouHomeAjaxComment_' . $val, null, null, 'shop_order_comment');
  125. }
  126. adminLog('删除评价-id:'.implode(',', $id_arr));
  127. $this->success('删除成功');
  128. } else {
  129. $this->error('删除失败');
  130. }
  131. }
  132. }
  133. // 商家回复
  134. public function comment_admin_reply()
  135. {
  136. if (IS_AJAX_POST) {
  137. $post = input('post.');
  138. // 参数判断
  139. empty($post['comment_id']) && $this->error('请选择回复的评价');
  140. empty($post['admin_reply']) && $this->error('请填写回复的内容');
  141. $time = getTime();
  142. // 拼装评价数据
  143. $adminReply = [
  144. 'adminReply' => $post['admin_reply'],
  145. 'replyTime' => date('Y-m-d H:i:s', $time),
  146. ];
  147. $update = [
  148. 'comment_id' => intval($post['comment_id']),
  149. 'admin_reply' => serialize($adminReply),
  150. 'update_time' => $time,
  151. ];
  152. // 添加商品自定义评价
  153. $updateID = $this->shop_order_comment_db->update($update);
  154. if (!empty($updateID)) {
  155. $this->success('回复成功');
  156. } else {
  157. $this->error('回复失败');
  158. }
  159. }
  160. }
  161. // 评价添加
  162. public function comment_add()
  163. {
  164. if (IS_AJAX_POST) {
  165. $post = input('post.');
  166. // 参数判断
  167. empty($post['aid']) && $this->error('请选择商品', null, ['post'=>true]);
  168. empty($post['users_id']) && $this->error('请选择会员', null, ['post'=>true]);
  169. empty($post['add_time']) && $this->error('请选择评价时段');
  170. // 评分处理
  171. // $PostTotalScore = 1;
  172. // if (in_array($post['total_score'], [3, 4])) {
  173. // $PostTotalScore = 2;
  174. // } else if (in_array($post['total_score'], [1, 2])) {
  175. // $PostTotalScore = 3;
  176. // }
  177. // 时间处理
  178. $PostAddTime = explode(' ~ ', $post['add_time']);
  179. $s_time = strtotime($PostAddTime[0]);
  180. $e_time = strtotime($PostAddTime[1]);
  181. // 处理会员
  182. $users_id = explode(',', $post['users_id']);
  183. // 添加数据
  184. $insertAll = [];
  185. foreach ($post['content'] as $key => $value) {
  186. // 如果没有评价内容则提示
  187. empty($value) && $this->error('请添加评价内容', null, ['obj'=>'#comment_add_textarea_' . $key]);
  188. // 图片处理
  189. $upload_img = !empty($post['upload_img'][$key]) ? implode(',', $post['upload_img'][$key]) : '';
  190. // 随机时间处理
  191. $time = mt_rand($s_time, $e_time);
  192. $time = !empty($time) ? $time : getTime();
  193. // 拼装评价数据
  194. $insertAll[] = [
  195. 'users_id' => intval($users_id[intval($key) - 1]),
  196. 'order_id' => 0,
  197. 'order_code' => 0,
  198. 'details_id' => 0,
  199. 'product_id' => intval($post['aid']),
  200. 'total_score' => intval($post['total_score']),
  201. 'content' => serialize($value),
  202. 'upload_img' => serialize($upload_img),
  203. 'admin_reply' => '',
  204. 'ip_address' => clientIP(),
  205. 'is_show' => intval($post['is_show']),
  206. 'is_anonymous' => 0,
  207. 'is_new_comment' => 1,
  208. 'lang' => $this->admin_lang,
  209. 'add_time' => $time,
  210. 'update_time' => $time,
  211. ];
  212. }
  213. // 添加商品自定义评价
  214. $insertID = $this->shop_order_comment_db->insertAll($insertAll);
  215. if (!empty($insertID)) {
  216. $this->success("添加成功", url('ShopComment/comment_index'));
  217. } else {
  218. $this->error("添加失败");
  219. }
  220. }
  221. return $this->fetch();
  222. }
  223. public function comment_goods_list()
  224. {
  225. // 查询处理
  226. $where = [];
  227. // 关键字查询
  228. $keywords = input('param.keywords', '');
  229. if (!empty($keywords)) $where['a.title'] = ['LIKE', "%{$keywords}%"];
  230. // 栏目查询
  231. $typeids = Db::name('arctype')->where('current_channel', $this->channeltype)->column('id');
  232. if (!empty($typeids)) $where['a.typeid'] = ['IN', $typeids];
  233. // 合并查询条件
  234. $where = array_merge($where, ['a.channel' => $this->channeltype, 'a.lang' => $this->admin_lang, 'a.is_del' => 0]);
  235. $whereNew = "(a.users_id = 0 OR (a.users_id > 0 AND a.arcrank >= 0))";
  236. // 数据查询,搜索出主键ID的值
  237. $SqlQuery = Db::name('archives')->alias('a')->where($where)->where($whereNew)->fetchSql()->count('aid');
  238. $count = Db::name('sql_cache_table')->where(['sql_md5'=>md5($SqlQuery)])->getField('sql_result');
  239. $count = ($count < 0) ? 0 : $count;
  240. if (empty($count)) {
  241. $count = Db::name('archives')->alias('a')->where($where)->where($whereNew)->count('aid');
  242. /*添加查询执行语句到mysql缓存表*/
  243. $SqlCacheTable = [
  244. 'sql_name' => '|product|' . $this->channeltype . '|',
  245. 'sql_result' => $count,
  246. 'sql_md5' => md5($SqlQuery),
  247. 'sql_query' => $SqlQuery,
  248. 'add_time' => getTime(),
  249. 'update_time' => getTime(),
  250. ];
  251. if (!empty($keywords)) $SqlCacheTable['sql_name'] = '|product|keywords|';
  252. Db::name('sql_cache_table')->insertGetId($SqlCacheTable);
  253. /*END*/
  254. }
  255. // 自定义排序
  256. $orderby = input('param.orderby/s');
  257. $orderway = input('param.orderway/s');
  258. if (!empty($orderby) && !empty($orderway)) {
  259. $orderby = "a.{$orderby} {$orderway}, a.aid desc";
  260. } else {
  261. $orderby = "a.aid desc";
  262. }
  263. // 查询商品数据
  264. $Page = new Page($count, config('paginate.list_rows'));
  265. $list = [];
  266. if (!empty($count)) {
  267. $limit = $count > config('paginate.list_rows') ? $Page->firstRow.','.$Page->listRows : $count;
  268. $list = Db::name('archives')
  269. ->field("a.aid")
  270. ->alias('a')
  271. ->where($where)
  272. ->where($whereNew)
  273. ->order($orderby)
  274. ->limit($limit)
  275. ->getAllWithIndex('aid');
  276. if (!empty($list)) {
  277. $aids = array_keys($list);
  278. $fields = "b.*, a.*, a.aid as aid";
  279. $row = Db::name('archives')
  280. ->field($fields)
  281. ->alias('a')
  282. ->join('__ARCTYPE__ b', 'a.typeid = b.id', 'LEFT')
  283. ->where('a.aid', 'in', $aids)
  284. ->getAllWithIndex('aid');
  285. foreach ($list as $key => $val) {
  286. $row[$val['aid']]['arcurl'] = get_arcurl($row[$val['aid']]);
  287. $row[$val['aid']]['litpic'] = get_default_pic($row[$val['aid']]['litpic']);
  288. $list[$key] = $row[$val['aid']];
  289. }
  290. }
  291. }
  292. $assign_data['page'] = $Page->show();
  293. $assign_data['list'] = $list;
  294. $assign_data['pager'] = $Page;
  295. $this->assign($assign_data);
  296. return $this->fetch();
  297. }
  298. public function comment_users_list()
  299. {
  300. // 查询处理
  301. $where = [];
  302. // 关键字查询
  303. $keywords = input('param.keywords/s', '');
  304. if (!empty($keywords)) $where['a.username|a.nickname|a.mobile|a.email|a.users_id'] = ['LIKE', "%{$keywords}%"];
  305. // 会员等级
  306. $level = input('param.level/d', 0);
  307. if (!empty($level)) $where['a.level'] = $level;
  308. // 合并查询条件
  309. $where = array_merge($where, ['a.lang' => $this->admin_lang, 'a.is_del' => 0]);
  310. // 查询会员信息
  311. $count = Db::name('users')->alias('a')->where($where)->count();
  312. $Page = new Page($count, config('paginate.list_rows'));
  313. $list = Db::name('users')->field('a.*, b.level_name')
  314. ->alias('a')
  315. ->join('__USERS_LEVEL__ b', 'a.level = b.level_id', 'LEFT')
  316. ->where($where)
  317. ->order('a.users_id desc')
  318. ->limit($Page->firstRow.','.$Page->listRows)
  319. ->select();
  320. $users_ids = [];
  321. foreach ($list as $key => $value) {
  322. $users_ids[] = $value['users_id'];
  323. $value['username'] = !empty($value['nickname']) ? $value['nickname'] : $value['username'];
  324. $value['head_pic'] = get_head_pic($value['head_pic']);
  325. $list[$key] = $value;
  326. }
  327. $this->assign('list', $list);
  328. $this->assign('pager', $Page);
  329. $this->assign('page', $Page->show());
  330. // 微信登录插件
  331. $wxlogin = [];
  332. if (is_dir('./weapp/WxLogin/')) {
  333. $wxlogin = Db::name('weapp_wxlogin')->where(['users_id'=>['IN', $users_ids]])->getAllWithIndex('users_id');
  334. }
  335. $this->assign('wxlogin', $wxlogin);
  336. // QQ登录插件
  337. $qqlogin = [];
  338. if (is_dir('./weapp/QqLogin/')) {
  339. $qqlogin = Db::name('weapp_qqlogin')->where(['users_id'=>['IN', $users_ids]])->getAllWithIndex('users_id');
  340. }
  341. $this->assign('qqlogin', $qqlogin);
  342. // 计算会员人数
  343. $levelCountList = [
  344. 'all' => [
  345. 'level_id' => 0,
  346. 'level_name' => '全部会员',
  347. 'level_count' => 0,
  348. ],
  349. ];
  350. $LevelData = model('UsersLevel')->getList('level_id, level_name', [], 'level_id');
  351. $levelCountRow = Db::name('users')->field('count(users_id) as num, level')->order('level asc')->group('level')->getAllWithIndex('level');
  352. foreach ($LevelData as $key => $val) {
  353. $level_num = empty($levelCountRow[$val['level_id']]) ? 0 : $levelCountRow[$val['level_id']]['num'];
  354. $levelCountList[$val['level_id']] = [
  355. 'level_id' => $val['level_id'],
  356. 'level_name' => $val['level_name'],
  357. 'level_count' => $level_num,
  358. ];
  359. $levelCountList['all']['level_count'] += $level_num;
  360. }
  361. $this->assign('levelCountList', $levelCountList);
  362. return $this->fetch();
  363. }
  364. // 评价添加
  365. public function comment_edit()
  366. {
  367. if (IS_AJAX_POST) {
  368. $post = input('post.');
  369. // 参数判断
  370. empty($post['content']) && $this->error('请添加评价内容');
  371. if (!empty($post['isPost'])) {
  372. empty($post['add_time']) && $this->error('请选择评价时段');
  373. // 评分处理
  374. // $PostTotalScore = 1;
  375. // if (in_array($post['total_score'], [3, 4])) {
  376. // $PostTotalScore = 2;
  377. // } else if (in_array($post['total_score'], [1, 2])) {
  378. // $PostTotalScore = 3;
  379. // }
  380. // 图片处理
  381. $upload_img = !empty($post['upload_img']) ? implode(',', $post['upload_img']) : '';
  382. // 拼装评价数据
  383. $update = [
  384. 'comment_id' => intval($post['comment_id']),
  385. 'total_score' => intval($post['total_score']),
  386. 'content' => serialize($post['content']),
  387. 'upload_img' => serialize($upload_img),
  388. 'ip_address' => clientIP(),
  389. 'is_show' => intval($post['is_show']),
  390. 'add_time' => strtotime($post['add_time']),
  391. 'update_time' => getTime(),
  392. ];
  393. } else {
  394. $upload_img = !empty($post['upload_img']) ? implode(',', $post['upload_img']) : '';
  395. $update = [
  396. 'comment_id' => intval($post['comment_id']),
  397. 'content' => serialize($post['content']),
  398. 'is_show' => intval($post['is_show']),
  399. 'upload_img' => serialize($upload_img),
  400. 'update_time' => getTime(),
  401. ];
  402. }
  403. // 添加商品自定义评价
  404. $updateID = $this->shop_order_comment_db->update($update);
  405. if (!empty($updateID)) {
  406. $this->success("编辑成功", url('ShopComment/comment_index'));
  407. } else {
  408. $this->error("编辑失败");
  409. }
  410. }
  411. }
  412. /**
  413. * 开启/关闭评价模块功能
  414. * @return [type] [description]
  415. */
  416. public function ajax_open_close()
  417. {
  418. if (IS_AJAX_POST) {
  419. $value = input('param.value/d');
  420. if (1 == $value) {
  421. $web_shopcomment_switch = 0;
  422. } else {
  423. $web_shopcomment_switch = 1;
  424. }
  425. /*多语言*/
  426. if (is_language()) {
  427. $langRow = \think\Db::name('language')->order('id asc')
  428. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  429. ->select();
  430. foreach ($langRow as $key => $val) {
  431. tpCache('web', ['web_shopcomment_switch'=>$web_shopcomment_switch], $val['mark']);
  432. }
  433. } else { // 单语言
  434. tpCache('web', ['web_shopcomment_switch'=>$web_shopcomment_switch]);
  435. }
  436. /*--end*/
  437. $this->success("操作成功");
  438. }
  439. $this->error("操作失败");
  440. }
  441. }