start_gateway.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?php
  2. /**
  3. * This file is part of workerman.
  4. *
  5. * Licensed under The MIT License
  6. * For full copyright and license information, please see the MIT-LICENSE.txt
  7. * Redistributions of files must retain the above copyright notice.
  8. *
  9. * @author walkor<walkor@workerman.net>
  10. * @copyright walkor<walkor@workerman.net>
  11. * @link http://www.workerman.net/
  12. * @license http://www.opensource.org/licenses/mit-license.php MIT License
  13. */
  14. use \Workerman\Worker;
  15. use \Workerman\WebServer;
  16. use \GatewayWorker\Gateway;
  17. use \GatewayWorker\BusinessWorker;
  18. use \Workerman\Autoloader;
  19. // 自动加载类
  20. require_once __DIR__ . '/../../vendor/autoload.php';
  21. // gateway 进程,这里使用Text协议,可以用telnet测试
  22. $gateway = new Gateway("Websocket://0.0.0.0:9101");
  23. // gateway名称,status方便查看
  24. $gateway->name = 'WhisperGateway';
  25. // gateway进程数
  26. $gateway->count = 4;
  27. // 本机ip,分布式部署时使用内网ip
  28. $gateway->lanIp = '127.0.0.1';
  29. // 内部通讯起始端口,假如$gateway->count=4,起始端口为4000
  30. // 则一般会使用4000 4001 4002 4003 4个端口作为内部通讯端口
  31. $gateway->startPort = 2900;
  32. // 服务注册地址
  33. $gateway->registerAddress = '127.0.0.1:1238';
  34. // 心跳间隔
  35. $gateway->pingInterval = 5;
  36. $gateway->pingNotResponseLimit = 2;
  37. // 心跳数据
  38. //$gateway->pingData = '{"message_type":"ping"}';
  39. // 当客户端连接上来时,设置连接的onWebSocketConnect,即在websocket握手时的回调
  40. $gateway->onConnect = function ($connection) {
  41. $connection->onWebSocketConnect = function ($connection, $http_header) {
  42. $apiToken = md5('Customer-Service' . strtotime(date('Y-m-d')) . $_SERVER['HTTP_ORIGIN']);
  43. //echo $apiToken."/".$_GET['apiToken'];
  44. $_SESSION['userAgent'] = $_SERVER['HTTP_USER_AGENT'];
  45. $_SESSION['origin'] = $_SERVER['HTTP_ORIGIN'];
  46. $getToken = isset($_GET['apiToken']) ? $_GET['apiToken'] : '';
  47. if ($getToken !== $apiToken) {
  48. //$connection->close();
  49. // return;
  50. }
  51. $_SESSION['remotip'] = $connection->getRemoteIp();
  52. $_SESSION['remotport'] = $connection->getRemotePort();
  53. // 可以在这里判断连接来源是否合法,不合法就关掉连接
  54. // $_SERVER['HTTP_ORIGIN']标识来自哪个站点的页面发起的websocket链接
  55. /*if($_SERVER['HTTP_ORIGIN'] != 'http://kedou.workerman.net')
  56. {
  57. $connection->close();
  58. }*/
  59. // onWebSocketConnect 里面$_GET $_SERVER是可用的
  60. // var_dump($_GET, $_SERVER);
  61. };
  62. };
  63. // 如果不是在根目录启动,则运行runAll方法
  64. if (!defined('GLOBAL_START')) {
  65. Worker::runAll();
  66. }