2019-05-31 13:17:29 +02:00
|
|
|
<?php
|
2019-06-04 14:55:58 +02:00
|
|
|
|
2019-05-31 13:17:29 +02:00
|
|
|
use danog\MadelineProto\Logger;
|
2021-12-09 13:25:14 +01:00
|
|
|
use danog\MadelineProto\Settings\Logger as SettingsLogger;
|
|
|
|
use danog\MadelineProto\Settings\TLSchema;
|
2019-05-31 13:17:29 +02:00
|
|
|
use danog\MadelineProto\TL\TL;
|
|
|
|
|
|
|
|
/*
|
2020-02-17 14:13:46 +01:00
|
|
|
Copyright 2016-2020 Daniil Gentili
|
2019-05-31 13:17:29 +02:00
|
|
|
(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';
|
2021-12-09 13:25:14 +01:00
|
|
|
$logger = new Logger(new SettingsLogger);
|
2019-05-31 13:17:29 +02:00
|
|
|
|
2019-10-28 19:48:59 +01:00
|
|
|
\set_error_handler(['\danog\MadelineProto\Exception', 'ExceptionErrorHandler']);
|
2019-05-31 13:17:29 +02:00
|
|
|
|
|
|
|
if ($argc !== 3) {
|
|
|
|
die("Usage: {$argv[0]} layernumberold layernumbernew\n");
|
|
|
|
}
|
|
|
|
/**
|
2019-06-04 14:55:58 +02:00
|
|
|
* Get TL info of layer.
|
2019-05-31 13:17:29 +02:00
|
|
|
*
|
|
|
|
* @param int $layer Layer number
|
2019-06-04 14:55:58 +02:00
|
|
|
*
|
2019-05-31 13:17:29 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function getTL($layer)
|
|
|
|
{
|
2020-04-05 22:22:47 +02:00
|
|
|
$layer = __DIR__."/../schemas/TL_telegram_v$layer.tl";
|
2021-12-09 13:25:14 +01:00
|
|
|
$layer = new class($layer) extends TL {
|
2019-05-31 13:17:29 +02:00
|
|
|
public function __construct($layer)
|
|
|
|
{
|
2021-12-09 13:25:14 +01:00
|
|
|
$API = new class {
|
|
|
|
};
|
|
|
|
$API->logger = Logger::$default;
|
|
|
|
parent::__construct($API);
|
|
|
|
$this->init((new TLSchema)->setAPISchema($layer));
|
2019-05-31 13:17:29 +02:00
|
|
|
}
|
|
|
|
};
|
2019-06-04 14:55:58 +02:00
|
|
|
|
2021-12-09 13:25:14 +01:00
|
|
|
return ['methods' => $layer->getMethods(), 'constructors' => $layer->getConstructors()];
|
2019-05-31 13:17:29 +02:00
|
|
|
}
|
|
|
|
function getUrl($constructor, $type)
|
|
|
|
{
|
2019-10-28 19:48:59 +01:00
|
|
|
$changed = \str_replace('.', '_', $constructor);
|
2019-06-04 14:55:58 +02:00
|
|
|
|
2019-09-13 18:32:43 +02:00
|
|
|
//return "[$constructor](https://github.com/danog/MadelineProtoDocs/blob/geochats/docs/API_docs/$type/$changed.md)";
|
2019-05-31 13:17:29 +02:00
|
|
|
return "[$constructor](https://docs.madelineproto.xyz/API_docs/$type/$changed.html)";
|
|
|
|
}
|
|
|
|
$old = getTL($argv[1]);
|
|
|
|
$new = getTL($argv[2]);
|
|
|
|
$res = '';
|
|
|
|
|
|
|
|
foreach (['methods', 'constructors'] as $type) {
|
2019-10-29 22:41:31 +01:00
|
|
|
$finder = $type === 'methods' ? 'findByMethod' : 'findByPredicate';
|
2019-05-31 13:17:29 +02:00
|
|
|
$key = $type === 'methods' ? 'method' : 'predicate';
|
|
|
|
|
|
|
|
// New constructors
|
2019-10-28 19:48:59 +01:00
|
|
|
$res .= "\n\nNew ".\ucfirst($type)."\n";
|
2019-05-31 13:17:29 +02:00
|
|
|
foreach ($new[$type]->by_id as $constructor) {
|
|
|
|
$name = $constructor[$key];
|
|
|
|
if (!$old[$type]->$finder($name)) {
|
|
|
|
$name = getUrl($name, $type);
|
|
|
|
$res .= "Added $name\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Changed constructors
|
2019-10-28 19:48:59 +01:00
|
|
|
$res .= "\n\nChanged ".\ucfirst($type)."\n";
|
2019-05-31 13:17:29 +02:00
|
|
|
foreach ($new[$type]->by_id as $constructor) {
|
|
|
|
$name = $constructor[$key];
|
2019-07-07 19:37:54 +02:00
|
|
|
if ($old[$type]->$finder($name)) {
|
2019-05-31 13:17:29 +02:00
|
|
|
$new_args = $constructor['params'];
|
|
|
|
$old_args = $old[$type]->$finder($name)['params'];
|
|
|
|
$final_new_args = [];
|
|
|
|
$final_old_args = [];
|
|
|
|
foreach ($new_args as $arg) {
|
|
|
|
$final_new_args[$arg['name']] = $arg['type'];
|
|
|
|
}
|
|
|
|
foreach ($old_args as $arg) {
|
|
|
|
$final_old_args[$arg['name']] = $arg['type'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$url = getUrl($name, $type);
|
|
|
|
foreach ($final_new_args as $name => $ttype) {
|
2022-05-01 19:59:07 +02:00
|
|
|
if (!isset($final_old_args[$name]) && $name !== 'flags' && $name !== 'flags2') {
|
2019-05-31 13:17:29 +02:00
|
|
|
$res .= "Added $name param to $url\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
foreach ($final_old_args as $name => $ttype) {
|
2022-05-01 19:59:07 +02:00
|
|
|
if (!isset($final_new_args[$name]) && $name !== 'flags' && $name !== 'flags2') {
|
2019-05-31 13:17:29 +02:00
|
|
|
$res .= "Removed $name param from $url\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deleted constructors
|
2019-10-28 19:48:59 +01:00
|
|
|
$res .= "\n\nDeleted ".\ucfirst($type)."\n";
|
2019-05-31 13:17:29 +02:00
|
|
|
foreach ($old[$type]->by_id as $constructor) {
|
|
|
|
$name = $constructor[$key];
|
|
|
|
if (!$new[$type]->$finder($name)) {
|
|
|
|
$res .= "Removed $name\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-09 13:25:14 +01:00
|
|
|
|
|
|
|
$bot = new \danog\MadelineProto\API('layer.madeline');
|
|
|
|
$bot->start();
|
|
|
|
|
|
|
|
foreach (\explode("\n\n", $res) as $chunk) {
|
|
|
|
if (!$chunk) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$bot->messages->sendMessage(['peer' => 'danogentili', 'message' => $chunk, 'parse_mode' => 'markdown']);
|
|
|
|
}
|