初始上传
This commit is contained in:
94
app/gateway/service/Events.php
Executable file
94
app/gateway/service/Events.php
Executable file
@@ -0,0 +1,94 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* This file is part of workerman.
|
||||
*
|
||||
* Licensed under The MIT License
|
||||
* For full copyright and license information, please see the MIT-LICENSE.txt
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @author walkor<walkor@workerman.net>
|
||||
* @copyright walkor<walkor@workerman.net>
|
||||
* @link http://www.workerman.net/
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
|
||||
/**
|
||||
* 用于检测业务代码死循环或者长时间阻塞等问题
|
||||
* 如果发现业务卡死,可以将下面declare打开(去掉//注释),并执行php start.php reload
|
||||
* 然后观察一段时间workerman.log看是否有process_timeout异常
|
||||
*/
|
||||
//declare(ticks=1);
|
||||
|
||||
use \GatewayWorker\Lib\Gateway;
|
||||
use Workerman\MySQL\Connection;
|
||||
|
||||
/**
|
||||
* 主逻辑
|
||||
* 主要是处理 onConnect onMessage onClose 三个方法
|
||||
* onConnect 和 onClose 如果不需要可以不用实现并删除
|
||||
*/
|
||||
class Events
|
||||
{
|
||||
protected static $db;
|
||||
protected static $prefix;
|
||||
|
||||
/**
|
||||
* 进行启动时操作
|
||||
*
|
||||
* @param mixed $businessWorker
|
||||
* @return void
|
||||
*/
|
||||
public static function onWorkerStart($businessWorker)
|
||||
{
|
||||
$config_info = require __DIR__ . '/../../../config/gateway.php';
|
||||
$config = $config_info['database'];
|
||||
self::$prefix = $config['prefix'];
|
||||
self::$db = new Connection($config['host'], $config['port'], $config['user'], $config['passwd'], $config['dbname']);
|
||||
|
||||
// 全部下线
|
||||
@self::$db->update(self::$prefix . 'servicer')->cols(['online' => 0, 'client_id' => ''])->query();
|
||||
@self::$db->update(self::$prefix . 'servicer_member')->cols(['online' => 0, 'client_id' => ''])->query();
|
||||
}
|
||||
|
||||
/**
|
||||
* 当客户端连接时触发
|
||||
* 如果业务不需此回调可以删除onConnect
|
||||
* @param int $client_id 连接id
|
||||
*/
|
||||
public static function onConnect($client_id)
|
||||
{
|
||||
$message = json_encode(['type' => 'init', 'data' => ['client_id' => $client_id]]);
|
||||
// 向当前client_id发送数据
|
||||
Gateway::sendToClient($client_id, $message);
|
||||
}
|
||||
|
||||
/**
|
||||
* 当客户端发来消息时触发
|
||||
* @param int $client_id 连接id
|
||||
* @param mixed $message 具体消息
|
||||
*/
|
||||
public static function onMessage($client_id, $message)
|
||||
{
|
||||
// 向所有人发送
|
||||
// Gateway::sendToAll("$client_id said $message\r\n");
|
||||
}
|
||||
|
||||
/**
|
||||
* 当用户断开连接时触发
|
||||
* @param int $client_id 连接id
|
||||
*/
|
||||
public static function onClose($client_id)
|
||||
{
|
||||
//用户下线处理
|
||||
$servicer_member_info = self::$db->select('*')->from(self::$prefix . 'servicer_member')->where("client_id = '$client_id' ")->row();
|
||||
if(!empty($servicer_member_info)){
|
||||
@self::$db->update(self::$prefix . 'servicer_member')->cols(['online' => 0, 'client_id' => ''])->where("client_id = '$client_id' ")->query();
|
||||
Gateway::sendToUid('ns_servicer_' . $servicer_member_info[ 'servicer_id' ], json_encode([ 'type' => 'disconnect', 'data' => [ 'member_id' => $servicer_member_info['member_id'] ] ]));
|
||||
return;
|
||||
}
|
||||
|
||||
//客服下线处理
|
||||
@self::$db->update(self::$prefix . 'servicer')->cols(['online' => 0, 'client_id' => ''])->where("client_id = '$client_id' ")->query();
|
||||
}
|
||||
}
|
||||
35
app/gateway/service/start_businessworker.php
Executable file
35
app/gateway/service/start_businessworker.php
Executable file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* This file is part of workerman.
|
||||
*
|
||||
* Licensed under The MIT License
|
||||
* For full copyright and license information, please see the MIT-LICENSE.txt
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @author walkor<walkor@workerman.net>
|
||||
* @copyright walkor<walkor@workerman.net>
|
||||
* @link http://www.workerman.net/
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
|
||||
use GatewayWorker\BusinessWorker;
|
||||
use Workerman\Worker;
|
||||
|
||||
// 自动加载类
|
||||
require_once __DIR__ . '/../vendor/autoload.php';
|
||||
$config_info = require __DIR__ . '/../../../config/gateway.php';
|
||||
|
||||
// bussinessWorker 进程
|
||||
$worker = new BusinessWorker();
|
||||
// worker名称
|
||||
$worker->name = $config_info['worker']['name'];
|
||||
// bussinessWorker进程数量
|
||||
$worker->count = $config_info['worker']['count'];
|
||||
// 服务注册地址
|
||||
$worker->registerAddress = $config_info['worker']['register_address'];
|
||||
|
||||
// 如果不是在根目录启动,则运行runAll方法
|
||||
if (!defined('GLOBAL_START')) {
|
||||
Worker::runAll();
|
||||
}
|
||||
81
app/gateway/service/start_gateway.php
Executable file
81
app/gateway/service/start_gateway.php
Executable file
@@ -0,0 +1,81 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* This file is part of workerman.
|
||||
*
|
||||
* Licensed under The MIT License
|
||||
* For full copyright and license information, please see the MIT-LICENSE.txt
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @author walkor<walkor@workerman.net>
|
||||
* @copyright walkor<walkor@workerman.net>
|
||||
* @link http://www.workerman.net/
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
|
||||
use GatewayWorker\Gateway;
|
||||
use Workerman\Worker;
|
||||
|
||||
// 自动加载类
|
||||
require_once __DIR__ . '/../vendor/autoload.php';
|
||||
$config_info = require __DIR__ . '/../../../config/gateway.php';
|
||||
|
||||
if ($config_info['ssl'] && $config_info['ssl']['enable']) {
|
||||
$context = [
|
||||
'ssl' => [
|
||||
'local_cert' => $config_info['ssl']['cert'], // 也可以是crt文件
|
||||
'local_pk' => $config_info['ssl']['key'],
|
||||
'verify_peer' => false
|
||||
]
|
||||
];
|
||||
|
||||
$gateway = new Gateway($config_info['gateway']['socket_name'], $context);
|
||||
$gateway->transport = 'ssl';
|
||||
} else {
|
||||
// gateway 进程,这里使用Text协议,可以用telnet测试
|
||||
$gateway = new Gateway($config_info['gateway']['socket_name']);
|
||||
}
|
||||
|
||||
// gateway名称,status方便查看
|
||||
$gateway->name = $config_info['gateway']['name'];
|
||||
// gateway进程数
|
||||
$gateway->count = $config_info['gateway']['count'];
|
||||
// 本机ip,分布式部署时使用内网ip
|
||||
$gateway->lanIp = $config_info['gateway']['lan_ip'];
|
||||
// 内部通讯起始端口,假如$gateway->count=4,起始端口为4000
|
||||
// 则一般会使用4000 4001 4002 4003 4个端口作为内部通讯端口
|
||||
$gateway->startPort = $config_info['gateway']['start_port'];;
|
||||
// 服务注册地址
|
||||
$gateway->registerAddress = $config_info['gateway']['register_address'];
|
||||
|
||||
// 心跳间隔
|
||||
$gateway->pingInterval = $config_info['gateway']['ping_interval'];
|
||||
$gateway->pingNotResponseLimit = $config_info['gateway']['ping_not_response_limit'];
|
||||
// 心跳数据
|
||||
$gateway->pingData = $config_info['gateway']['ping_data'];
|
||||
|
||||
/*
|
||||
// 当客户端连接上来时,设置连接的onWebSocketConnect,即在websocket握手时的回调
|
||||
$gateway->onConnect = function($connection)
|
||||
{
|
||||
$connection->onWebSocketConnect = function($connection , $http_header)
|
||||
{
|
||||
// 可以在这里判断连接来源是否合法,不合法就关掉连接
|
||||
// $_SERVER['HTTP_ORIGIN']标识来自哪个站点的页面发起的websocket链接
|
||||
if($_SERVER['HTTP_ORIGIN'] != 'http://kedou.workerman.net')
|
||||
{
|
||||
$connection->close();
|
||||
}
|
||||
// onWebSocketConnect 里面$_GET $_SERVER是可用的
|
||||
// var_dump($_GET, $_SERVER);
|
||||
};
|
||||
};
|
||||
*/
|
||||
|
||||
// 如果不是在根目录启动,则运行runAll方法
|
||||
if (!defined('GLOBAL_START')) {
|
||||
Worker::runAll();
|
||||
}
|
||||
|
||||
|
||||
|
||||
31
app/gateway/service/start_register.php
Executable file
31
app/gateway/service/start_register.php
Executable file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* This file is part of workerman.
|
||||
*
|
||||
* Licensed under The MIT License
|
||||
* For full copyright and license information, please see the MIT-LICENSE.txt
|
||||
* Redistributions of files must retain the above copyright notice.
|
||||
*
|
||||
* @author walkor<walkor@workerman.net>
|
||||
* @copyright walkor<walkor@workerman.net>
|
||||
* @link http://www.workerman.net/
|
||||
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||||
*/
|
||||
|
||||
use \Workerman\Worker;
|
||||
use \GatewayWorker\Register;
|
||||
|
||||
// 自动加载类
|
||||
require_once __DIR__ . '/../vendor/autoload.php';
|
||||
$config_info = require __DIR__ . '/../../../config/gateway.php';
|
||||
|
||||
// register 必须是text协议
|
||||
$register = new Register($config_info['register']['socket_name']);
|
||||
|
||||
$register->name = $config_info['register']['name'] ?? 'Register';
|
||||
|
||||
// 如果不是在根目录启动,则运行runAll方法
|
||||
if (!defined('GLOBAL_START')) {
|
||||
Worker::runAll();
|
||||
}
|
||||
Reference in New Issue
Block a user