截流自动化的商城平台
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.

MessageNoticeLogic.php 9.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268
  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\common\logic;
  20. use app\common\basics\Logic;
  21. use app\common\model\Client_;
  22. use app\common\Enum\NoticeEnum;
  23. use app\common\model\Notice;
  24. use app\common\model\NoticeSetting;
  25. use app\common\model\order\Order;
  26. use app\common\model\order\OrderGoods;
  27. use app\common\model\user\User;
  28. use app\common\server\SmsMessageServer;
  29. use app\common\server\WxMessageServer;
  30. use think\facade\Log;
  31. /**
  32. * 消息通知逻辑
  33. * Class NoticeLogic
  34. * @package app\common\logic
  35. */
  36. class MessageNoticeLogic extends Logic
  37. {
  38. /**
  39. * Notes: 根据各个场景发送通知
  40. * @param $user_id
  41. * @param $params
  42. * @author 段誉(2021/4/28 18:21)
  43. * @throws Exception
  44. */
  45. public static function noticeByScene($user_id, $params)
  46. {
  47. // 记录调试信息
  48. if (app()->isDebug()) {
  49. Log::write(debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 15), 'noticeByScene');
  50. Log::write(func_get_args(), 'noticeByScene');
  51. }
  52. try {
  53. $scene_config = NoticeSetting::where('scene', $params['scene'])->find();
  54. if (empty($scene_config)) {
  55. throw new \Exception('信息错误');
  56. }
  57. $params = self::mergeParams($params);
  58. $res = false;
  59. //发送系统消息
  60. if (isset($scene_config['system_notice']['status']) && $scene_config['system_notice']['status'] == 1) {
  61. $content = self::contentFormat($scene_config['system_notice']['content'], $params);
  62. $notice_log = self::addNoticeLog($params, $scene_config,NoticeEnum::SYSTEM_NOTICE, $content);
  63. if ($notice_log) {
  64. $res = true;
  65. }
  66. }
  67. //发送短信记录
  68. if (isset($scene_config['sms_notice']['status']) && $scene_config['sms_notice']['status'] == 1) {
  69. $res = (new SmsMessageServer())->send($params);
  70. }
  71. //发送公众号记录
  72. if (isset($scene_config['oa_notice']['status']) && $scene_config['oa_notice']['status'] == 1) {
  73. $res = (new WxMessageServer($user_id,Client_::oa))->send($params);
  74. }
  75. //发送小程序记录
  76. if (isset($scene_config['mnp_notice']['status']) && $scene_config['mnp_notice']['status'] == 1) {
  77. $res = (new WxMessageServer($user_id, Client_::mnp))->send($params);
  78. }
  79. // if (true !== $res) {
  80. // throw new \Exception('发送失败');
  81. // }
  82. return true;
  83. } catch (\Exception $e) {
  84. self::$error = $e->getMessage();
  85. Log::write($e->__toString(), 'message_notice');
  86. return true;
  87. }
  88. }
  89. /**
  90. * Notes: 拼装额外参数
  91. * @param $params
  92. * @author 段誉(2021/6/22 16:16)
  93. * @return mixed
  94. * @throws \think\db\exception\DataNotFoundException
  95. * @throws \think\db\exception\DbException
  96. * @throws \think\db\exception\ModelNotFoundException
  97. */
  98. public static function mergeParams($params)
  99. {
  100. //订单相关信息
  101. if (!empty($params['params']['order_id'])) {
  102. $order = Order::where(['id' => $params['params']['order_id']])->find();
  103. $order_goods = OrderGoods::alias('og')
  104. ->field('g.name')
  105. ->join('goods g', 'og.goods_id = g.id')
  106. ->where('og.order_id', $params['params']['order_id'])
  107. ->find();
  108. $goods_name = $order_goods['name'] ?? '商品';
  109. if (mb_strlen($goods_name) > 8 ) {
  110. $goods_name = mb_substr($goods_name,0,8) . '..';
  111. }
  112. $params['params']['goods_name'] = $goods_name;
  113. $params['params']['order_sn'] = $order['order_sn'];
  114. $params['params']['create_time'] = $order['create_time'];
  115. $params['params']['pay_time'] = date('Y-m-d H:i', $order['pay_time']);
  116. $params['params']['total_num'] = $order['total_num'];
  117. $params['params']['order_amount'] = $order['order_amount'];
  118. }
  119. //用户相关信息
  120. if (!empty($params['params']['user_id'])) {
  121. $user = User::where('id', $params['params']['user_id'])->findOrEmpty();
  122. $params['params']['nickname'] = replaceNickname($user['nickname']) ? : $user['sn'];
  123. $params['params']['user_sn'] = $user['sn'];
  124. }
  125. //下级名称;(邀请人场景)
  126. if (!empty($params['params']['lower_id'])) {
  127. $lower = User::where('id', $params['params']['lower_id'])->findOrEmpty();
  128. $params['params']['lower_name'] = replaceNickname($lower['nickname']) ? : $lower['sn'];
  129. $params['params']['lower_sn'] = $lower['sn'];
  130. }
  131. //跳转路径
  132. $jump_path = self::getPathByScene($params['scene'], $params['params']['order_id'] ?? 0);
  133. $params['url'] = $jump_path['url'];
  134. $params['page'] = $jump_path['page'];
  135. return $params;
  136. }
  137. /**
  138. * Notes: 根据场景获取跳转地址
  139. * @param $scene
  140. * @author 段誉(2021/4/27 17:01)
  141. * @return array
  142. */
  143. public static function getPathByScene($scene, $extra_id)
  144. {
  145. $page = '/pages/index/index'; // 小程序主页路径
  146. $url = '/mobile/pages/index/index'; // 公众号主页路径
  147. if (in_array($scene, NoticeEnum::ORDER_SCENE)) {
  148. $url = '/mobile/bundle/pages/order_details/order_details?id='.$extra_id;
  149. $page = '/bundle/pages/order_details/order_details?id='.$extra_id;
  150. }
  151. return ['url' => $url, 'page' => $page];
  152. }
  153. //格式化消息内容(替换文本)
  154. public static function contentFormat($content, $params)
  155. {
  156. foreach ($params['params'] as $k => $v) {
  157. $search_replace = '{'.$k.'}';
  158. $content = str_replace($search_replace, $v, $content);
  159. }
  160. return $content;
  161. }
  162. //添加通知记录
  163. public static function addNoticeLog($params, $scene_config, $send_type, $content, $extra = '')
  164. {
  165. return Notice::create([
  166. 'user_id' => $params['params']['user_id'] ?? 0,
  167. 'title' => self::getTitleByScene($send_type, $scene_config),
  168. 'content' => $content,
  169. 'scene' => $params['scene'],
  170. 'receive_type' => self::getReceiveTypeByScene($params['scene']),
  171. 'send_type' => $send_type,
  172. 'extra' => $extra,
  173. 'create_time' => time()
  174. ]);
  175. }
  176. //更新通知记录
  177. public static function updateNotice($notice_id, $extra)
  178. {
  179. return Notice::where('id', $notice_id)->update(['extra' => $extra]);
  180. }
  181. /**
  182. * Notes: 根据不同发送类型获取标题
  183. * @param $send_type
  184. * @param $scene_config
  185. * @author 段誉(2021/6/23 3:03)
  186. * @return string
  187. */
  188. public static function getTitleByScene($send_type, $scene_config)
  189. {
  190. switch ($send_type) {
  191. case NoticeEnum::SYSTEM_NOTICE:
  192. $title = $scene_config['system_notice']['title'] ?? '';
  193. break;
  194. case NoticeEnum::SMS_NOTICE:
  195. $title = '';
  196. break;
  197. case NoticeEnum::OA_NOTICE:
  198. $title = $scene_config['oa_notice']['name'] ?? '';
  199. break;
  200. case NoticeEnum::MNP_NOTICE:
  201. $title = $scene_config['mnp_notice']['name'] ?? '';
  202. break;
  203. default:
  204. $title = '';
  205. }
  206. return $title;
  207. }
  208. /**
  209. * Notes: 根据不同场景返回当前接收对象
  210. * @param $scene
  211. * @author 段誉(2021/6/23 3:02)
  212. * @return int
  213. */
  214. public static function getReceiveTypeByScene($scene)
  215. {
  216. //通知平台
  217. if (in_array($scene, NoticeEnum::NOTICE_PLATFORM_SCENE)) {
  218. return NoticeEnum::NOTICE_PLATFORM;
  219. }
  220. //通知商家
  221. if (in_array($scene, NoticeEnum::NOTICE_SHOP_SCENE)) {
  222. return NoticeEnum::NOTICE_SHOP;
  223. }
  224. //通知会员
  225. if (in_array($scene, NoticeEnum::NOTICE_USER_SCENE)) {
  226. return NoticeEnum::NOTICE_USER;
  227. }
  228. //通知游客(注册等场景)
  229. if (in_array($scene, NoticeEnum::NOTICE_OTHER_SCENE)) {
  230. return NoticeEnum::NOTICE_OTHER;
  231. }
  232. }
  233. }