TelegramApiServer/server.php

79 lines
2.4 KiB
PHP
Raw Normal View History

<?php
use TelegramApiServer\Migrations;
2020-01-11 21:53:58 +01:00
chdir(__DIR__);
require_once __DIR__ . '/bootstrap.php';
if (PHP_SAPI !== 'cli') {
throw new RuntimeException('Start in CLI');
}
2019-03-09 00:28:30 +01:00
$shortopts = 'a::p::s::';
2019-03-19 00:36:20 +01:00
$longopts = [
'address::', // ip адресс сервера, необязательное значение
'port::', // порт сервера, необязательное значение
2019-03-09 00:28:30 +01:00
'session::', //префикс session файла
'help', //нужна ли справка?
];
$options = getopt($shortopts, $longopts);
$options = [
2019-03-19 00:36:20 +01:00
'address' => $options['address'] ?? $options['a'] ?? '',
'port' => $options['port'] ?? $options['p'] ?? '',
2020-01-11 21:53:58 +01:00
'session' => (array) ($options['session'] ?? $options['s'] ?? ''),
2019-03-19 00:36:20 +01:00
'help' => isset($options['help']),
];
if ($options['help']) {
$help = 'Fast, simple, async php telegram parser: MadelineProto + Swoole Server
2020-01-14 23:44:03 +01:00
usage: php server.php [--help] [-a=|--address=127.0.0.1] [-p=|--port=9503] [-s=|--session=session]
Options:
--help Show this message
2020-01-15 00:00:58 +01:00
-a --address Server ip (optional) (default: 127.0.0.1)
To listen external connections use 0.0.0.0 and fill IP_WHITELIST in .env
-p --port Server port (optional) (default: 9503)
-s --session Name for session file (optional) (default: session)
Multiple sessions can be specified: "--session=user --session=bot"
2020-01-14 23:44:03 +01:00
Each session is stored in `sessions/{$session}.madeline`.
Nested folders supported.
See README for more examples.
Also all options can be set in .env file (see .env.example)
Example:
php server.php
';
echo $help;
exit;
}
2020-01-11 21:53:58 +01:00
Migrations\Sessions::move(__DIR__);
2020-01-11 21:53:58 +01:00
$sessionFiles = [];
foreach ($options['session'] as $session) {
2020-01-14 18:55:31 +01:00
$session = trim($session);
if (mb_substr($session, -1) === '/') {
throw new InvalidArgumentException('Session name specified as directory');
}
2020-01-11 21:53:58 +01:00
if (!$session) {
$session = 'session';
}
2020-01-14 18:55:31 +01:00
2020-01-12 20:25:12 +01:00
$session = TelegramApiServer\Client::getSessionFile($session);
2020-01-18 15:25:53 +01:00
foreach (glob($session) as $file) {
TelegramApiServer\Client::checkOrCreateSessionFolder($file, __DIR__);
$sessionFiles[$file] = null;
}
2019-03-09 00:28:30 +01:00
}
2020-01-11 21:53:58 +01:00
$client = new TelegramApiServer\Client($sessionFiles);
2020-01-13 22:01:48 +01:00
new TelegramApiServer\Server\Server($client, $options);