2017-07-31 19:17:10 +02:00
#!/usr/bin/env php
< ? php
/*
2018-02-20 12:13:43 +01:00
Copyright 2016 - 2018 Daniil Gentili
2017-07-31 19:17:10 +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 />.
*/
2017-08-18 13:27:44 +02:00
set_include_path ( get_include_path () . ':' . realpath ( dirname ( __FILE__ ) . '/MadelineProto/' ));
2018-03-29 23:06:40 +02:00
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' ;
}
2017-07-31 19:17:10 +02:00
if ( file_exists ( 'web_data.php' )) {
require_once 'web_data.php' ;
}
echo 'Deserializing MadelineProto from session.madeline...' . PHP_EOL ;
2017-08-13 18:52:32 +02:00
2018-03-29 23:04:50 +02:00
$MadelineProto = new \danog\MadelineProto\API ( 'session.madeline' , [ 'secret_chats' => [ 'accept_chats' => false ]]);
2018-03-24 16:22:13 +01:00
$MadelineProto -> start ();
2017-07-31 19:17:10 +02:00
2017-09-25 00:26:06 +02:00
if ( ! isset ( $MadelineProto -> programmed_call )) {
$MadelineProto -> programmed_call = [];
}
2017-12-16 19:08:11 +01:00
$MadelineProto -> session = 'session.madeline' ;
2018-03-29 23:04:50 +02:00
/* if ( ! isset ( $MadelineProto -> inputEncryptedFilePhoto ) && false ) {
2018-03-24 16:22:13 +01:00
$MadelineProto -> inputEncryptedFilePhoto = $MadelineProto -> upload_encrypted ( 'tests/faust.jpg' , 'fausticorn.jpg' ); // This gets an inputFile object with file name magic
$MadelineProto -> inputEncryptedFileGif = $MadelineProto -> upload_encrypted ( 'tests/pony.mp4' );
$MadelineProto -> inputEncryptedFileSticker = $MadelineProto -> upload_encrypted ( 'tests/lel.webp' );
$MadelineProto -> inputEncryptedFileDocument = $MadelineProto -> upload_encrypted ( 'tests/60' , 'magic' ); // This gets an inputFile object with file name magic
$MadelineProto -> inputEncryptedFileVideo = $MadelineProto -> upload_encrypted ( 'tests/swing.mp4' );
$MadelineProto -> inputEncryptedFileAudio = $MadelineProto -> upload_encrypted ( 'tests/mosconi.mp3' );
2018-03-29 23:04:50 +02:00
} */
2017-12-16 19:08:11 +01:00
2018-03-30 18:02:34 +02:00
foreach ([ 'my_users' , 'times' , 'times_messages' , 'calls' ] as $key ) {
if ( ! isset ( $MadelineProto -> { $key })) {
$MadelineProto -> { $key } = [];
}
}
2018-03-29 23:04:50 +02:00
class EventHandler extends \danog\MadelineProto\EventHandler
2018-03-24 19:06:19 +01:00
{
2018-03-29 23:04:50 +02:00
public function configureCall ( $call )
{
include 'songs.php' ;
$call -> configuration [ 'enable_NS' ] = false ;
$call -> configuration [ 'enable_AGC' ] = false ;
$call -> configuration [ 'enable_AEC' ] = false ;
$call -> configuration [ 'shared_config' ] = [
2018-03-24 19:06:19 +01:00
'audio_init_bitrate' => 100 * 1000 ,
2018-03-25 19:17:05 +02:00
'audio_max_bitrate' => 100 * 1000 ,
'audio_min_bitrate' => 10 * 1000 ,
2018-03-24 19:06:19 +01:00
'audio_congestion_window' => 4 * 1024 ,
2018-03-24 16:22:13 +01:00
//'audio_bitrate_step_decr' => 0,
//'audio_bitrate_step_incr' => 2000,
];
2018-03-29 23:04:50 +02:00
$call -> parseConfig ();
$call -> playOnHold ( $songs );
2018-03-24 16:22:13 +01:00
}
2018-03-29 23:05:15 +02:00
2018-03-29 23:04:50 +02:00
public function handleMessage ( $chat_id , $from_id , $message )
{
try {
if ( ! isset ( $this -> my_users [ $from_id ]) || $message === '/start' ) {
$this -> my_users [ $from_id ] = true ;
$message = '/call' ;
$this -> messages -> sendMessage ([ 'no_webpage' => true , 'peer' => $chat_id , 'message' => " Hi, I'm @magnaluna the webradio.
2017-09-18 11:05:28 +02:00
Call _me_ to listen to some ** awesome ** music , or send / call to make _me_ call _you_ ( don ' t forget to disable call privacy settings ! ) .
You can also program a phone call with / program :
/ program 29 August 2018 - call me the 29 th of august 2018
/ program + 1 hour 30 minutes - call me in one hour and thirty minutes
/ program next Thursday - call me next Thursday at midnight
Send / start to see this message again .
I also provide advanced stats during calls !
I ' m a userbot powered by @ MadelineProto , created by @ danogentili .
2018-03-30 12:53:51 +02:00
Source code : https :// github . com / danog / MadelineProto
2018-03-29 23:04:50 +02:00
Propic art by @ magnaluna on [ deviantart ]( https :// magnaluna . deviantart . com ) . " , 'parse_mode' => 'Markdown']);
}
if ( ! isset ( $this -> calls [ $from_id ]) && $message === '/call' ) {
$call = $this -> request_call ( $from_id );
$this -> configureCall ( $call );
$this -> calls [ $call -> getOtherID ()] = $call ;
$this -> times [ $call -> getOtherID ()] = [ time (), $this -> messages -> sendMessage ([ 'peer' => $call -> getOtherID (), 'message' => 'Total running calls: ' . count ( $this -> calls ) . PHP_EOL . PHP_EOL . $call -> getDebugString ()])[ 'id' ]];
}
if ( strpos ( $message , '/program' ) === 0 ) {
$time = strtotime ( str_replace ( '/program ' , '' , $message ));
if ( $time === false ) {
$this -> messages -> sendMessage ([ 'peer' => $chat_id , 'message' => 'Invalid time provided' ]);
} else {
$this -> programmed_call [] = [ $from_id , $time ];
$this -> messages -> sendMessage ([ 'peer' => $chat_id , 'message' => 'OK' ]);
}
}
if ( $message === '/broadcast' && $from_id === 101374607 ) {
2018-03-29 23:05:15 +02:00
$time = time () + 100 ;
2018-03-30 18:03:16 +02:00
$message = explode ( ' ' , $message , 2 );
2018-03-30 18:02:34 +02:00
unset ( $message [ 0 ]);
2018-03-30 18:03:16 +02:00
$message = implode ( ' ' , $message );
2018-03-29 23:04:50 +02:00
foreach ( $this -> get_dialogs () as $peer ) {
2018-03-30 13:16:49 +02:00
$this -> times_messages [] = [ $peer , $time , $message ];
2018-03-29 23:04:50 +02:00
if ( isset ( $peer [ 'user_id' ])) {
$this -> programmed_call [] = [ $peer [ 'user_id' ], $time ];
2018-03-24 16:22:13 +01:00
}
2018-03-30 18:02:34 +02:00
$time += 30 ;
2018-03-29 23:04:50 +02:00
}
}
} catch ( \danog\MadelineProto\RPCErrorException $e ) {
try {
if ( $e -> rpc === 'USER_PRIVACY_RESTRICTED' ) {
$e = 'Please disable call privacy settings to make me call you' ;
} elseif ( strpos ( $e -> rpc , 'FLOOD_WAIT_' ) === 0 ) {
$t = str_replace ( 'FLOOD_WAIT_' , '' , $e -> rpc );
$this -> programmed_call [] = [ $from_id , time () + 1 + $t ];
$e = " Too many people used the /call function. I'll call you back in $t seconds. \n You can also call me right now. " ;
}
$this -> messages -> sendMessage ([ 'peer' => $chat_id , 'message' => ( string ) $e ]);
} catch ( \danog\MadelineProto\RPCErrorException $e ) {
}
echo $e ;
} catch ( \danog\MadelineProto\Exception $e ) {
echo $e ;
}
}
public function onUpdateNewMessage ( $update )
{
if ( $update [ 'message' ][ 'out' ] || $update [ 'message' ][ 'to_id' ][ '_' ] !== 'peerUser' || ! isset ( $update [ 'message' ][ 'from_id' ])) {
return ;
}
$chat_id = $from_id = $this -> get_info ( $update )[ 'bot_api_id' ];
$message = isset ( $update [ 'message' ][ 'message' ]) ? $update [ 'message' ][ 'message' ] : '' ;
$this -> handleMessage ( $chat_id , $from_id , $message );
}
2018-03-29 23:05:15 +02:00
2018-03-29 23:04:50 +02:00
public function onUpdateNewEncryptedMessage ( $update )
{
return ;
$chat_id = $this -> get_info ( $update )[ 'InputEncryptedChat' ];
$from_id = $this -> get_secret_chat ( $chat_id )[ 'user_id' ];
$message = isset ( $update [ 'message' ][ 'decrypted_message' ][ 'message' ]) ? $update [ 'message' ][ 'decrypted_message' ][ 'message' ] : '' ;
$this -> handleMessage ( $chat_id , $from_id , $message );
}
2018-03-29 23:05:15 +02:00
public function onUpdateEncryption ( $update )
{
2018-03-29 23:04:50 +02:00
return ;
2018-03-29 23:05:15 +02:00
try {
if ( $update [ 'chat' ][ '_' ] !== 'encryptedChat' ) {
return ;
}
$chat_id = $this -> get_info ( $update )[ 'InputEncryptedChat' ];
$from_id = $this -> get_secret_chat ( $chat_id )[ 'user_id' ];
$message = '' ;
} catch ( \danog\MadelineProto\Exception $e ) {
return ;
}
2018-03-29 23:04:50 +02:00
$this -> handleMessage ( $chat_id , $from_id , $message );
}
2018-03-29 23:05:15 +02:00
2018-03-29 23:04:50 +02:00
public function onUpdatePhoneCall ( $update )
{
2018-03-29 23:05:15 +02:00
if ( is_object ( $update [ 'phone_call' ]) && isset ( $update [ 'phone_call' ] -> madeline ) && $update [ 'phone_call' ] -> getCallState () === \danog\MadelineProto\VoIP :: CALL_STATE_INCOMING ) {
$this -> configureCall ( $update [ 'phone_call' ]);
if ( $update [ 'phone_call' ] -> accept () === false ) {
echo 'DID NOT ACCEPT A CALL' ;
}
$this -> calls [ $update [ 'phone_call' ] -> getOtherID ()] = $update [ 'phone_call' ];
2018-03-29 23:04:50 +02:00
2018-03-29 23:05:15 +02:00
try {
$this -> times [ $update [ 'phone_call' ] -> getOtherID ()] = [ time (), $this -> messages -> sendMessage ([ 'peer' => $update [ 'phone_call' ] -> getOtherID (), 'message' => 'Total running calls: ' . count ( $this -> calls ) . PHP_EOL . PHP_EOL ])[ 'id' ]];
} catch ( \danog\MadelineProto\RPCErrorException $e ) {
}
}
2018-03-29 23:04:50 +02:00
}
2018-03-29 23:05:15 +02:00
2018-03-29 23:04:50 +02:00
public function onLoop ()
{
2018-03-29 23:05:15 +02:00
foreach ( $this -> programmed_call as $key => $pair ) {
list ( $user , $time ) = $pair ;
if ( $time < time ()) {
if ( ! isset ( $this -> calls [ $user ])) {
2018-03-24 16:22:13 +01:00
try {
2018-03-29 23:05:15 +02:00
$call = $this -> request_call ( $user );
$this -> configureCall ( $call );
$this -> calls [ $call -> getOtherID ()] = $call ;
$this -> times [ $call -> getOtherID ()] = [ time (), $this -> messages -> sendMessage ([ 'peer' => $call -> getOtherID (), 'message' => 'Total running calls: ' . count ( $this -> calls ) . PHP_EOL . PHP_EOL . $call -> getDebugString ()])[ 'id' ]];
2017-08-05 17:43:07 +02:00
} catch ( \danog\MadelineProto\RPCErrorException $e ) {
2018-03-29 23:05:15 +02:00
try {
if ( $e -> rpc === 'USER_PRIVACY_RESTRICTED' ) {
$e = 'Please disable call privacy settings to make me call you' ;
} elseif ( strpos ( $e -> rpc , 'FLOOD_WAIT_' ) === 0 ) {
$t = str_replace ( 'FLOOD_WAIT_' , '' , $e -> rpc );
$this -> programmed_call [] = [ $user , time () + 1 + $t ];
$e = " I'll call you back in $t seconds. \n You can also call me right now. " ;
}
$this -> messages -> sendMessage ([ 'peer' => $user , 'message' => ( string ) $e ]);
} catch ( \danog\MadelineProto\RPCErrorException $e ) {
}
2017-08-05 17:43:07 +02:00
}
2018-03-24 16:22:13 +01:00
}
2018-03-29 23:05:15 +02:00
unset ( $this -> programmed_call [ $key ]);
2018-03-29 23:04:50 +02:00
}
2018-03-30 13:16:49 +02:00
break ;
2018-03-29 23:04:50 +02:00
}
2018-03-30 12:53:51 +02:00
foreach ( $this -> times_messages as $key => $pair ) {
list ( $peer , $time , $message ) = $pair ;
if ( $time < time ()) {
2018-03-30 12:54:16 +02:00
try {
$this -> messages -> sendMessage ([ 'peer' => $peer , 'message' => $message ]);
} catch ( \danog\MadelineProto\RPCErrorException $e ) {
if ( strpos ( $e -> rpc , 'FLOOD_WAIT_' ) === 0 ) {
$t = str_replace ( 'FLOOD_WAIT_' , '' , $e -> rpc );
$this -> times_messages [] = [ $peer , time () + 1 + $t , $message ];
2018-03-30 12:53:51 +02:00
}
2018-03-30 12:54:16 +02:00
echo $e ;
}
2018-03-30 12:53:51 +02:00
unset ( $this -> times_messages [ $key ]);
}
2018-03-30 13:16:49 +02:00
break ;
2018-03-30 12:53:51 +02:00
}
2018-03-30 12:54:16 +02:00
\danog\MadelineProto\Logger :: log ( count ( $this -> calls ) . ' calls running!' );
2018-03-29 23:05:15 +02:00
foreach ( $this -> calls as $key => $call ) {
if ( $call -> getCallState () === \danog\MadelineProto\VoIP :: CALL_STATE_ENDED ) {
unset ( $this -> calls [ $key ]);
} elseif ( isset ( $this -> times [ $call -> getOtherID ()]) && $this -> times [ $call -> getOtherID ()][ 0 ] < time ()) {
$this -> times [ $call -> getOtherID ()][ 0 ] += 30 + count ( $this -> calls );
2018-03-29 23:04:50 +02:00
2018-03-29 23:05:15 +02:00
try {
$this -> messages -> editMessage ([ 'id' => $this -> times [ $call -> getOtherID ()][ 1 ], 'peer' => $call -> getOtherID (), 'message' => 'Total running calls: ' . count ( $this -> calls ) . PHP_EOL . PHP_EOL . $call -> getDebugString ()]);
} catch ( \danog\MadelineProto\RPCErrorException $e ) {
echo $e ;
}
2018-03-29 23:04:50 +02:00
}
}
}
2018-03-24 19:06:19 +01:00
}
2018-03-29 23:04:50 +02:00
$MadelineProto -> setEventHandler ( '\EventHandler' );
$MadelineProto -> loop ();