Start.php 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. namespace addons\shopro\library\chat;
  3. use GatewayWorker\BusinessWorker;
  4. use GatewayWorker\Gateway;
  5. use GatewayWorker\Register;
  6. use Workerman\Worker;
  7. /**
  8. * 启动 gateway
  9. */
  10. class Start
  11. {
  12. public $config = null;
  13. public function __construct() {
  14. $this->config = Online::getConfig('system');
  15. }
  16. // 启动 register
  17. public function register () {
  18. $register = new Register('text://0.0.0.0:' . $this->config['business_worker_port']);
  19. }
  20. // 启动 businessWorker
  21. public function businessWorker() {
  22. // bussinessWorker 进程
  23. $worker = new BusinessWorker();
  24. // worker名称
  25. $worker->name = 'ShoproChatBusinessWorker';
  26. // bussinessWorker进程数量
  27. $worker->count = $this->config['business_worker_num'];
  28. // 服务注册地址
  29. $worker->registerAddress = '127.0.0.1:' . $this->config['business_worker_port'];
  30. //设置Event 类
  31. $worker->eventHandler = 'addons\shopro\library\chat\Events';
  32. }
  33. // 启动 gateway
  34. public function gateway() {
  35. $is_ssl = $this->config['is_ssl'] ?? 0;
  36. $ssl_type = $this->config['ssl_type'] ?? 'cert';
  37. $ssl_cert = $this->config['ssl_cert'] ?? '';
  38. $ssl_key = $this->config['ssl_key'] ?? '';
  39. $context = [];
  40. if ($is_ssl && $ssl_type == 'cert') {
  41. // is_ssl 并且是证书模式
  42. $context['ssl'] = [
  43. 'local_cert' => $ssl_cert,
  44. 'local_pk' => $ssl_key,
  45. 'verify_peer' => false
  46. ];
  47. }
  48. // gateway 进程,这里使用Text协议,可以用telnet测试
  49. $gateway = new Gateway("websocket://0.0.0.0:" . $this->config['gateway_port'], $context);
  50. if ($is_ssl && $ssl_type == 'cert') {
  51. // 开启 ssl 传输
  52. $gateway->transport = 'ssl';
  53. }
  54. // gateway名称,status方便查看
  55. $gateway->name = 'ShoproChatGateway';
  56. // gateway进程数
  57. $gateway->count = $this->config['gateway_num'];
  58. // 本机ip,分布式部署时使用内网ip
  59. $gateway->lanIp = '127.0.0.1';
  60. // 内部通讯起始端口,假如$gateway->count=4,起始端口为4000
  61. // 则一般会使用4000 4001 4002 4003 4个端口作为内部通讯端口
  62. $gateway->startPort = $this->config['gateway_start_port'];
  63. // 服务注册地址
  64. $gateway->registerAddress = '127.0.0.1:' . $this->config['business_worker_port'];
  65. // 心跳间隔
  66. $gateway->pingInterval = 30;
  67. // 心跳数据
  68. $gateway->pingData = ''; // 客户端定时发送心跳
  69. // 客户端在30秒内有1次未回复就断开连接
  70. $gateway->pingNotResponseLimit = 3;
  71. }
  72. // 设置日志
  73. public function setLog($basePath) {
  74. // 日志文件
  75. Worker::$logFile = $basePath . 'library/chat/log/shopro_chat.log';
  76. // Worker::$stdoutFile = $basePath . 'library/chat/log/std_out.log'; // 如果部署的时候部署错误(比如未删除php禁用函数),会产生大量日志,先关掉
  77. Worker::$pidFile = $basePath . 'library/chat/log/shopro_chat.pid';
  78. }
  79. }