mirror of
https://github.com/danog/magnaluna.git
synced 2024-11-26 11:34:39 +01:00
Update magnaluna
This commit is contained in:
parent
4348de7d52
commit
fd33e36fed
2
.gitignore
vendored
2
.gitignore
vendored
@ -98,7 +98,7 @@ composer.lock
|
||||
b.php
|
||||
*.log
|
||||
telegram-cli*
|
||||
src/danog/MadelineProto/Fuzzer.php
|
||||
src/Fuzzer.php
|
||||
fuzzer.php
|
||||
tests/500mb
|
||||
*.save
|
||||
|
298
magna.php
298
magna.php
@ -10,28 +10,33 @@
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
use danog\Loop\ResumableSignalLoop;
|
||||
use danog\MadelineProto\EventHandler;
|
||||
declare(strict_types=1);
|
||||
|
||||
if (\file_exists('vendor/autoload.php')) {
|
||||
require 'vendor/autoload.php';
|
||||
} else {
|
||||
if (!\file_exists('madeline.php')) {
|
||||
\copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
|
||||
use danog\Loop\ResumableSignalLoop;
|
||||
use danog\MadelineProto\API;
|
||||
use danog\MadelineProto\EventHandler;
|
||||
use danog\MadelineProto\EventHandler\Attributes\Handler;
|
||||
use danog\MadelineProto\EventHandler\SimpleFilter\Incoming;
|
||||
use danog\MadelineProto\Exception;
|
||||
use danog\MadelineProto\LocalFile;
|
||||
use danog\MadelineProto\RPCErrorException;
|
||||
use danog\MadelineProto\SimpleEventHandler;
|
||||
use danog\MadelineProto\Tools;
|
||||
use danog\MadelineProto\VoIP;
|
||||
use danog\MadelineProto\VoIP\CallState;
|
||||
|
||||
//if (file_exists('vendor/autoload.php')) {
|
||||
require 'vendor/autoload.php';
|
||||
/*} else {
|
||||
if (!file_exists('madeline.php')) {
|
||||
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
|
||||
}
|
||||
include 'madeline.php';
|
||||
}
|
||||
|
||||
if (!\file_exists('songs.php')) {
|
||||
\copy('https://github.com/danog/magnaluna/raw/master/songs.php', 'songs.php');
|
||||
}
|
||||
if (!\glob('*.raw')) {
|
||||
\copy('https://github.com/danog/MadelineProto/raw/deprecated/input.raw', 'input.raw');
|
||||
}
|
||||
}*/
|
||||
|
||||
echo 'Deserializing MadelineProto from session.madeline...'.PHP_EOL;
|
||||
|
||||
class MessageLoop extends ResumableSignalLoop
|
||||
/*class MessageLoop extends ResumableSignalLoop
|
||||
{
|
||||
const INTERVAL = 10000;
|
||||
private $timeout;
|
||||
@ -43,34 +48,34 @@ class MessageLoop extends ResumableSignalLoop
|
||||
$this->call = $call;
|
||||
$this->timeout = $timeout;
|
||||
}
|
||||
public function loop(): \Generator
|
||||
public function loop(): void
|
||||
{
|
||||
$MadelineProto = $this->API;
|
||||
$logger = $MadelineProto->getLogger();
|
||||
|
||||
while (true) {
|
||||
do {
|
||||
$result = yield $this->waitSignal($this->pause($this->timeout));
|
||||
$result = $this->waitSignal($this->pause($this->timeout));
|
||||
if ($result) {
|
||||
$logger->logger("Got signal in $this, exiting");
|
||||
return;
|
||||
}
|
||||
} while (!isset($this->call->mId));
|
||||
$result = yield $this->waitSignal($this->pause($this->timeout));
|
||||
$result = $this->waitSignal($this->pause($this->timeout));
|
||||
try {
|
||||
$message = 'Total running calls: '.\count(yield $MadelineProto->getEventHandler()->calls).PHP_EOL.PHP_EOL.$this->call->getDebugString();
|
||||
$message = 'Total running calls: '.count($MadelineProto->getEventHandler()->calls).PHP_EOL.PHP_EOL.$this->call->getDebugString();
|
||||
$message .= PHP_EOL.PHP_EOL.PHP_EOL;
|
||||
$message .= "Emojis: ".\implode('', $this->call->getVisualization());
|
||||
$message .= "Emojis: ".implode('', $this->call->getVisualization());
|
||||
|
||||
yield $MadelineProto->messages->editMessage(['id' => $this->call->mId, 'peer' => $this->call->getOtherID(), 'message' => $message]);
|
||||
} catch (\danog\MadelineProto\RPCErrorException $e) {
|
||||
$MadelineProto->messages->editMessage(['id' => $this->call->mId, 'peer' => $this->call->otherID, 'message' => $message]);
|
||||
} catch (RPCErrorException $e) {
|
||||
$MadelineProto->logger($e);
|
||||
}
|
||||
}
|
||||
}
|
||||
public function __toString(): string
|
||||
{
|
||||
return "VoIP message loop ".$this->call->getOtherId();
|
||||
return "VoIP message loop ".$this->call->otherID;
|
||||
}
|
||||
}
|
||||
class StatusLoop extends ResumableSignalLoop
|
||||
@ -85,29 +90,29 @@ class StatusLoop extends ResumableSignalLoop
|
||||
$this->call = $call;
|
||||
$this->timeout = $timeout;
|
||||
}
|
||||
public function loop(): \Generator
|
||||
public function loop(): void
|
||||
{
|
||||
$MadelineProto = $this->API;
|
||||
$logger = $MadelineProto->getLogger();
|
||||
$call = $this->call;
|
||||
|
||||
while (true) {
|
||||
$result = yield $this->waitSignal($this->pause($this->timeout));
|
||||
$result = $this->waitSignal($this->pause($this->timeout));
|
||||
if ($result) {
|
||||
$logger->logger("Got signal in $this, exiting");
|
||||
$MadelineProto->getEventHandler()->cleanUpCall($call->getOtherID());
|
||||
$MadelineProto->getEventHandler()->cleanUpCall($call->otherID);
|
||||
return;
|
||||
}
|
||||
|
||||
if ($call->getCallState() === \danog\MadelineProto\VoIP::CALL_STATE_ENDED) {
|
||||
$MadelineProto->getEventHandler()->cleanUpCall($call->getOtherID());
|
||||
if (\file_exists('/tmp/logs'.$call->getCallID()['id'].'.log')) {
|
||||
@\unlink('/tmp/logs'.$call->getCallID()['id'].'.log');
|
||||
if ($call->getCallState() === CallState::ENDED) {
|
||||
$MadelineProto->getEventHandler()->cleanUpCall($call->otherID);
|
||||
if (file_exists('/tmp/logs'.$call->getCallID()['id'].'.log')) {
|
||||
@unlink('/tmp/logs'.$call->getCallID()['id'].'.log');
|
||||
try {
|
||||
$me = yield $this->API->getEventHandler()->getMe();
|
||||
yield $MadelineProto->messages->sendMedia([
|
||||
$me = $this->API->getEventHandler()->getMe();
|
||||
$MadelineProto->messages->sendMedia([
|
||||
'reply_to_msg_id' => $this->call->mId,
|
||||
'peer' => $call->getOtherID(), 'message' => "Debug info by $me",
|
||||
'peer' => $call->otherID, 'message' => "Debug info by $me",
|
||||
'media' => [
|
||||
'_' => 'inputMediaUploadedDocument',
|
||||
'file' => '/tmp/logs'.$call->getCallID()['id'].'.log',
|
||||
@ -116,16 +121,16 @@ class StatusLoop extends ResumableSignalLoop
|
||||
],
|
||||
],
|
||||
]);
|
||||
} catch (\danog\MadelineProto\Exception $e) {
|
||||
} catch (Exception $e) {
|
||||
$MadelineProto->logger($e);
|
||||
} catch (\danog\MadelineProto\RPCErrorException $e) {
|
||||
} catch (RPCErrorException $e) {
|
||||
$MadelineProto->logger($e);
|
||||
} catch (\danog\MadelineProto\Exception $e) {
|
||||
} catch (Exception $e) {
|
||||
$MadelineProto->logger($e);
|
||||
}
|
||||
}
|
||||
if (\file_exists('/tmp/stats'.$call->getCallID()['id'].'.txt')) {
|
||||
@\unlink('/tmp/stats'.$call->getCallID()['id'].'.txt');
|
||||
if (file_exists('/tmp/stats'.$call->getCallID()['id'].'.txt')) {
|
||||
@unlink('/tmp/stats'.$call->getCallID()['id'].'.txt');
|
||||
}
|
||||
return;
|
||||
}
|
||||
@ -133,11 +138,11 @@ class StatusLoop extends ResumableSignalLoop
|
||||
}
|
||||
public function __toString(): string
|
||||
{
|
||||
return "VoIP status loop ".$this->call->getOtherId();
|
||||
return "VoIP status loop ".$this->call->otherID;
|
||||
}
|
||||
}
|
||||
}*/
|
||||
|
||||
class PonyEventHandler extends \danog\MadelineProto\EventHandler
|
||||
class MyEventHandler extends SimpleEventHandler
|
||||
{
|
||||
const ADMINS = [101374607]; // @danogentili, creator of MadelineProto
|
||||
private $messageLoops = [];
|
||||
@ -146,9 +151,20 @@ class PonyEventHandler extends \danog\MadelineProto\EventHandler
|
||||
private $my_users;
|
||||
private $me;
|
||||
public $calls = [];
|
||||
public function onStart(): \Generator
|
||||
public function onStart(): void
|
||||
{
|
||||
$this->me = '@' . (((yield $this->getSelf())['username']) ?? 'magnaluna');
|
||||
$this->me = '@' . ((($this->getSelf())['username']) ?? 'magnaluna');
|
||||
|
||||
$this->programmed_call = [];
|
||||
foreach ($this->programmed_call as $key => [$user, $time]) {
|
||||
continue;
|
||||
$sleepTime = $time <= time() ? 0 : $time - time();
|
||||
Tools::callFork(function () use ($sleepTime, $key, $user): void {
|
||||
Tools::sleep($sleepTime);
|
||||
$this->makeCall($user);
|
||||
unset($this->programmed_call[$key]);
|
||||
});
|
||||
}
|
||||
}
|
||||
public function getMe(): string
|
||||
{
|
||||
@ -158,49 +174,42 @@ class PonyEventHandler extends \danog\MadelineProto\EventHandler
|
||||
{
|
||||
return self::ADMINS;
|
||||
}
|
||||
public function configureCall($call)
|
||||
public function configureCall(VoIP $call): void
|
||||
{
|
||||
\danog\MadelineProto\VoIPServerConfig::update(
|
||||
[
|
||||
'audio_init_bitrate' => 100 * 1000,
|
||||
'audio_max_bitrate' => 100 * 1000,
|
||||
'audio_min_bitrate' => 10 * 1000,
|
||||
'audio_congestion_window' => 4 * 1024,
|
||||
]
|
||||
);
|
||||
|
||||
include 'songs.php';
|
||||
$call->configuration['enable_NS'] = false;
|
||||
$call->configuration['enable_AGC'] = false;
|
||||
$call->configuration['enable_AEC'] = false;
|
||||
$call->configuration['log_file_path'] = '/tmp/logs'.$call->getCallID()['id'].'.log'; // Default is /dev/null
|
||||
//$call->configuration["stats_dump_file_path"] = "/tmp/stats".$call->getCallID()['id'].".txt"; // Default is /dev/null
|
||||
$call->parseConfig();
|
||||
$call->playOnHold($songs);
|
||||
if ($call->getCallState() === \danog\MadelineProto\VoIP::CALL_STATE_INCOMING) {
|
||||
if (!$res = yield $call->accept()) {
|
||||
$this->logger('DID NOT ACCEPT A CALL');
|
||||
}
|
||||
$songs = glob('*ogg');
|
||||
if (!$songs) {
|
||||
die('No songs defined! Convert some songs as described in https://docs.madelineproto.xyz/docs/CALLS.html');
|
||||
}
|
||||
if ($call->getCallState() !== \danog\MadelineProto\VoIP::CALL_STATE_ENDED) {
|
||||
$this->calls[$call->getOtherID()] = $call;
|
||||
try {
|
||||
$message = 'Total running calls: '.\count(yield $this->calls).PHP_EOL.PHP_EOL.$call->getDebugString();
|
||||
$songs_length = count($songs);
|
||||
|
||||
for ($x = 0; $x < $songs_length; $x++) {
|
||||
shuffle($songs);
|
||||
}
|
||||
|
||||
foreach ($songs as &$song) {
|
||||
$song = new LocalFile($song);
|
||||
}
|
||||
|
||||
$call->playOnHold(...$songs);
|
||||
if ($call->getCallState() !== CallState::ENDED) {
|
||||
$this->calls[$call->otherID] = $call;
|
||||
/*try {
|
||||
$message = 'Total running calls: '.count($this->calls).PHP_EOL.PHP_EOL.$call->getDebugString();
|
||||
//$message .= PHP_EOL;
|
||||
//$message .= "Emojis: ".implode('', $call->getVisualization());
|
||||
|
||||
$call->mId = yield $this->messages->sendMessage(['peer' => $call->getOtherID(), 'message' => $message])['id'];
|
||||
} catch (\Throwable $e) {
|
||||
$call->mId = $this->messages->sendMessage(['peer' => $call->otherID, 'message' => $message])['id'];
|
||||
} catch (Throwable $e) {
|
||||
$this->logger($e);
|
||||
}
|
||||
$this->messageLoops[$call->getOtherID()] = new MessageLoop($this, $call);
|
||||
$this->statusLoops[$call->getOtherID()] = new StatusLoop($this, $call);
|
||||
$this->messageLoops[$call->getOtherID()]->start();
|
||||
$this->statusLoops[$call->getOtherID()]->start();
|
||||
$this->messageLoops[$call->otherID] = new MessageLoop($this, $call);
|
||||
$this->statusLoops[$call->otherID] = new StatusLoop($this, $call);
|
||||
$this->messageLoops[$call->otherID]->start();
|
||||
$this->statusLoops[$call->otherID]->start();*/
|
||||
}
|
||||
//yield $this->messages->sendMessage(['message' => var_export($call->configuration, true), 'peer' => $call->getOtherID()]);
|
||||
//$this->messages->sendMessage(['message' => var_export($call->configuration, true), 'peer' => $call->otherID]);
|
||||
}
|
||||
public function cleanUpCall($user)
|
||||
public function cleanUpCall($user): void
|
||||
{
|
||||
if (isset($this->calls[$user])) {
|
||||
unset($this->calls[$user]);
|
||||
@ -214,19 +223,19 @@ class PonyEventHandler extends \danog\MadelineProto\EventHandler
|
||||
unset($this->statusLoops[$user]);
|
||||
}
|
||||
}
|
||||
public function makeCall($user)
|
||||
public function makeCall($user): void
|
||||
{
|
||||
try {
|
||||
if (isset($this->calls[$user])) {
|
||||
if ($this->calls[$user]->getCallState() === \danog\MadelineProto\VoIP::CALL_STATE_ENDED) {
|
||||
yield $this->cleanUpCall($user);
|
||||
if ($this->calls[$user]->getCallState() === CallState::ENDED) {
|
||||
$this->cleanUpCall($user);
|
||||
} else {
|
||||
yield $this->messages->sendMessage(['peer' => $user, 'message' => "I'm already in a call with you!"]);
|
||||
$this->messages->sendMessage(['peer' => $user, 'message' => "I'm already in a call with you!"]);
|
||||
return;
|
||||
}
|
||||
}
|
||||
yield $this->configureCall(yield $this->requestCall($user));
|
||||
} catch (\danog\MadelineProto\RPCErrorException $e) {
|
||||
$this->configureCall($this->requestCall($user));
|
||||
} catch (RPCErrorException $e) {
|
||||
try {
|
||||
if ($e->rpc === 'USER_PRIVACY_RESTRICTED') {
|
||||
$e = 'Please disable call privacy settings to make me call you';
|
||||
@ -235,20 +244,20 @@ class PonyEventHandler extends \danog\MadelineProto\EventHandler
|
||||
$this->programmed_call[] = [$user, time() + 1 + $t];
|
||||
$e = "I'll call you back in $t seconds.\nYou can also call me right now.";
|
||||
}*/
|
||||
yield $this->messages->sendMessage(['peer' => $user, 'message' => (string) $e]);
|
||||
} catch (\danog\MadelineProto\RPCErrorException $e) {
|
||||
$this->messages->sendMessage(['peer' => $user, 'message' => (string) $e]);
|
||||
} catch (RPCErrorException $e) {
|
||||
}
|
||||
} catch (\Throwable $e) {
|
||||
yield $this->messages->sendMessage(['peer' => $user, 'message' => (string) $e]);
|
||||
} catch (Throwable $e) {
|
||||
$this->messages->sendMessage(['peer' => $user, 'message' => (string) $e]);
|
||||
}
|
||||
}
|
||||
public function handleMessage($chat_id, $from_id, $message)
|
||||
public function handleMessage($chat_id, $from_id, $message): void
|
||||
{
|
||||
try {
|
||||
if (!isset($this->my_users[$from_id]) || $message === '/start') {
|
||||
$this->my_users[$from_id] = true;
|
||||
$message = '/call';
|
||||
yield $this->messages->sendMessage(['no_webpage' => true, 'peer' => $chat_id, 'message' => "Hi, I'm {$this->me} the webradio.
|
||||
$this->messages->sendMessage(['no_webpage' => true, 'peer' => $chat_id, 'message' => "Hi, I'm {$this->me} the webradio.
|
||||
|
||||
Call _me_ to listen to some **awesome** music, or send /call to make _me_ call _you_ (don't forget to disable call privacy settings!).
|
||||
|
||||
@ -269,35 +278,35 @@ Source code: https://github.com/danog/MadelineProto
|
||||
Propic art by magnaluna on [deviantart](https://magnaluna.deviantart.com).", 'parse_mode' => 'Markdown']);
|
||||
}
|
||||
if (!isset($this->calls[$from_id]) && $message === '/call') {
|
||||
yield $this->makeCall($from_id);
|
||||
$this->makeCall($from_id);
|
||||
}
|
||||
if (\strpos($message, '/program') === 0) {
|
||||
$time = \strtotime(\str_replace('/program ', '', $message));
|
||||
if (strpos($message, '/program') === 0) {
|
||||
$time = strtotime(str_replace('/program ', '', $message));
|
||||
if ($time === false) {
|
||||
yield $this->messages->sendMessage(['peer' => $chat_id, 'message' => 'Invalid time provided']);
|
||||
} elseif ($time - \time() <= 0) {
|
||||
yield $this->messages->sendMessage(['peer' => $chat_id, 'message' => 'Invalid time provided']);
|
||||
$this->messages->sendMessage(['peer' => $chat_id, 'message' => 'Invalid time provided']);
|
||||
} elseif ($time - time() <= 0) {
|
||||
$this->messages->sendMessage(['peer' => $chat_id, 'message' => 'Invalid time provided']);
|
||||
} else {
|
||||
yield $this->messages->sendMessage(['peer' => $chat_id, 'message' => 'OK']);
|
||||
$this->messages->sendMessage(['peer' => $chat_id, 'message' => 'OK']);
|
||||
$this->programmed_call[] = [$from_id, $time];
|
||||
$key = \count($this->programmed_call) - 1;
|
||||
yield \danog\MadelineProto\Tools::sleep($time - \time());
|
||||
yield $this->makeCall($from_id);
|
||||
$key = count($this->programmed_call) - 1;
|
||||
Tools::sleep($time - time());
|
||||
$this->makeCall($from_id);
|
||||
unset($this->programmed_call[$key]);
|
||||
}
|
||||
}
|
||||
if ($message === '/broadcast' && \in_array(self::ADMINS, $from_id)) {
|
||||
$time = \time() + 100;
|
||||
$message = \explode(' ', $message, 2);
|
||||
if ($message === '/broadcast' && in_array(self::ADMINS, $from_id)) {
|
||||
$time = time() + 100;
|
||||
$message = explode(' ', $message, 2);
|
||||
unset($message[0]);
|
||||
$message = \implode(' ', $message);
|
||||
$message = implode(' ', $message);
|
||||
$params = ['multiple' => true];
|
||||
foreach (yield $this->getDialogs() as $peer) {
|
||||
foreach ($this->getDialogs() as $peer) {
|
||||
$params []= ['peer' => $peer, 'message' => $message];
|
||||
}
|
||||
yield $this->messages->sendMessage($params);
|
||||
$this->messages->sendMessage($params);
|
||||
}
|
||||
} catch (\danog\MadelineProto\RPCErrorException $e) {
|
||||
} catch (RPCErrorException $e) {
|
||||
try {
|
||||
if ($e->rpc === 'USER_PRIVACY_RESTRICTED') {
|
||||
$e = 'Please disable call privacy settings to make me call you';
|
||||
@ -305,36 +314,36 @@ Propic art by magnaluna on [deviantart](https://magnaluna.deviantart.com).", 'pa
|
||||
$t = str_replace('FLOOD_WAIT_', '', $e->rpc);
|
||||
$e = "Too many people used the /call function. I'll be able to call you in $t seconds.\nYou can also call me right now";
|
||||
}*/
|
||||
yield $this->messages->sendMessage(['peer' => $chat_id, 'message' => (string) $e]);
|
||||
} catch (\danog\MadelineProto\RPCErrorException $e) {
|
||||
$this->messages->sendMessage(['peer' => $chat_id, 'message' => (string) $e]);
|
||||
} catch (RPCErrorException $e) {
|
||||
}
|
||||
$this->logger($e);
|
||||
} catch (\danog\MadelineProto\Exception $e) {
|
||||
} catch (Exception $e) {
|
||||
$this->logger($e);
|
||||
}
|
||||
}
|
||||
|
||||
public function onUpdateNewMessage($update)
|
||||
public function onUpdateNewMessage($update): void
|
||||
{
|
||||
if ($update['message']['out'] || $update['message']['to_id']['_'] !== 'peerUser' || !isset($update['message']['from_id'])) {
|
||||
return;
|
||||
}
|
||||
$this->logger($update);
|
||||
$chat_id = $from_id = yield $this->getInfo($update)['bot_api_id'];
|
||||
$chat_id = $from_id = $this->getInfo($update)['bot_api_id'];
|
||||
$message = $update['message']['message'] ?? '';
|
||||
yield $this->handleMessage($chat_id, $from_id, $message);
|
||||
$this->handleMessage($chat_id, $from_id, $message);
|
||||
}
|
||||
|
||||
public function onUpdateNewEncryptedMessage($update)
|
||||
public function onUpdateNewEncryptedMessage($update): void
|
||||
{
|
||||
return;
|
||||
$chat_id = yield $this->getInfo($update)['InputEncryptedChat'];
|
||||
$from_id = yield $this->getSecretChat($chat_id)['user_id'];
|
||||
$message = isset($update['message']['decrypted_message']['message']) ? $update['message']['decrypted_message']['message'] : '';
|
||||
yield $this->handleMessage($chat_id, $from_id, $message);
|
||||
$chat_id = $this->getInfo($update)['InputEncryptedChat'];
|
||||
$from_id = $this->getSecretChat($chat_id)['user_id'];
|
||||
$message = $update['message']['decrypted_message']['message'] ?? '';
|
||||
$this->handleMessage($chat_id, $from_id, $message);
|
||||
}
|
||||
|
||||
public function onUpdateEncryption($update)
|
||||
public function onUpdateEncryption($update): void
|
||||
{
|
||||
return;
|
||||
|
||||
@ -342,58 +351,25 @@ Propic art by magnaluna on [deviantart](https://magnaluna.deviantart.com).", 'pa
|
||||
if ($update['chat']['_'] !== 'encryptedChat') {
|
||||
return;
|
||||
}
|
||||
$chat_id = yield $this->getInfo($update)['InputEncryptedChat'];
|
||||
$from_id = yield $this->getSecretChat($chat_id)['user_id'];
|
||||
$chat_id = $this->getInfo($update)['InputEncryptedChat'];
|
||||
$from_id = $this->getSecretChat($chat_id)['user_id'];
|
||||
$message = '';
|
||||
} catch (\danog\MadelineProto\Exception $e) {
|
||||
} catch (Exception $e) {
|
||||
return;
|
||||
}
|
||||
yield $this->handleMessage($chat_id, $from_id, $message);
|
||||
$this->handleMessage($chat_id, $from_id, $message);
|
||||
}
|
||||
|
||||
public function onUpdatePhoneCall($update)
|
||||
#[Handler]
|
||||
public function incomingCall(VoIP&Incoming $voip): void
|
||||
{
|
||||
if (\is_object($update['phone_call']) && isset($update['phone_call']->madeline) && $update['phone_call']->getCallState() === \danog\MadelineProto\VoIP::CALL_STATE_INCOMING) {
|
||||
yield $this->configureCall($update['phone_call']);
|
||||
}
|
||||
$this->configureCall($voip->accept());
|
||||
}
|
||||
|
||||
/*public function onAny($update)
|
||||
{
|
||||
$this->logger($update);
|
||||
}*/
|
||||
|
||||
public function __construct($API)
|
||||
{
|
||||
parent::__construct($API);
|
||||
$this->programmed_call = [];
|
||||
foreach ($this->programmed_call as $key => list($user, $time)) {
|
||||
continue;
|
||||
$sleepTime = $time <= \time() ? 0 : $time - \time();
|
||||
\danog\MadelineProto\Tools::callFork((function () use ($sleepTime, $key, $user) {
|
||||
yield \danog\MadelineProto\Tools::sleep($sleepTime);
|
||||
yield $this->makeCall($user);
|
||||
unset($this->programmed_call[$key]);
|
||||
})());
|
||||
}
|
||||
}
|
||||
public function __sleep()
|
||||
public function __sleep(): array
|
||||
{
|
||||
return ['programmed_call', 'my_users'];
|
||||
}
|
||||
}
|
||||
|
||||
if (!\class_exists('\\danog\\MadelineProto\\VoIPServerConfig')) {
|
||||
die('Install the libtgvoip extension: https://voip.madelineproto.xyz'.PHP_EOL);
|
||||
}
|
||||
|
||||
\danog\MadelineProto\VoIPServerConfig::update(
|
||||
[
|
||||
'audio_init_bitrate' => 100 * 1000,
|
||||
'audio_max_bitrate' => 100 * 1000,
|
||||
'audio_min_bitrate' => 10 * 1000,
|
||||
'audio_congestion_window' => 4 * 1024,
|
||||
]
|
||||
);
|
||||
$MadelineProto = new \danog\MadelineProto\API('magna.madeline', ['secret_chats' => ['accept_chats' => false], 'logger' => ['logger' => 3, 'logger_level' => 5, 'logger_param' => \getcwd().'/MadelineProto.log'], 'updates' => ['getdifference_interval' => 10], 'serialization' => ['serialization_interval' => 30, 'cleanup_before_serialization' => true], 'flood_timeout' => ['wait_if_lt' => 86400]]);
|
||||
$MadelineProto->startAndLoop(PonyEventHandler::class);
|
||||
MyEventHandler::startAndLoop('magna.madeline');
|
||||
|
11
songs.php
11
songs.php
@ -1,11 +0,0 @@
|
||||
<?php
|
||||
|
||||
$songs = \glob('*raw');
|
||||
if (!$songs) {
|
||||
die('No songs defined! Convert some songs as described in https://docs.madelineproto.xyz/docs/CALLS.html#playing-mp3-files');
|
||||
}
|
||||
$songs_length = \count($songs);
|
||||
|
||||
for ($x = 0; $x < $songs_length; $x++) {
|
||||
\shuffle($songs);
|
||||
}
|
Loading…
Reference in New Issue
Block a user