generated from mirzaev/pot-php
534 lines
14 KiB
PHP
534 lines
14 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace svoboda\pechatalka\models\telegram;
|
|
|
|
// Files of the project
|
|
use svoboda\pechatalka\models\core,
|
|
svoboda\pechatalka\models\account,
|
|
svoboda\pechatalka\models\distribution,
|
|
svoboda\pechatalka\models\member,
|
|
svoboda\pechatalka\models\telegram\processes\language\select as process_language_select,
|
|
svoboda\pechatalka\models\enumerations\language;
|
|
|
|
// Framework for Telegram
|
|
use Zanzara\Context as context,
|
|
Zanzara\Telegram\Type\Message as message,
|
|
Zanzara\Telegram\Type\Input\InputFile as file_input;
|
|
|
|
// Baza database
|
|
use mirzaev\baza\record;
|
|
|
|
/**
|
|
* Telegram commands
|
|
*
|
|
* @package svoboda\pechatalka\models\telegram
|
|
*
|
|
* @license http://www.wtfpl.net/ Do What The Fuck You Want To Public License
|
|
* @author Arsen Mirzaev Tatyano-Muradovich <arsen@mirzaev.sexy>
|
|
*/
|
|
final class commands extends core
|
|
{
|
|
/**
|
|
* Menu
|
|
*
|
|
* Responce for the commands: "/start", '/menu'
|
|
*
|
|
* @param context $context Request data from Telegram
|
|
*
|
|
* @return void
|
|
*/
|
|
public static function menu(context $context): void
|
|
{
|
|
// Initializing the account
|
|
$account = $context->get('account');
|
|
|
|
if ($account instanceof record) {
|
|
// Initialized the account
|
|
|
|
// Initializing localization
|
|
$localization = $context->get('localization');
|
|
|
|
if ($localization) {
|
|
// Initialized localization
|
|
|
|
// Initializing the title
|
|
$title = '📋 *' . $localization['menu_title'] . '*';
|
|
|
|
// Initializing accounts
|
|
$accounts = '*' . $localization['menu_accounts'] . ':* ' . ((new account)->database->count() ?? 0);
|
|
|
|
// Initializing the data syncronization for the message
|
|
$syncronization = '⛓️💥 ' . $localization['menu_not_syncronized'];
|
|
|
|
// Sending the message
|
|
$context->sendMessage(
|
|
<<<TXT
|
|
$title
|
|
|
|
$accounts
|
|
|
|
$syncronization
|
|
TXT,
|
|
[
|
|
'reply_markup' => [
|
|
'inline_keyboard' => [
|
|
[
|
|
[
|
|
'text' => '🔘 ' . $localization['menu_button_generator_pin'],
|
|
'web_app' => [
|
|
'url' => 'https://pechatalka.svoboda.works/generator/pin'
|
|
]
|
|
]
|
|
]
|
|
],
|
|
'disable_notification' => true,
|
|
'remove_keyboard' => true
|
|
],
|
|
]
|
|
)
|
|
->then(function (message $message) use ($context) {
|
|
// Sended the message
|
|
});
|
|
} else {
|
|
// Not initialized localization
|
|
|
|
// Sending the message
|
|
$context->sendMessage('⚠️ *Failed to initialize localization*')
|
|
->then(function (message $message) use ($context) {
|
|
// Ending the conversation process
|
|
$context->endConversation();
|
|
});
|
|
}
|
|
} else {
|
|
// Not initialized the account
|
|
|
|
// Sending the message
|
|
$context->sendMessage('⚠️ *Failed to initialize your Telegram account*')
|
|
->then(function (message $message) use ($context) {
|
|
// Ending the conversation process
|
|
$context->endConversation();
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Account
|
|
*
|
|
* Responce for the command: "/account"
|
|
*
|
|
* Sends information about account with menu
|
|
*
|
|
* @param context $context Request data from Telegram
|
|
*
|
|
* @return void
|
|
*/
|
|
public static function account(context $context): void
|
|
{
|
|
// Initializing the account
|
|
$account = $context->get('account');
|
|
|
|
if ($account instanceof record) {
|
|
// Initialized the account
|
|
|
|
// Initializing localization
|
|
$localization = $context->get('localization');
|
|
|
|
if ($localization) {
|
|
// Initialized localization
|
|
|
|
// Initializing title for the message
|
|
$title = '🫵 ' . $localization['account_title'];
|
|
|
|
// Declaring buufer of rows about authorizations
|
|
$authorizations = '';
|
|
|
|
// Initializing rows about authorization
|
|
foreach ($account->values() as $key => $value) {
|
|
// Iterating over account parameters
|
|
|
|
if (str_starts_with($key, 'authorized_')) {
|
|
// Iterating over account authorizations
|
|
|
|
// Skipping system authorizations
|
|
if (str_starts_with($key, 'authorized_system_')) continue;
|
|
|
|
// Writing into buffer of rows about authorizations
|
|
$authorizations .= ($value ? '✅' : '❎') . ' *' . ($localization["account_$key"] ?? $key) . ':* ' . ($value ? $localization['yes'] : $localization['no']) . "\n";
|
|
}
|
|
}
|
|
|
|
// Trimming the last line break character
|
|
$authorizations = trim($authorizations, "\n");
|
|
|
|
// Initializing the data export for the message
|
|
$export = '📤 ' . $localization['account_export'];
|
|
|
|
// Initializing the data security for the message
|
|
$data = $localization['account_data'];
|
|
|
|
// Initializing the data security repository for the message
|
|
$security = '📁 [' . $localization['account_security_repository'] . '](https://git.svoboda.works/mirzaev/security) \([' . $localization['account_security_repository_mirror_github'] . '](https://github.com/mature-woman/security)\)';
|
|
|
|
// Sending the message
|
|
$context->sendMessage(
|
|
<<<TXT
|
|
$title
|
|
|
|
$authorizations
|
|
|
|
$export
|
|
|
|
$data
|
|
|
|
$security
|
|
TXT,
|
|
[
|
|
'reply_markup' => [
|
|
'remove_keyboard' => true,
|
|
'disable_notification' => true
|
|
],
|
|
'link_preview_options' => [
|
|
'is_disabled' => true
|
|
]
|
|
]
|
|
);
|
|
} else {
|
|
// Not initialized localization
|
|
|
|
// Sending the message
|
|
$context->sendMessage('⚠️ *Failed to initialize localization*')
|
|
->then(function (message $message) use ($context) {
|
|
// Ending the conversation process
|
|
$context->endConversation();
|
|
});
|
|
}
|
|
} else {
|
|
// Not initialized the account
|
|
|
|
// Sending the message
|
|
$context->sendMessage('⚠️ *Failed to initialize your Telegram account*')
|
|
->then(function (message $message) use ($context) {
|
|
// Ending the conversation process
|
|
$context->endConversation();
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Language
|
|
*
|
|
* Responce for the command: "/language"
|
|
*
|
|
* Send the language selection menu
|
|
*
|
|
* @param context $context Request data from Telegram
|
|
*
|
|
* @return void
|
|
*/
|
|
public static function language(context $context): void
|
|
{
|
|
// Initializing the account
|
|
$account = $context->get('account');
|
|
|
|
if ($account instanceof record) {
|
|
// Initialized the account
|
|
|
|
// Initializing language
|
|
$language = $context->get('language');
|
|
|
|
if ($language instanceof language) {
|
|
// Initialized language
|
|
|
|
// Initializing localization
|
|
$localization = $context->get('localization');
|
|
|
|
if ($localization) {
|
|
// Initialized localization
|
|
|
|
// Sending the language selection
|
|
process_language_select::menu(
|
|
context: $context,
|
|
prefix: 'settings_language_',
|
|
title: '🌏 *' . $localization['settings_select_language_title'] . '*',
|
|
description: '🌏 *' . $localization['settings_select_language_description'] . '*'
|
|
);
|
|
} else {
|
|
// Not initialized localization
|
|
|
|
// Sending the message
|
|
$context->sendMessage('⚠️ *Failed to initialize localization*')
|
|
->then(function (message $message) use ($context) {
|
|
// Sended the message
|
|
|
|
// Ending the conversation process
|
|
$context->endConversation();
|
|
});
|
|
}
|
|
} else {
|
|
// Not initialized language
|
|
|
|
// Sending the message
|
|
$context->sendMessage('⚠️ *Failed to initialize language*')
|
|
->then(function (message $message) use ($context) {
|
|
// Sended the message
|
|
|
|
// Ending the conversation process
|
|
$context->endConversation();
|
|
});
|
|
}
|
|
} else {
|
|
// Not initialized the account
|
|
|
|
// Sending the message
|
|
$context->sendMessage('⚠️ *Failed to initialize your Telegram account*')
|
|
->then(function (message $message) use ($context) {
|
|
// Sended the message
|
|
|
|
// Ending the conversation process
|
|
$context->endConversation();
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Repository
|
|
*
|
|
* Responce for the command: "/repository"
|
|
*
|
|
* Sends information about project and menu
|
|
*
|
|
* @param context $context Request data from Telegram
|
|
*
|
|
* @return void
|
|
*/
|
|
public static function repository(context $context): void
|
|
{
|
|
// Initializing the account
|
|
$account = $context->get('account');
|
|
|
|
if ($account instanceof record) {
|
|
// Initialized the account
|
|
|
|
// Initializing localization
|
|
$localization = $context->get('localization');
|
|
|
|
if ($localization) {
|
|
// Initialized localization
|
|
|
|
// Initializing title of the message
|
|
$title = '🏛️ ' . $localization['repository_title'];
|
|
|
|
// Sending the message
|
|
$context->sendMessage($title . "\n\n" . $localization['repository_text'], [
|
|
'reply_markup' => [
|
|
'inline_keyboard' => [
|
|
[
|
|
[
|
|
'text' => '🏛️ ' . $localization['repository_button_code'],
|
|
'url' => 'https://git.mirzaev.sexy/svoboda/pechatalka'
|
|
]
|
|
],
|
|
[
|
|
[
|
|
'text' => '⚠️ ' . $localization['repository_button_issues'],
|
|
'url' => 'https://git.mirzaev.sexy/svoboda/pechatalka/issues'
|
|
],
|
|
[
|
|
'text' => '🌱 ' . $localization['repository_button_suggestions'],
|
|
'url' => 'https://git.mirzaev.sexy/svoboda/pechatalka/issues'
|
|
]
|
|
]
|
|
],
|
|
'remove_keyboard' => true,
|
|
'disable_notification' => true
|
|
],
|
|
'link_preview_options' => [
|
|
'is_disabled' => true
|
|
]
|
|
]);
|
|
} else {
|
|
// Not initialized localization
|
|
|
|
// Sending the message
|
|
$context->sendMessage('⚠️ *Failed to initialize localization*')
|
|
->then(function (message $message) use ($context) {
|
|
// Ending the conversation process
|
|
$context->endConversation();
|
|
});
|
|
}
|
|
} else {
|
|
// Not initialized the account
|
|
|
|
// Sending the message
|
|
$context->sendMessage('⚠️ *Failed to initialize your Telegram account*')
|
|
->then(function (message $message) use ($context) {
|
|
// Ending the conversation process
|
|
$context->endConversation();
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Author
|
|
*
|
|
* Responce for the command: "/author"
|
|
*
|
|
* Sends
|
|
*
|
|
* @param context $context Request data from Telegram
|
|
*
|
|
* @return void
|
|
*/
|
|
public static function author(context $context): void
|
|
{
|
|
// Initializing the account
|
|
$account = $context->get('account');
|
|
|
|
if ($account instanceof record) {
|
|
// Initialized the account
|
|
|
|
// Initializing localization
|
|
$localization = $context->get('localization');
|
|
|
|
if ($localization) {
|
|
// Initialized localization
|
|
|
|
// Initializing title of the message
|
|
$title = '👽 ' . $localization['author_title'];
|
|
|
|
// Sending the message
|
|
$context->sendMessage($title . "\n\n" . $localization['author_text'], [
|
|
'reply_markup' => [
|
|
'inline_keyboard' => [
|
|
[
|
|
[
|
|
'text' => '📚 ' . $localization['author_button_neurojournal'],
|
|
'url' => 'https://mirzaev.sexy'
|
|
],
|
|
[
|
|
'text' => '🤟 ' . $localization['author_button_projects'],
|
|
'url' => 'https://git.svoboda.works/mirzaev?tab=activity'
|
|
]
|
|
],
|
|
[
|
|
[
|
|
'text' => '📣 ' . $localization['author_button_telegram'],
|
|
'url' => 'https://t.me/blog_mirzaev_sexy'
|
|
],
|
|
[
|
|
'text' => '✖️ ' . $localization['author_button_twitter'],
|
|
'url' => 'https://x.com/mirzaev_sexy'
|
|
],
|
|
[
|
|
'text' => '🦋 ' . $localization['author_button_bluesky'],
|
|
'url' => 'https://bsky.app/profile/mirzaev.bsky.social'
|
|
],
|
|
[
|
|
'text' => '⛓️ ' . $localization['author_button_bastyon'],
|
|
'url' => 'https://bsky.app/profile/mirzaev.bsky.social'
|
|
]
|
|
],
|
|
[
|
|
[
|
|
'text' => '🇺🇸 ' . $localization['author_button_youtube_english'],
|
|
'url' => 'https://www.youtube.com/@MIRZAEV'
|
|
],
|
|
[
|
|
'text' => '🇷🇺 ' . $localization['author_button_youtube_russian'],
|
|
'url' => 'https://www.youtube.com/@MIRZAEV'
|
|
]
|
|
],
|
|
[
|
|
[
|
|
'text' => '✉️ ' . $localization['author_button_message'],
|
|
'url' => 'https://t.me/mirzaev_sexy'
|
|
]
|
|
]
|
|
],
|
|
'remove_keyboard' => true,
|
|
'disable_notification' => true
|
|
],
|
|
'link_preview_options' => [
|
|
'is_disabled' => true
|
|
]
|
|
]);
|
|
} else {
|
|
// Not initialized localization
|
|
|
|
// Sending the message
|
|
$context->sendMessage('⚠️ *Failed to initialize localization*')
|
|
->then(function (message $message) use ($context) {
|
|
// Ending the conversation process
|
|
$context->endConversation();
|
|
});
|
|
}
|
|
} else {
|
|
// Not initialized the account
|
|
|
|
// Sending the message
|
|
$context->sendMessage('⚠️ *Failed to initialize your Telegram account*')
|
|
->then(function (message $message) use ($context) {
|
|
// Ending the conversation process
|
|
$context->endConversation();
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Society
|
|
*
|
|
* Responce for the command: "/society"
|
|
*
|
|
* Sends the "mushroom" image and the localized text "why so shroomious"
|
|
*
|
|
* @param context $context Request data from Telegram
|
|
*
|
|
* @return void
|
|
*/
|
|
public static function society(context $context): void
|
|
{
|
|
// Initializing the account
|
|
$account = $context->get('account');
|
|
|
|
if ($account instanceof record) {
|
|
// Initialized the account
|
|
|
|
// Initializing localization
|
|
$localization = $context->get('localization');
|
|
|
|
if ($localization) {
|
|
// Initialized localization
|
|
|
|
// Sending the message
|
|
$context->sendPhoto(
|
|
new file_input(STORAGE . DIRECTORY_SEPARATOR . 'images' . DIRECTORY_SEPARATOR . 'mushroom.jpg'),
|
|
[
|
|
'caption' => $localization['why_so_shroomious'],
|
|
'disable_notification' => true
|
|
]
|
|
);
|
|
} else {
|
|
// Not initialized localization
|
|
|
|
// Sending the message
|
|
$context->sendMessage('⚠️ *Failed to initialize localization*')
|
|
->then(function (message $message) use ($context) {
|
|
// Ending the conversation process
|
|
$context->endConversation();
|
|
});
|
|
}
|
|
} else {
|
|
// Not initialized the account
|
|
|
|
// Sending the message
|
|
$context->sendMessage('⚠️ *Failed to initialize your Telegram account*')
|
|
->then(function (message $message) use ($context) {
|
|
// Ending the conversation process
|
|
$context->endConversation();
|
|
});
|
|
}
|
|
}
|
|
}
|