Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FunctionLogic.php 7.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\common\logic;
  14. use think\Model;
  15. use think\Db;
  16. use think\Page;
  17. use think\Config;
  18. /**
  19. * @package common\Logic
  20. */
  21. load_trait('controller/Jump');
  22. class FunctionLogic extends Model
  23. {
  24. use \traits\controller\Jump;
  25. /**
  26. * 验证功能版sq文件 - 应用于不加密的控制器文件
  27. * @return [type] [description]
  28. */
  29. public function validate_authorfile($pid = '') {
  30. $this->check_authorfile($pid);
  31. }
  32. /**
  33. * 验证功能版sq文件
  34. * @return [type] [description]
  35. */
  36. public function check_authorfile($pid = '') {
  37. $buypid = $this->getAuthortokenInfo('pid');
  38. if ($pid > $buypid) {
  39. $authormsg = "authormsg{$pid}";
  40. $authormsg = $this->getAuthortokenInfo($authormsg);
  41. if (MODULE_NAME == 'admin') {
  42. $this->error($authormsg);
  43. } else {
  44. die("<div style='text-align:center; font-size:20px; font-weight:bold; margin:150px 0px;'>{$authormsg}</div>");
  45. }
  46. } else {
  47. $code = $this->getAuthortokenInfo('code');
  48. $file = "./data/conf/{$code}.txt";
  49. if (2 <= $buypid && !file_exists($file)) {
  50. $php_servicemeal = 1;
  51. $is_old = $this->getAuthortokenInfo('is_old');
  52. if (1 == $is_old) {
  53. $php_servicemeal = 1.5;
  54. }
  55. tpCache('php', ['php_servicemeal' => $php_servicemeal]);
  56. $authorfilemsg = $this->getAuthortokenInfo('authorfilemsg');
  57. if (MODULE_NAME == 'admin') {
  58. $this->error($authorfilemsg);
  59. } else {
  60. die("<div style='text-align:center; font-size:20px; font-weight:bold; margin:150px 0px;'>{$authorfilemsg}</div>");
  61. }
  62. }
  63. }
  64. }
  65. /**
  66. * 获取网站sq信息
  67. * @return [type] [description]
  68. */
  69. public function getAuthortokenInfo($field = '') {
  70. $authortokenInfo = tpCache('php.php_serviceinfo');
  71. $authortokenInfo = mchStrCode($authortokenInfo, 'DECODE');
  72. $authortokenInfo = json_decode($authortokenInfo, true);
  73. if (empty($field)) {
  74. return !empty($authortokenInfo) ? $authortokenInfo : [];
  75. } else if (isset($authortokenInfo[$field])) {
  76. if ('pid' == $field) {
  77. tpCache('php', ['php_servicemeal' => $authortokenInfo[$field]]);
  78. } else if ('authormsg' == $field) {
  79. $authortokenInfo[$field] = '如有疑问,联系客服!';
  80. }
  81. return $authortokenInfo[$field];
  82. } else {
  83. return ('pid' == $field) ? 0 : '';
  84. }
  85. }
  86. /**
  87. * 保存积分设置
  88. * @return [type] [description]
  89. */
  90. public function scoreConf($post = [])
  91. {
  92. getUsersConfigData('score', $post);
  93. }
  94. // 评价列表
  95. public function comment_index()
  96. {
  97. $functionLogic = new \app\common\logic\FunctionLogic;
  98. $functionLogic->check_authorfile(2);
  99. $assign_data = array();
  100. $condition = array();
  101. // 订单号查询
  102. $order_code = input('order_code/s');
  103. if (!empty($order_code)) $condition['a.order_code'] = array('LIKE', "%{$order_code}%");
  104. // 分页查询
  105. $count = Db::name('shop_order_comment')->alias('a')->where($condition)->count('comment_id');
  106. $Page = new Page($count, config('paginate.list_rows'));
  107. $show = $Page->show();
  108. $assign_data['page'] = $show;
  109. $assign_data['pager'] = $Page;
  110. // 评价查询
  111. $field = 'a.comment_id, a.order_id, a.users_id, a.order_code, a.product_id, a.content, a.admin_reply, a.total_score, a.is_new_comment, 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';
  112. $Comment = Db::name('shop_order_comment')->alias('a')->where($condition)
  113. ->field($field)
  114. ->join('__SHOP_ORDER_DETAILS__ b', 'a.details_id = b.details_id', 'LEFT')
  115. ->join('__USERS__ c', 'a.users_id = c.users_id')
  116. ->join('__ARCHIVES__ d', 'a.product_id = d.aid')
  117. ->limit($Page->firstRow . ',' . $Page->listRows)
  118. ->order('comment_id desc')
  119. ->select();
  120. // 评价数据处理
  121. $New = get_archives_data($Comment, 'product_id');
  122. foreach ($Comment as &$value) {
  123. $value['head_pic'] = handle_subdir_pic(get_default_pic($value['head_pic']));
  124. // 如果不存在商品标题则执行
  125. if (empty($value['product_name'])) $value['product_name'] = $value['title'];
  126. // 如果不存在商品价格则执行
  127. if (empty($value['product_price'])) $value['product_price'] = $value['users_price'];
  128. // 如果不存在商品图则执行
  129. if (empty($value['product_img'])) $value['product_img'] = $value['litpic'];
  130. // 如果不存在商品数量则执行
  131. if (empty($value['product_num'])) $value['product_num'] = 1;
  132. // 是否属于后台系统评价
  133. $value['systemComment'] = 0;
  134. if (empty($value['order_id']) && empty($value['order_code']) && empty($value['details_id'])) {
  135. $value['systemComment'] = 1;
  136. }
  137. // 商品图片
  138. $value['product_img'] = handle_subdir_pic(get_default_pic($value['product_img']));
  139. // 商品链接
  140. $value['arcurl'] = get_arcurl($New[$value['product_id']]);
  141. // 评价转换星级评分,注释暂停使用,显示实际星评分
  142. $value['total_score'] = empty($value['is_new_comment']) ? GetScoreArray($value['total_score']) : $value['total_score'];
  143. // 商品评价评分
  144. $value['order_total_score'] = Config::get('global.order_total_score')[$value['total_score']];
  145. // 评价的内容
  146. $value['content'] = !empty($value['content']) ? htmlspecialchars_decode(unserialize($value['content'])) : '';
  147. $value['content'] = @msubstr($value['content'], 0, 60, true);
  148. // 回复的内容
  149. $adminReply = !empty($value['admin_reply']) ? unserialize($value['admin_reply']) : [];
  150. $adminReply['adminReply'] = !empty($adminReply['adminReply']) ? htmlspecialchars_decode($adminReply['adminReply']) : '';
  151. $value['admin_reply'] = $adminReply;
  152. }
  153. $assign_data['Comment'] = $Comment;
  154. return $assign_data;
  155. }
  156. }