mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-26 23:34:44 +01:00
76 lines
2.4 KiB
PHP
76 lines
2.4 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
use danog\MadelineProto\Logger;
|
|
use danog\MadelineProto\RPCErrorException;
|
|
use danog\MadelineProto\Settings\Logger as SettingsLogger;
|
|
use danog\MadelineProto\Settings\TLSchema;
|
|
use danog\MadelineProto\TL\TL;
|
|
|
|
/*
|
|
Copyright 2016-2020 Daniil Gentili
|
|
(https://daniil.it)
|
|
This file is part of MadelineProto.
|
|
MadelineProto is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
|
MadelineProto is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
See the GNU Affero General Public License for more details.
|
|
You should have received a copy of the GNU General Public License along with MadelineProto.
|
|
If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
require 'vendor/autoload.php';
|
|
$logger = new Logger(new SettingsLogger);
|
|
|
|
set_error_handler(['\danog\MadelineProto\Exception', 'ExceptionErrorHandler']);
|
|
|
|
if ($argc !== 3) {
|
|
die("Usage: {$argv[0]} layernumberold layernumbernew\n");
|
|
}
|
|
/**
|
|
* Get TL info of layer.
|
|
*
|
|
* @param int $layer Layer number
|
|
*
|
|
* @internal
|
|
*
|
|
* @return void
|
|
*/
|
|
function getTL($layer)
|
|
{
|
|
$layerFile = __DIR__."/../schemas/TL_telegram_v$layer.tl";
|
|
$layer = new TL();
|
|
$layer->init((new TLSchema)->setAPISchema($layerFile)->setSecretSchema(''));
|
|
|
|
return ['methods' => $layer->getMethods(), 'constructors' => $layer->getConstructors()];
|
|
}
|
|
$old = getTL($argv[1]);
|
|
$new = getTL($argv[2]);
|
|
$res = '';
|
|
|
|
$bot = new \danog\MadelineProto\API('bot.madeline');
|
|
$bot->start();
|
|
$bot->updateSettings((new TLSchema)->setFuzzMode(true));
|
|
|
|
$user = new \danog\MadelineProto\API('secret.madeline');
|
|
$user->start();
|
|
$user->updateSettings((new TLSchema)->setFuzzMode(true));
|
|
|
|
$methods = [];
|
|
foreach ($new['methods']->by_id as $constructor) {
|
|
$name = $constructor['method'];
|
|
if (!$old['methods']->findByMethod($name)) {
|
|
if (strtolower($name) === 'account.deleteaccount') {
|
|
continue;
|
|
}
|
|
//readline("$name?");
|
|
[$namespace, $method] = explode('.', $name);
|
|
try {
|
|
$bot->{$namespace}->{$method}();
|
|
} catch (RPCErrorException) {
|
|
}
|
|
try {
|
|
$user->{$namespace}->{$method}();
|
|
} catch (RPCErrorException) {
|
|
}
|
|
}
|
|
}
|