- Contract.php: 返回合约账户余额(balance_contract) - My.php: 地址管理增加BTC/ETH - AppContract.php: 一键平仓(closeall) - AppProxy.php: 代理专属注册链接 + 分级权限(L1/L2) - site.php: 手续费减半(0.018→0.009) - agent_permission_setup.sql: 代理权限SQL - crypto_news_crawler.py: 新闻自动采集脚本
77 lines
2.0 KiB
PHP
Executable File
77 lines
2.0 KiB
PHP
Executable File
<?php
|
||
/**
|
||
* run with command
|
||
* php start.php start
|
||
*/
|
||
|
||
namespace addons\kefu\library\gatewayworker;
|
||
|
||
ini_set('display_errors', 'on');
|
||
|
||
use think\Config;
|
||
use think\console\Command;
|
||
use think\console\Input;
|
||
use think\console\input\Argument;
|
||
use think\console\input\Option;
|
||
use think\console\Output;
|
||
use think\Db;
|
||
use think\Exception;
|
||
use think\exception\PDOException;
|
||
use Workerman\Worker;
|
||
|
||
/**
|
||
*
|
||
*/
|
||
class start extends Command
|
||
{
|
||
|
||
protected function configure()
|
||
{
|
||
$this->setName('kefu')
|
||
->addArgument('action', Argument::OPTIONAL, "action start [d]|stop|restart|status")
|
||
->addArgument('type', Argument::OPTIONAL, "d -d")
|
||
->setDescription('KeFu 会话服务');
|
||
}
|
||
|
||
protected function execute(Input $input, Output $output)
|
||
{
|
||
global $argv;
|
||
$action = trim($input->getArgument('action'));
|
||
$type = trim($input->getArgument('type')) ? '-d' : '';
|
||
|
||
$argv[0] = 'chat';
|
||
$argv[1] = $action;
|
||
$argv[2] = $type ? '-d' : '';
|
||
$this->start();
|
||
}
|
||
|
||
private function start()
|
||
{
|
||
if (strpos(strtolower(PHP_OS), 'win') === 0) {
|
||
exit("Windows下不支持窗口启动,请手动运行(not support windows, please use):public/kefu_start_for_win.bat\n");
|
||
}
|
||
|
||
// 检查扩展
|
||
if (!extension_loaded('pcntl')) {
|
||
exit("Please install pcntl extension. See http://doc.workerman.net/appendices/install-extension.html\n");
|
||
}
|
||
|
||
if (!extension_loaded('posix')) {
|
||
exit("Please install posix extension. See http://doc.workerman.net/appendices/install-extension.html\n");
|
||
}
|
||
|
||
// 标记是全局启动
|
||
define('GLOBAL_START', 1);
|
||
|
||
require_once __DIR__ . '/vendor/autoload.php';
|
||
|
||
// 加载所有Applications/*/start.php,以便启动所有服务
|
||
foreach (glob(__DIR__ . '/Applications/*/start*.php') as $start_file) {
|
||
require_once $start_file;
|
||
}
|
||
|
||
// 运行所有服务
|
||
Worker::runAll();
|
||
}
|
||
}
|