1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-27 01:34:40 +01:00
MadelineProto/examples/plugins/Danogentili/PingPlugin.php

86 lines
2.3 KiB
PHP
Raw Normal View History

2023-07-13 16:46:13 +02:00
<?php declare(strict_types=1);
2023-07-14 16:34:52 +02:00
namespace MadelinePlugin\Danogentili;
2023-07-13 16:46:13 +02:00
use danog\MadelineProto\EventHandler\Attributes\Cron;
use danog\MadelineProto\EventHandler\Filter\FilterText;
use danog\MadelineProto\EventHandler\Message;
use danog\MadelineProto\EventHandler\SimpleFilter\Incoming;
use danog\MadelineProto\PluginEventHandler;
/**
* Plugin event handler class.
*
* All properties returned by __sleep are automatically stored in the database.
*/
class PingPlugin extends PluginEventHandler
{
private int $pingCount = 0;
private string $pongText = 'pong';
/**
* You can set a custom pong text from the outside of the plugin:.
2023-07-13 16:46:13 +02:00
*
* ```
* if (!file_exists('madeline.php')) {
* copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
* }
2023-07-14 18:29:20 +02:00
* include 'madeline.php';
*
2023-07-13 16:46:13 +02:00
* $a = new API('bot.madeline');
* $plugin = $a->getPlugin(PingPlugin::class);
*
2023-07-13 16:46:13 +02:00
* $plugin->setPongText('UwU');
* ```
*
2023-07-13 16:46:13 +02:00
* This will automatically connect to the running instance of the plugin and call the specified method.
*/
public function setPongText(string $pong): void
{
$this->pongText = $pong;
}
/**
* Returns a list of names for properties that will be automatically saved to the session database (MySQL/postgres/redis if configured, the session file otherwise).
*/
public function __sleep(): array
{
return ['pingCount', 'pongText'];
}
/**
* Initialization logic.
*/
public function onStart(): void
{
$this->logger("The bot was started!");
$this->logger($this->getFullInfo('MadelineProto'));
$this->sendMessageToAdmins("The bot was started!");
}
2023-07-16 14:29:03 +02:00
/**
* Plugins may be enabled or disabled at startup by returning true or false from this function.
*/
public function isPluginEnabled(): bool
{
return true;
}
2023-07-13 16:46:13 +02:00
/**
* This cron function will be executed forever, every 60 seconds.
*/
#[Cron(period: 60.0)]
public function cron1(): void
{
$this->sendMessageToAdmins("The ping plugin is online, total pings so far: ".$this->pingCount);
}
#[FilterText('ping')]
public function pingCommand(Incoming&Message $message): void
{
$message->reply($this->pongText);
$this->pingCount++;
}
2023-07-13 17:34:04 +02:00
}