| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <?php
- // +----------------------------------------------------------------------
- // | likeadmin快速开发前后端分离管理后台(PHP版)
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | 开源版本可自由商用,可去除界面版权logo
- // | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
- // | github下载:https://github.com/likeshop-github/likeadmin
- // | 访问官网:https://www.likeadmin.cn
- // | likeadmin团队 版权所有 拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeadminTeam
- // +----------------------------------------------------------------------
- namespace app\adminapi\controller\notice;
- use app\adminapi\controller\BaseAdminController;
- use app\adminapi\lists\notice\NoticeSettingLists;
- use app\adminapi\logic\notice\NoticeLogic;
- use app\adminapi\validate\notice\NoticeValidate;
- use app\common\enum\notice\NoticeEnum;
- use app\common\model\notice\NoticeSetting;
- use app\common\service\OnlineCustomerService;
- use app\common\service\wechat\WeChatOaService;
- /**
- * 通知控制器
- * Class NoticeController
- * @package app\adminapi\controller\notice
- */
- class NoticeController extends BaseAdminController
- {
- public array $notNeedLogin = ['testNotice','assignBusinessToCustomer'];
- /**
- * @notes 查看通知设置列表
- * @return \think\response\Json
- * @author 段誉
- * @date 2022/3/29 11:18
- */
- public function settingLists()
- {
- return $this->dataLists(new NoticeSettingLists());
- }
- /**
- * @notes 查看通知设置详情
- * @return \think\response\Json
- * @author 段誉
- * @date 2022/3/29 11:18
- */
- public function detail()
- {
- $params = (new NoticeValidate())->goCheck('detail');
- $result = NoticeLogic::detail($params);
- return $this->data($result);
- }
- /**
- * @notes 通知设置
- * @return \think\response\Json
- * @author 段誉
- * @date 2022/3/29 11:18
- */
- public function set()
- {
- $params = $this->request->post();
- $result = NoticeLogic::set($params);
- if ($result) {
- return $this->success('设置成功');
- }
- return $this->fail(NoticeLogic::getError());
- }
- /**
- * @notes 获取通知弹框信息
- */
- public function getInformation()
- {
- $params = $this->request->post();
- $params['data_rules'] = $this->adminInfo['data_rules']??[];
- if(isset($params['business_codes']) && !empty($params['business_codes'])){
- $result = NoticeLogic::getInformationBatch($params);
- }else{
- $result = NoticeLogic::getInformation($params);
- }
- if ($result) {
- return $this->success('获取成功', $result);
- }
- return $this->fail(NoticeLogic::getError());
- }
- public function isOnline()
- {
- $params = $this->request->post();
- $params['admin_id'] = $this->adminId??0;
- return $this->success('', ['is_online' => OnlineCustomerService::isOnline($params['admin_id'])?1:0]);
- }
- public function serviceOnline()
- {
- $params = $this->request->post();
- $params['admin_id'] = $this->adminId??0;
- $result = OnlineCustomerService::addOnlineCustomerService($params['admin_id']);
- return $this->success('', $result?:[]);
- }
- public function serviceOffline()
- {
- $params = $this->request->post();
- $params['admin_id'] = $this->adminId??0;
- $result = OnlineCustomerService::subOnlineCustomerService($params['admin_id']);
- return $this->success('', $result?:[]);
- }
- // /notice.notice/assignBusinessToCustomer
- public function assignBusinessToCustomer(){
- $prams = $this->request->param();
- return $this->success('', ['admin_id'=>OnlineCustomerService::assignBusinessToCustomer($prams['business_type'],$prams['business_id'])??0], 0, 1);
- }
- public function getUnifiedNotific()
- {
- $params = $this->request->post();
- $params['admin_id'] = $this->adminId??0;
- $business_codes = [];
- isset($params['business_codes']) && $params['business_codes'] && $business_codes = explode(',',$params['business_codes']);
- $result = OnlineCustomerService::getAllNotificList($params['admin_id'],$business_codes,$params['prefix']??'',$params['is_test']??0);
- return $this->success('', $result?:[]);
- }
- /**
- * @notes 后台测试通知
- * http://api.weixiuloc.com:5175/adminapi/notice.notice/testNotice?scene_id=1¶ms={}
- */
- public function testNotice()
- {
- try {
- $params = $this->request->get();
- if(!isset($params['scene_id'])){
- throw new \Exception('scene_id不存在');
- }
- $noticeSetting = NoticeSetting::where('scene_id', $params['scene_id'])->findOrEmpty()->toArray();
- if(isset($noticeSetting['sms_notice']['status'])){
- $res = event('Notice', [
- 'scene_id' => $params['scene_id'],
- 'params' => json_decode($params['params'],true)
- /*[
- 'user_id' => $params['user_id'],
- ]*/
- ]);
- }
- if(isset($noticeSetting['oa_notice']['status'])){
- $res = event('Notice', [
- 'scene_id' => $params['scene_id'],
- 'params' => json_decode($params['params'],true)
- /*[
- 'user_id' => $params['user_id'],
- 'order_id' => $params['order_id']?:'',
- 'thing9' => '测试项目名称'.time(),
- 'time7' => date("Y-m-d H:i:s", time()),
- 'thing8' => '预约地址'.time(),
- 'phone_number6' => 18162757399,
- ]*/
- ]);
- }
- dd($params,json_decode($params['params'],true),$noticeSetting,$res??[]);
- } catch (\Exception $e) {
- dd($e->getMessage());
- }
- }
- }
|