Index.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?php
  2. namespace app\admin\controller\shopro\chat;
  3. use addons\shopro\library\chat\Start;
  4. use addons\shopro\model\chat\ChatUser;
  5. use addons\shopro\model\chat\CustomerService as CS;
  6. use app\admin\controller\shopro\Base;
  7. use app\admin\model\shopro\chat\FastReply;
  8. use Workerman\Worker;
  9. /**
  10. * 客服初始化
  11. *
  12. * @icon fa fa-circle-o
  13. */
  14. class Index extends Base
  15. {
  16. protected $startServer = null;
  17. protected $model = null;
  18. protected $noNeedLogin = ['businessWorker', 'gateway', 'register'];
  19. protected $noNeedRight = ['init', 'businessWorker', 'gateway', 'register'];
  20. public function _initialize()
  21. {
  22. parent::_initialize();
  23. $this->model = new \app\admin\model\shopro\customerservice\CustomerService;
  24. }
  25. public function businessWorker () {
  26. $this->startServer = new Start();
  27. $this->startServer->businessWorker();
  28. if (!defined('GLOBAL_START')) {
  29. Worker::runAll();
  30. }
  31. exit;
  32. }
  33. public function gateway() {
  34. $this->startServer = new Start();
  35. $this->startServer->gateway();
  36. $this->startServer->setLog(APP_PATH . '../addons/shopro/');
  37. if (!defined('GLOBAL_START')) {
  38. Worker::runAll();
  39. }
  40. exit;
  41. }
  42. public function register() {
  43. $this->startServer = new Start();
  44. $this->startServer->register();
  45. if (!defined('GLOBAL_START')) {
  46. Worker::runAll();
  47. }
  48. exit;
  49. }
  50. /**
  51. * 后台客服初始化
  52. *
  53. * @return void
  54. */
  55. public function init() {
  56. $admin = $this->auth->getUserInfo();
  57. if (!$admin) {
  58. $this->error('您还没有登录,请先登录');
  59. }
  60. // 获取管理员对应的客服
  61. $customerService = CS::where('admin_id', $admin['id'])->find();
  62. if (!$customerService) {
  63. $this->error('');
  64. }
  65. $config = json_decode(\addons\shopro\model\Config::where(['name' => 'chat'])->value('value'), true);
  66. $config['type'] = $config['type'] ?? 'shopro';
  67. $config['system'] = $config['system'] ?? [];
  68. // 初始化 ssl 类型, 默认 cert
  69. $config['system']['ssl_type'] = $config['system']['ssl_type'] ?? 'cert';
  70. if ($config['type'] == 'kefu') {
  71. $addons = array_keys(get_addon_list());
  72. if (!in_array('kefu', $addons)) {
  73. $this->error('请安装 workerman 在线客服插件', null);
  74. }
  75. }
  76. // 返回常用语
  77. $fastReply = FastReply::show()->order('weigh', 'desc')->select();
  78. $expire_time = time();
  79. $result = [
  80. 'token' => md5($admin['username'] . $expire_time),
  81. 'expire_time' => $expire_time,
  82. 'customer_service' => $customerService,
  83. 'config' => $config,
  84. 'fast_reply' => $fastReply,
  85. 'emoji' => json_decode(file_get_contents(ROOT_PATH . 'public/assets/addons/shopro/libs/emoji.json'), true)
  86. ];
  87. $this->success('初始化成功', null, $result);
  88. }
  89. }