2016-08-09 22:28:50 +02:00
|
|
|
#!/usr/bin/env php
|
2016-06-23 23:51:08 +02:00
|
|
|
<?php
|
2016-11-16 15:18:35 +01:00
|
|
|
/*
|
|
|
|
Copyright 2016 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/>.
|
|
|
|
*/
|
2016-07-14 15:15:50 +02:00
|
|
|
|
2016-08-07 23:23:10 +02:00
|
|
|
require_once 'vendor/autoload.php';
|
2016-09-12 22:28:27 +02:00
|
|
|
|
2016-11-29 01:47:59 +01:00
|
|
|
if (file_exists('number.php') && !file_exists('session.madeline')) {
|
Added APIFactory for calling namespaced mtproto methods, cleaned up testing.php and API.php, moved authorization keys, session_id, seq_no and time delta to the Connection class, added close_and_reopen method to the Connection class, improved DataCenter class, renamed Logging class to Logger, added a bit more logging, added setup_logger, switch_dc, init_authorization methods to the MTProto class, added parameter to disable automatic switching to nearest DC in write_client_info, added a try catch block in the create_auth_key method, fixed switching of DCs in wait_for_response method, added arguments check in the method calling methods, added a message id check in MessageHandler, added method_name_namespaced array in TL for APIFactory, renamed a lot of stuff and removed a few checks in the TL class, moved sendCode test call to testing.php
2016-11-16 15:05:27 +01:00
|
|
|
include_once 'number.php';
|
2016-11-29 01:47:59 +01:00
|
|
|
$MadelineProto = new \danog\MadelineProto\API();
|
2016-11-25 00:15:53 +01:00
|
|
|
|
|
|
|
$checkedPhone = $MadelineProto->auth->checkPhone(// auth.checkPhone becomes auth->checkPhone
|
Added APIFactory for calling namespaced mtproto methods, cleaned up testing.php and API.php, moved authorization keys, session_id, seq_no and time delta to the Connection class, added close_and_reopen method to the Connection class, improved DataCenter class, renamed Logging class to Logger, added a bit more logging, added setup_logger, switch_dc, init_authorization methods to the MTProto class, added parameter to disable automatic switching to nearest DC in write_client_info, added a try catch block in the create_auth_key method, fixed switching of DCs in wait_for_response method, added arguments check in the method calling methods, added a message id check in MessageHandler, added method_name_namespaced array in TL for APIFactory, renamed a lot of stuff and removed a few checks in the TL class, moved sendCode test call to testing.php
2016-11-16 15:05:27 +01:00
|
|
|
[
|
2016-11-25 00:15:53 +01:00
|
|
|
'phone_number' => $number,
|
Added APIFactory for calling namespaced mtproto methods, cleaned up testing.php and API.php, moved authorization keys, session_id, seq_no and time delta to the Connection class, added close_and_reopen method to the Connection class, improved DataCenter class, renamed Logging class to Logger, added a bit more logging, added setup_logger, switch_dc, init_authorization methods to the MTProto class, added parameter to disable automatic switching to nearest DC in write_client_info, added a try catch block in the create_auth_key method, fixed switching of DCs in wait_for_response method, added arguments check in the method calling methods, added a message id check in MessageHandler, added method_name_namespaced array in TL for APIFactory, renamed a lot of stuff and removed a few checks in the TL class, moved sendCode test call to testing.php
2016-11-16 15:05:27 +01:00
|
|
|
]
|
|
|
|
);
|
Added documentation, simplified code, organized exceptions, added some more examples in testing.php, decided to unset flags in deserialized responses, moved message id arrays to Connection classes, added wrappers for logging in to telegram as a bot or as a user and for logging out, fixed deserializing of gzip packed objects, added more logging, fixed bugs, added methods to get and parse configuration, saved some fairies, fixed exporting/importing of authorization, added some wakeup methods to prevent problems during serialization, added support for ipv6 and automagical detection too. I think we can safely say this is now a beta.
2016-11-25 00:15:22 +01:00
|
|
|
var_dump($checkedPhone);
|
|
|
|
$sentCode = $MadelineProto->phone_login($number);
|
2016-11-23 21:04:29 +01:00
|
|
|
var_dump($sentCode);
|
|
|
|
echo 'Enter the code you received: ';
|
|
|
|
$code = '';
|
|
|
|
for ($x = 0; $x < $sentCode['type']['length']; $x++) {
|
|
|
|
$code .= fgetc(STDIN);
|
|
|
|
}
|
Added documentation, simplified code, organized exceptions, added some more examples in testing.php, decided to unset flags in deserialized responses, moved message id arrays to Connection classes, added wrappers for logging in to telegram as a bot or as a user and for logging out, fixed deserializing of gzip packed objects, added more logging, fixed bugs, added methods to get and parse configuration, saved some fairies, fixed exporting/importing of authorization, added some wakeup methods to prevent problems during serialization, added support for ipv6 and automagical detection too. I think we can safely say this is now a beta.
2016-11-25 00:15:22 +01:00
|
|
|
$authorization = $MadelineProto->complete_phone_login($code);
|
2016-11-23 21:04:29 +01:00
|
|
|
var_dump($authorization);
|
2016-11-29 01:47:59 +01:00
|
|
|
echo 'Serializing MadelineProto to session.madeline...'.PHP_EOL;
|
|
|
|
echo 'Wrote '.file_put_contents('session.madeline', serialize($MadelineProto)).' bytes'.PHP_EOL;
|
Added documentation, simplified code, organized exceptions, added some more examples in testing.php, decided to unset flags in deserialized responses, moved message id arrays to Connection classes, added wrappers for logging in to telegram as a bot or as a user and for logging out, fixed deserializing of gzip packed objects, added more logging, fixed bugs, added methods to get and parse configuration, saved some fairies, fixed exporting/importing of authorization, added some wakeup methods to prevent problems during serialization, added support for ipv6 and automagical detection too. I think we can safely say this is now a beta.
2016-11-25 00:15:22 +01:00
|
|
|
}
|
2016-11-29 01:47:59 +01:00
|
|
|
echo 'Deserializing MadelineProto from session.madeline...'.PHP_EOL;
|
|
|
|
$MadelineProto = unserialize(file_get_contents('session.madeline'));
|
2016-11-25 21:52:56 +01:00
|
|
|
|
2016-11-30 22:46:46 +01:00
|
|
|
$message = (getenv('TRAVIS_COMMIT') == '') ? 'https://storage.pwrtelegram.xyz/pwrtelegrambot/document/file_6570.mp4' : ('Travis ci tests in progress: commit '.getenv('TRAVIS_COMMIT').', job '.getenv('TRAVIS_JOB_NUMBER').', PHP version: '.getenv('TRAVIS_PHP_VERSION'));
|
2016-11-29 01:47:59 +01:00
|
|
|
$peers = [];
|
|
|
|
foreach (['pwrtelegramgroup', 'pwrtelegramgroupita'] as $user) {
|
|
|
|
$username = $MadelineProto->contacts->resolveUsername(['username' => $user]);
|
|
|
|
var_dump($username);
|
|
|
|
$peers[$user] = ['_' => 'inputPeerChannel', 'channel_id' => $username['peer']['channel_id'], 'access_hash' => $username['chats'][0]['access_hash']];
|
|
|
|
}
|
2016-11-25 21:52:56 +01:00
|
|
|
|
2016-11-29 01:47:59 +01:00
|
|
|
foreach ($peers as $peer) {
|
|
|
|
$sentMessage = $MadelineProto->messages->sendMessage(['peer' => $peer, 'message' => $message, 'random_id' => \danog\PHP\Struct::unpack('<q', \phpseclib\Crypt\Random::string(8))[0]]);
|
|
|
|
var_dump($sentMessage);
|
|
|
|
}
|
|
|
|
|
|
|
|
echo 'Size of MadelineProto instance is '.strlen(serialize($MadelineProto)).' bytes'.PHP_EOL;
|
2016-11-24 13:16:06 +01:00
|
|
|
if (file_exists('token.php')) {
|
|
|
|
include_once 'token.php';
|
2016-11-29 01:47:59 +01:00
|
|
|
$MadelineProto = new \danog\MadelineProto\API();
|
|
|
|
$authorization = $MadelineProto->bot_login($token);
|
2016-11-25 21:52:56 +01:00
|
|
|
var_dump($authorization);
|
Added APIFactory for calling namespaced mtproto methods, cleaned up testing.php and API.php, moved authorization keys, session_id, seq_no and time delta to the Connection class, added close_and_reopen method to the Connection class, improved DataCenter class, renamed Logging class to Logger, added a bit more logging, added setup_logger, switch_dc, init_authorization methods to the MTProto class, added parameter to disable automatic switching to nearest DC in write_client_info, added a try catch block in the create_auth_key method, fixed switching of DCs in wait_for_response method, added arguments check in the method calling methods, added a message id check in MessageHandler, added method_name_namespaced array in TL for APIFactory, renamed a lot of stuff and removed a few checks in the TL class, moved sendCode test call to testing.php
2016-11-16 15:05:27 +01:00
|
|
|
}
|
2016-11-29 02:17:36 +01:00
|
|
|
/*
|
2016-11-29 01:47:59 +01:00
|
|
|
foreach ($peers as $peer) {
|
|
|
|
$sentMessage = $MadelineProto->messages->sendMessage(['peer' => $peer, 'message' => $message, 'random_id' => \danog\PHP\Struct::unpack('<q', \phpseclib\Crypt\Random::string(8))[0]]);
|
|
|
|
var_dump($sentMessage);
|
|
|
|
}
|
2016-11-29 02:17:36 +01:00
|
|
|
*/
|