- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
164 lines
5.2 KiB
PHP
Executable File
164 lines
5.2 KiB
PHP
Executable File
<?php
|
|
|
|
namespace FluentMail\App\Http\Controllers;
|
|
|
|
use FluentMail\App\Models\Settings;
|
|
use FluentMail\App\Services\NotificationHelper;
|
|
use FluentMail\Includes\Request\Request;
|
|
use FluentMail\Includes\Support\Arr;
|
|
|
|
class TelegramController extends Controller
|
|
{
|
|
public function issuePinCode(Request $request)
|
|
{
|
|
$this->verify();
|
|
|
|
$formData = $request->get('settings', []);
|
|
|
|
$userEmail = sanitize_email(Arr::get($formData, 'user_email'));
|
|
|
|
if (!is_email($userEmail)) {
|
|
return $this->sendError([
|
|
'message' => __('Please provide a valid email address', 'fluent-smtp')
|
|
], 422);
|
|
}
|
|
|
|
$payload = [
|
|
'admin_email' => $userEmail,
|
|
'smtp_url' => admin_url('options-general.php?page=fluent-mail#/'),
|
|
'site_url' => site_url(),
|
|
'site_title' => get_bloginfo('name'),
|
|
'site_lang' => get_bloginfo('language'),
|
|
];
|
|
|
|
|
|
$activationData = NotificationHelper::issueTelegramPinCode($payload);
|
|
|
|
if (is_wp_error($activationData)) {
|
|
return $this->sendError([
|
|
'message' => $activationData->get_error_message(),
|
|
'errors' => $activationData->get_error_data(),
|
|
], 422);
|
|
}
|
|
|
|
return $this->sendSuccess([
|
|
'message' => __('Awesome! Please activate the connection from your telegram account.', 'fluent-smtp'),
|
|
'site_token' => Arr::get($activationData, 'site_token'),
|
|
'site_pin' => Arr::get($activationData, 'site_pin'),
|
|
]);
|
|
}
|
|
|
|
public function confirmConnection(Request $request)
|
|
{
|
|
$this->verify();
|
|
|
|
$siteToken = $request->get('site_token', '');
|
|
|
|
if (empty($siteToken)) {
|
|
return $this->sendError([
|
|
'message' => __('Please provide site token', 'fluent-smtp')
|
|
], 422);
|
|
}
|
|
|
|
|
|
$connectionInfo = NotificationHelper::getTelegramConnectionInfo($siteToken);
|
|
|
|
if (is_wp_error($connectionInfo)) {
|
|
return $this->sendError([
|
|
'message' => $connectionInfo->get_error_message(),
|
|
'errors' => $connectionInfo->get_error_data(),
|
|
], 422);
|
|
}
|
|
|
|
// Let's update the notification status
|
|
$previousSettings = (new Settings())->notificationSettings();
|
|
|
|
$previousSettings['telegram'] = [
|
|
'status' => 'yes',
|
|
'token' => $siteToken
|
|
];
|
|
|
|
$previousSettings['active_channel'] = 'telegram';
|
|
|
|
update_option('_fluent_smtp_notify_settings', $previousSettings, false);
|
|
|
|
return $this->sendSuccess([
|
|
'success' => true,
|
|
'message' => __('Connection successful', 'fluent-smtp'),
|
|
]);
|
|
}
|
|
|
|
public function getTelegramConnectionInfo(Request $request)
|
|
{
|
|
$this->verify();
|
|
|
|
$settings = (new Settings())->notificationSettings();
|
|
|
|
if (Arr::get($settings, 'telegram.status') != 'yes') {
|
|
return $this->sendSuccess([
|
|
'message' => __('Telegram notification is not enabled', 'fluent-smtp'),
|
|
'telegram_notify_status' => 'no'
|
|
], 200);
|
|
}
|
|
|
|
$siteToken = Arr::get($settings, 'telegram.token');
|
|
|
|
$connectionInfo = NotificationHelper::getTelegramConnectionInfo($siteToken);
|
|
|
|
if (is_wp_error($connectionInfo)) {
|
|
return $this->sendSuccess([
|
|
'telegram_notify_status' => 'failed',
|
|
'message' => $connectionInfo->get_error_message(),
|
|
'errors' => $connectionInfo->get_error_data(),
|
|
]);
|
|
}
|
|
|
|
return $this->sendSuccess([
|
|
'telegram_notify_status' => 'yes',
|
|
'telegram_receiver' => Arr::get($connectionInfo, 'telegram_receiver', []),
|
|
]);
|
|
}
|
|
|
|
public function sendTestMessage(Request $request)
|
|
{
|
|
// Let's update the notification status
|
|
$settings = (new Settings())->notificationSettings();
|
|
|
|
if (Arr::get($settings, 'telegram.status') != 'yes') {
|
|
return $this->sendError([
|
|
'message' => __('Telegram notification is not enabled', 'fluent-smtp')
|
|
], 422);
|
|
}
|
|
|
|
$result = NotificationHelper::sendTestTelegramMessage(Arr::get($settings, 'telegram.token'));
|
|
|
|
if (is_wp_error($result)) {
|
|
return $this->sendError([
|
|
'message' => $result->get_error_message(),
|
|
'errors' => $result->get_error_data(),
|
|
], 422);
|
|
}
|
|
|
|
return $this->sendSuccess([
|
|
'message' => __('Test message sent successfully', 'fluent-smtp')
|
|
]);
|
|
}
|
|
|
|
public function disconnect()
|
|
{
|
|
$settings = (new Settings())->notificationSettings();
|
|
|
|
if (Arr::get($settings, 'telegram.status') != 'yes') {
|
|
return $this->sendError([
|
|
'message' => __('Telegram notification is not enabled', 'fluent-smtp')
|
|
], 422);
|
|
}
|
|
|
|
NotificationHelper::disconnectTelegram(Arr::get($settings, 'telegram.token'));
|
|
|
|
return $this->sendSuccess([
|
|
'message' => __('Telegram connection has been disconnected successfully', 'fluent-smtp')
|
|
]);
|
|
}
|
|
}
|