mirror of
https://github.com/danog/TelegramApiServer.git
synced 2024-11-26 20:04:45 +01:00
47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Get all updates from MadelineProto EventHandler running inside TelegramApiServer via websocket
|
|
* @see \TelegramApiServer\Controllers\EventsController
|
|
*/
|
|
|
|
require 'vendor/autoload.php';
|
|
|
|
use Amp\Websocket\Client\Connection;
|
|
use Amp\Websocket\Message;
|
|
use function Amp\Websocket\Client\connect;
|
|
|
|
$shortopts = 'u::';
|
|
$longopts = [
|
|
'url::',
|
|
];
|
|
$options = getopt($shortopts, $longopts);
|
|
$options = [
|
|
'url' => $options['url'] ?? $options['u'] ?? 'ws://127.0.0.1:9503/events',
|
|
];
|
|
|
|
Amp\Loop::run(static function () use($options) {
|
|
echo "Connecting to: {$options['url']}" . PHP_EOL;
|
|
|
|
while(true) {
|
|
try {
|
|
/** @var Connection $connection */
|
|
$connection = yield connect($options['url']);
|
|
|
|
$connection->onClose(static function() use($connection) {
|
|
printf("Connection closed. Reason: %s\n", $connection->getCloseReason());
|
|
});
|
|
|
|
echo 'Waiting for events...' . PHP_EOL;
|
|
while ($message = yield $connection->receive()) {
|
|
/** @var Message $message */
|
|
$payload = yield $message->buffer();
|
|
printf("Received event: %s\n", $payload);
|
|
}
|
|
} catch (\Throwable $e) {
|
|
printf("Error: %s\n", $e->getMessage());
|
|
}
|
|
yield new Amp\Delayed(500);
|
|
}
|
|
|
|
}); |