75 lines
3.4 KiB
PHP
Executable File
75 lines
3.4 KiB
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
/*
|
|
Copyright 2016-2018 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/>.
|
|
*/
|
|
set_include_path(get_include_path().':'.realpath(dirname(__FILE__).'/MadelineProto/'));
|
|
|
|
/*
|
|
* Various ways to load MadelineProto
|
|
*/
|
|
if (!file_exists(__DIR__.'/vendor/autoload.php')) {
|
|
echo 'You did not run composer update, using madeline.php'.PHP_EOL;
|
|
if (!file_exists('madeline.php')) {
|
|
copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
|
|
}
|
|
include 'madeline.php';
|
|
} else {
|
|
require_once 'vendor/autoload.php';
|
|
}
|
|
|
|
class EventHandler extends \danog\MadelineProto\EventHandler
|
|
{
|
|
public function onAny($update)
|
|
{
|
|
\danog\MadelineProto\Logger::log('Received an update of type '.$update['_']);
|
|
}
|
|
|
|
public function onUpdateNewChannelMessage($update)
|
|
{
|
|
$this->onUpdateNewMessage($update);
|
|
}
|
|
|
|
public function onUpdateNewMessage($update)
|
|
{
|
|
if (isset($update['message']['out']) && $update['message']['out']) {
|
|
return;
|
|
}
|
|
$res = json_encode($update, JSON_PRETTY_PRINT);
|
|
if ($res == '') {
|
|
$res = var_export($update, true);
|
|
}
|
|
|
|
try {
|
|
$this->messages->sendMessage(['peer' => $update, 'message' => $res, 'reply_to_msg_id' => $update['message']['id'], 'entities' => [['_' => 'messageEntityPre', 'offset' => 0, 'length' => strlen($res), 'language' => 'json']]]);
|
|
} catch (\danog\MadelineProto\RPCErrorException $e) {
|
|
$this->messages->sendMessage(['peer' => '@danogentili', 'message' => $e->getCode().': '.$e->getMessage().PHP_EOL.$e->getTraceAsString()]);
|
|
}
|
|
|
|
try {
|
|
if (isset($update['message']['media']) && ($update['message']['media']['_'] == 'messageMediaPhoto' || $update['message']['media']['_'] == 'messageMediaDocument')) {
|
|
$time = microtime(true);
|
|
$file = $this->download_to_dir($update, '/tmp');
|
|
$this->messages->sendMessage(['peer' => $update, 'message' => 'Downloaded to '.$file.' in '.(microtime(true) - $time).' seconds', 'reply_to_msg_id' => $update['message']['id'], 'entities' => [['_' => 'messageEntityPre', 'offset' => 0, 'length' => strlen($res), 'language' => 'json']]]);
|
|
}
|
|
} catch (\danog\MadelineProto\RPCErrorException $e) {
|
|
$this->messages->sendMessage(['peer' => '@danogentili', 'message' => $e->getCode().': '.$e->getMessage().PHP_EOL.$e->getTraceAsString()]);
|
|
}
|
|
}
|
|
}
|
|
|
|
$settings = ['app_info' => ['api_id' => 6, 'api_hash' => 'eb06d4abfb49dc3eeb1aeb98ae0f581e'], 'updates' => ['handle_updates' => true]]; //, 'connection_settings' => ['all' => ['test_mode' => true]]];
|
|
|
|
$MadelineProto = new \danog\MadelineProto\API('bot.madeline', $settings);
|
|
|
|
$MadelineProto->start();
|
|
$MadelineProto->setEventHandler('\EventHandler');
|
|
$MadelineProto->loop();
|