截流自动化的商城平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

NoticeSettingLogic.php 6.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\logic;
  20. use app\common\enum\NoticeEnum;
  21. use app\common\model\Notice;
  22. use app\common\model\NoticeSetting;
  23. use app\common\basics\Logic;
  24. use app\common\model\user\User;
  25. use think\Db;
  26. /**
  27. * 通知设置逻辑
  28. * Class NoticeSettingLogic
  29. * @package app\admin\logic
  30. */
  31. class NoticeSettingLogic extends Logic
  32. {
  33. /**
  34. * Notes: 列表
  35. * @param $type
  36. * @author 段誉(2021/4/26 16:18)
  37. * @return array
  38. * @throws \think\db\exception\DataNotFoundException
  39. * @throws \think\db\exception\ModelNotFoundException
  40. * @throws \think\exception\DbException
  41. */
  42. public static function lists($type)
  43. {
  44. $count = NoticeSetting::where('type', $type)->count();
  45. $lists = NoticeSetting::where('type', $type)->select();
  46. return ['lists' => $lists, 'count' => $count];
  47. }
  48. /**
  49. * Notes: 设置通知消息
  50. * @param $post
  51. * @author 段誉(2021/4/26 16:18)
  52. * @return bool
  53. * @throws \think\Exception
  54. * @throws \think\exception\PDOException
  55. */
  56. public static function set($post)
  57. {
  58. switch ($post['type']) {
  59. case 'system':
  60. $setting = [
  61. 'title' => $post['title'],
  62. 'content' => $post['content'],
  63. 'is_push' => $post['is_push'],
  64. 'status' => $post['status'],
  65. ];
  66. break;
  67. case 'sms':
  68. $setting = [
  69. 'template_code' => $post['template_code'],
  70. 'content' => $post['content'],
  71. 'status' => $post['status'],
  72. ];
  73. break;
  74. case 'oa':
  75. $setting = [
  76. 'name' => $post['name'],
  77. 'first' => $post['first'],
  78. 'template_sn' => $post['template_sn'],
  79. 'template_id' => $post['template_id'],
  80. 'remark' => $post['remark'],
  81. 'status' => $post['status'],
  82. 'tpl' => self::formatTplData($post)
  83. ];
  84. break;
  85. case 'mnp':
  86. $setting = [
  87. 'name' => $post['name'],
  88. 'template_sn' => $post['template_sn'],
  89. 'template_id' => $post['template_id'],
  90. 'status' => $post['status'],
  91. 'tpl' => self::formatTplData($post),
  92. ];
  93. break;
  94. default:
  95. $setting = [];
  96. }
  97. NoticeSetting::where('id', $post['id'])
  98. ->update([
  99. $post['type'].'_notice' => json_encode($setting, JSON_UNESCAPED_UNICODE)
  100. ]);
  101. return true;
  102. }
  103. /**
  104. * Notes: 详情
  105. * @param $id
  106. * @param $type
  107. * @author 段誉(2021/6/4 15:01)
  108. * @return array|\think\Model|null
  109. * @throws \think\db\exception\DataNotFoundException
  110. * @throws \think\db\exception\DbException
  111. * @throws \think\db\exception\ModelNotFoundException
  112. */
  113. public static function info($id, $type)
  114. {
  115. return NoticeSetting::where('id', $id)->find();
  116. }
  117. /**
  118. * Notes: 格式化模板数据
  119. * @param $post
  120. * @author 段誉(2021/4/26 14:55)
  121. * @return array
  122. */
  123. public static function formatTplData($post)
  124. {
  125. foreach ($post as &$value) {
  126. if (is_array($value)) {
  127. $value = array_values($value);
  128. }
  129. }
  130. return form_to_linear($post);
  131. }
  132. /**
  133. * Notes: 通知记录
  134. * @param $get
  135. * @author 段誉(2021/6/4 15:21)
  136. * @return array
  137. * @throws \think\db\exception\DataNotFoundException
  138. * @throws \think\db\exception\DbException
  139. * @throws \think\db\exception\ModelNotFoundException
  140. */
  141. public static function record($get)
  142. {
  143. $where = [
  144. ['send_type', '=', $get['send_type']]
  145. ];
  146. if(isset($get['content']) && !empty(trim($get['content']))) {
  147. $where[] = ['content', 'like', '%' . trim($get['content']) . '%'];
  148. }
  149. if(isset($get['create_time']) && !empty(trim($get['create_time']))) {
  150. $createTimeArr = explode('#', $get['create_time']);
  151. $start_time = strtotime(trim($createTimeArr[0]));
  152. $end_time = strtotime(trim($createTimeArr[1]));
  153. $where[] = ['create_time', '>=', $start_time];
  154. $where[] = ['create_time', '<=', $end_time];
  155. }
  156. $scene = NoticeSetting::where(['id'=>$get['id']])->value('scene');
  157. $where[] = ['scene', '=', $scene];
  158. $lists = Notice::where($where)
  159. ->order('id desc')
  160. ->paginate([
  161. 'list_rows'=> $get['limit'],
  162. 'page'=> $get['page']
  163. ]);
  164. foreach($lists as &$item) {
  165. switch ($item['receive_type']) {
  166. case NoticeEnum::NOTICE_USER:
  167. $user = User::find($item['user_id']);
  168. $item['user_info'] = empty($user) ? '' : $user;
  169. break;
  170. case NoticeEnum::NOTICE_PLATFORM:
  171. $item['user_info'] = '平台';
  172. break;
  173. case NoticeEnum::NOTICE_OTHER:
  174. $item['user_info'] = '游客';
  175. break;
  176. case NoticeEnum::NOTICE_SHOP:
  177. $item['user_info'] = '商家';
  178. break;
  179. default:
  180. $item['user_info'] = '未知';
  181. }
  182. }
  183. return ['count' => $lists->total(), 'lists' => $lists->getCollection()];
  184. }
  185. }