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

ReplyLogic.php 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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\wechat;
  20. use app\common\basics\Logic;
  21. use app\common\server\ConfigServer;
  22. use app\common\server\UrlServer;
  23. use app\common\server\WeChatServer;
  24. use EasyWeChat\Factory;
  25. use EasyWeChat\Kernel\Exceptions\Exception;
  26. use app\common\model\wechat\WechatReply;
  27. use app\common\model\wechat\Wechat;
  28. class ReplyLogic extends Logic
  29. {
  30. public static function lists($get)
  31. {
  32. $where[] = ['del','=',0];
  33. if(isset($get['type'])){ // 回复类型
  34. $where[] = ['reply_type','=',$get['type']];
  35. }
  36. $count = WechatReply::where($where)->count();
  37. $list = WechatReply::where($where)
  38. ->order([
  39. 'sort' => 'asc',
  40. 'id' => 'desc'
  41. ])
  42. ->page($get['page'],$get['limit'])
  43. ->select()
  44. ->toArray();
  45. foreach ($list as $key => $reply) {
  46. // 内容类型
  47. $reply['content_type'] && $list[$key]['content_type'] = '文本';
  48. // 匹配类型
  49. switch ($reply['matching_type']){
  50. case 1:
  51. $list[$key]['matching_type'] = '全匹配';
  52. break;
  53. case 2:
  54. $list[$key]['matching_type'] = '模糊匹配';
  55. break;
  56. }
  57. }
  58. return ['count'=>$count,'list'=>$list];
  59. }
  60. public static function add($post)
  61. {
  62. $post['create_time'] = time();
  63. $post['del'] = 0;
  64. if($post['reply_type'] !== WeChat::msg_type_text && $post['status']){
  65. // 除了关键词回复,其他回复类型开启记录只允许一条,若当前正在新增的记录将是开启状态,则该回复类型下的现有记录需先更新为停用状态
  66. WechatReply::where(['reply_type'=>$post['reply_type']])->update(['update_time'=>time(),'status'=>0]);
  67. }
  68. return WechatReply::insert($post);
  69. }
  70. public static function getReply($id)
  71. {
  72. $detail = WechatReply::findOrEmpty($id);
  73. $detail = $detail->isEmpty() ? [] : $detail->toArray();
  74. return $detail;
  75. }
  76. public static function edit($post){
  77. $post['update_time'] = time();
  78. if($post['reply_type'] !== WeChat::msg_type_text && $post['status']){
  79. WechatReply::where(['reply_type'=>$post['reply_type']])->update(['update_time'=>time(),'status'=>0]);
  80. }
  81. return WechatReply::where(['id'=>$post['id']])->update($post);
  82. }
  83. public static function del($id){
  84. return WechatReply::where(['id'=>$id])->update(['update_time'=>time(),'del'=>1]);
  85. }
  86. public static function changeFields($id,$field,$field_value,$reply_type){
  87. if( 'status' === $field && $field_value && $reply_type !== WeChat::msg_type_text){
  88. WechatReply::where(['reply_type'=>$reply_type])->update(['update_time'=>time(),'status'=>0]);
  89. }
  90. return WechatReply::where(['id'=>$id])->update(['update_time'=>time(),$field=>$field_value]);
  91. }
  92. }