代码拉取完成,页面将自动刷新
同步操作将从 shenzhe/gitosc-hook 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?php
function mylog($msg, $filename='hook_error'){
error_log(date("Y-m-d H:i:s")."\t".$msg.PHP_EOL, 3, __DIR__.DIRECTORY_SEPARATOR.$filename.'.mylog');
}
define('PASSWORD', '');
$config = null;
$opt = getopt("d", [
"ip::",
"port::",
"worker::"
]);
$ip = empty($opt['ip']) ? '0.0.0.0' : $opt['ip'];
$port = empty($opt['port']) ? '9501' : $opt['port'];
if (isset($opt['d'])) {
$daemonize = 1;
} else {
$daemonize = 0;
}
$workerNum = empty($opt['worker']) ? 4 : intval($opt['worker']);
$http = new swoole_http_server($ip, $port);
$http->set([
'worker_num'=>$workerNum,
'daemonize'=>$daemonize,
]);
$http->on('request', function ($request, $response) {
$response->end('ok');
if(false !== strpos($request->server['path_info'], 'reload')) {
global $http;
$http->reload();
return;
}
if(empty($request->post['hook'])) {
mylog('hook data empty');
return;
}
$data = json_decode($request->post['hook'], true);
if(empty($data)) {
//错误的数据
mylog('hook no json data');
return;
}
if(PASSWORD && $data['password'] != PASSWORD) {
//密码不匹配
mylog('password error');
return ;
}
if(empty($data['push_data']['commits'])) {
//没有提交者
mylog('no commit');
return ;
}
//项目名称
$project = $data['push_data']['repository']['name'];
//分支名称
$ref = $data['push_data']['ref'];
mylog("{$project}: {$ref} push");
global $config;
if(empty($config[$project][$ref])) {
mylog("no {$project} {$ref}");
return ;
}
$client = new \swoole_client(SWOOLE_SOCK_UDP);
foreach($config[$project][$ref] as $item) {
$client->connect($item['host'], $item['port']);
$client->send(json_encode([$project, $ref, $item['path']]));
}
});
$http->on('workerStart', function($serv, $workerId) {
global $config;
if(function_exists('opcache_reset')) {
opcache_reset();
}
$config = include(__DIR__.DIRECTORY_SEPARATOR.'config.php');
});
$http->start();
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。