Move allowed ChatIDs list to env.php

This commit is contained in:
2022-12-29 22:54:06 +00:00
parent a992fc6165
commit 1eb0bc4c2b
2 changed files with 6 additions and 5 deletions

View File

@@ -6,3 +6,5 @@ $bot_api_key = '1234567890:Telegram_bot_api_key';
$bot_username = 'telegram_bot_username'; $bot_username = 'telegram_bot_username';
$hook_url = 'https://my.server.com/path/to/hook.php'; $hook_url = 'https://my.server.com/path/to/hook.php';
putenv('DEEPL_API_KEY=some-uuid-12345-abcde:fx'); putenv('DEEPL_API_KEY=some-uuid-12345-abcde:fx');
$deepl_api_key = 'some-uuid-12345-abcde:fx';
$allowed_chat_ids = [123, 456, -123];

View File

@@ -19,9 +19,6 @@ class GenericmessageCommand extends SystemCommand
protected $version = '1.0.0'; protected $version = '1.0.0';
private Translator $translator; private Translator $translator;
private const ALLOWED_CHAT_ID = [
123, 456, 789
];
private const ZH_TO_EN = [ private const ZH_TO_EN = [
'兽设' => 'fursona', '兽设' => 'fursona',
'兽人' => 'furry character', '兽人' => 'furry character',
@@ -50,10 +47,12 @@ class GenericmessageCommand extends SystemCommand
public function execute(): ServerResponse public function execute(): ServerResponse
{ {
global $deepl_api_key, $allowed_chat_ids;
$message = $this->getMessage(); $message = $this->getMessage();
$chat_id = $message->getChat()->getId(); $chat_id = $message->getChat()->getId();
if(!in_array($chat_id, self::ALLOWED_CHAT_ID)) { if(!in_array($chat_id, $allowed_chat_ids)) {
return Request::sendMessage([ return Request::sendMessage([
'chat_id' => $chat_id, 'chat_id' => $chat_id,
'text' => "Chat ID $chat_id not allowed", 'text' => "Chat ID $chat_id not allowed",
@@ -82,7 +81,7 @@ class GenericmessageCommand extends SystemCommand
$text = str_replace($search, $replace, $text); $text = str_replace($search, $replace, $text);
} }
$this->translator = new Translator(getenv('DEEPL_API_KEY')); $this->translator = new Translator($deepl_api_key);
try { try {
$translated = $this->translator->translateText($text, $sourceLang, $targetLang); $translated = $this->translator->translateText($text, $sourceLang, $targetLang);
} catch (\Exception $e) { } catch (\Exception $e) {