/var/www/html_fr/wp-content/plugins/fluent-smtp/app/Services/NotificationHelper.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
<?php

namespace FluentMail\App\Services;

use 
InvalidArgumentException;
use 
FluentMail\App\Models\Settings;
use 
FluentMail\Includes\Support\Arr;

class 
NotificationHelper
{
    public static function 
getRemoteServerUrl()
    {
        if (
defined('FLUENTSMTP_SERVER_REMOTE_SERVER_URL')) {
            return 
FLUENTSMTP_SERVER_REMOTE_SERVER_URL;
        }

        return 
'https://fluentsmtp.com/wp-json/fluentsmtp_notify/v1/';
    }

    public static function 
issueTelegramPinCode($data)
    {
        return 
self::sendTeleRequest('register-site'$data'POST');
    }

    public static function 
registerSlackSite($data)
    {
        return 
self::sendSlackRequest('register-site'$data'POST');
    }

    public static function 
getTelegramConnectionInfo($token)
    {
        return 
self::sendTeleRequest('get-site-info', [], 'GET'$token);
    }

    public static function 
sendTestTelegramMessage($token '')
    {
        if (!
$token) {
            
$settings = (new Settings())->notificationSettings();
            
$token Arr::get($settings'telegram.token');
        }

        return 
self::sendTeleRequest('send-test', [], 'POST'$token);
    }

    public static function 
disconnectTelegram($token)
    {
        
self::sendTeleRequest('disconnect', [], 'POST'$token);

        
$settings = (new Settings())->notificationSettings();

        
$settings['telegram'] = [
            
'status' => 'no',
            
'token'  => ''
        
];
        
$settings['active_channel'] = '';

        
update_option('_fluent_smtp_notify_settings'$settingsfalse);

        return 
true;
    }

    public static function 
getTelegramBotTokenId()
    {
        static 
$token null;

        if (
$token !== null) {
            return 
$token;
        }

        
$settings = (new Settings())->notificationSettings();

        
$token Arr::get($settings'telegram.token'false);

        if (!
$token) {
            
$token false;
        }

        return 
$token;
    }

    public static function 
getSlackWebhookUrl()
    {
        static 
$url null;

        if (
$url !== null) {
            return 
$url;
        }

        
$settings = (new Settings())->notificationSettings();

        
$url Arr::get($settings'slack.webhook_url');

        if (!
$url) {
            
$url false;
        }

        return 
$url;
    }

    public static function 
sendFailedNotificationTele($data)
    {
        
wp_remote_post(self::getRemoteServerUrl() . 'telegram/send-failed-notification', array(
            
'timeout'   => 0.01,
            
'blocking'  => false,
            
'body'      => $data,
            
'cookies'   => false,
            
'sslverify' => false,
        ));

        return 
true;
    }

    private static function 
sendTeleRequest($route$data = [], $method 'POST'$token '')
    {
        
$url self::getRemoteServerUrl() . 'telegram/' $route;

        if (
$token) {
            
$url .= '?site_token=' $token;
        }

        if (
$method == 'POST') {
            
$response wp_remote_post($url, [
                
'body'      => $data,
                
'sslverify' => false,
                
'timeout'   => 50
            
]);
        } else {
            
$response wp_remote_get($url, [
                
'sslverify' => false,
                
'timeout'   => 50
            
]);
        }

        if (
is_wp_error($response)) {
            return 
$response;
        }

        
$responseCode wp_remote_retrieve_response_code($response);

        
$body wp_remote_retrieve_body($response);
        
$responseData json_decode($bodytrue);

        if (!
$responseData || empty($responseData['success']) || $responseCode !== 200) {
            return new 
\WP_Error('invalid_data''Something went wrong'$responseData);
        }

        return 
$responseData;
    }

    private static function 
sendSlackRequest($route$data = [], $method 'POST'$token '')
    {
        
$url self::getRemoteServerUrl() . 'slack/' $route;

        if (
$token) {
            
$url .= '?site_token=' $token;
        }

        if (
$method == 'POST') {
            
$response wp_remote_post($url, [
                
'body'      => $data,
                
'sslverify' => false,
                
'timeout'   => 50
            
]);
        } else {
            
$response wp_remote_get($url, [
                
'sslverify' => false,
                
'timeout'   => 50
            
]);
        }

        if (
is_wp_error($response)) {
            return 
$response;
        }

        
$responseCode wp_remote_retrieve_response_code($response);

        
$body wp_remote_retrieve_body($response);

        
$responseData json_decode($bodytrue);

        if (!
$responseData || empty($responseData['success']) || $responseCode !== 200) {
            return new 
\WP_Error('invalid_data''Something went wrong'$responseData);
        }

        return 
$responseData;
    }

    public static function 
sendSlackMessage($message$webhookUrl$blocking false)
    {

        if (
is_array($message)) {
            
$body wp_json_encode($message);
        } else {
            
$body wp_json_encode(array('text' => $message));
        }

        
$args = array(
            
'body'        => $body,
            
'headers'     => array(
                
'Content-Type' => 'application/json',
            ),
            
'cookies'     => null,
            
'timeout'     => 60,
            
'redirection' => 5,
            
'blocking'    => true,
            
'httpversion' => '1.0',
            
'sslverify'   => false,
            
'data_format' => 'body',
        );

        if (!
$blocking) {
            
$args['blocking'] = false;
            
$args['timeout'] = 0.01;
        }

        
$response wp_remote_post($webhookUrl$args);

        if (!
$blocking) {
            return 
true;
        }

        if (
is_wp_error($response)) {
            return 
$response;
        }


        
$body wp_remote_retrieve_body($response);


        return 
json_decode($bodytrue);
    }

    public static function 
sendDiscordMessage($message$webhookUrl$blocking false)
    {
        
$body wp_json_encode(array(
            
'content'  => $message,
            
'username' => 'FluentSMTP'
        
));

        
$args = array(
            
'body'        => $body,
            
'headers'     => array(
                
'Content-Type' => 'application/json',
            ),
            
'timeout'     => 60,
            
'redirection' => 5,
            
'blocking'    => true,
            
'httpversion' => '1.0',
            
'sslverify'   => false,
            
'data_format' => 'body',
        );

        if (!
$blocking) {
            
$args['blocking'] = false;
            
$args['timeout'] = 0.01;
        }

        
$response wp_remote_post($webhookUrl$args);

        if (!
$blocking) {
            return 
true;
        }

        if (
is_wp_error($response)) {
            return 
$response;
        }

        
$body wp_remote_retrieve_body($response);
        return 
json_decode($bodytrue);
    }

    public static function 
getActiveChannelSettings()
    {
        static 
$channel null;

        if (
$channel !== null) {
            return 
$channel;
        }

        
$settings = (new Settings())->notificationSettings();

        
$activeChannel Arr::get($settings'active_channel''');

        if (!
$activeChannel) {
            
$channel false;
            return 
$channel;
        }

        
$channelSettings Arr::get($settings$activeChannel, []);

        if (!
$channelSettings || empty($channelSettings['status']) || $channelSettings['status'] != 'yes') {
            
$channel false;
            return 
$channel;
        }

        
$channel $channelSettings;
        
$channel['driver'] = $activeChannel;

        return 
$channel;
    }

    public static function 
formatSlackMessageBlock($handler$logData = [])
    {
        
$sendingTo self::unserialize(Arr::get($logData'to'));

        if (
is_array($sendingTo)) {
            
$sendingTo Arr::get($sendingTo'0.email''');
        }

        if (
is_array($sendingTo) || !$sendingTo) {
            
$sendingTo Arr::get($logData'to');
        }

        
$heading sprintf(__('[%s] Failed to send email''fluent-smtp'), get_bloginfo('name'));

        return [
            
'text'   => $heading,
            
'blocks' => [
                [
                    
'type' => 'header',
                    
'text' => [
                        
'type'  => 'plain_text',
                        
'text'  => $heading,
                        
"emoji" => true
                    
]
                ],
                [
                    
'type'   => 'section',
                    
'fields' => [
                        [
                            
'type' => "mrkdwn",
                            
'text' => "*Website URL:*\n " site_url()
                        ],
                        [
                            
'type' => "mrkdwn",
                            
'text' => "*Sending Driver:*\n " strtoupper($handler->getSetting('provider'))
                        ],
                        [
                            
'type' => "mrkdwn",
                            
'text' => "*To Email Address:*\n " $sendingTo
                        
],
                        [
                            
'type' => "mrkdwn",
                            
'text' => "*Email Subject:*\n " Arr::get($logData'subject')
                        ]
                    ]
                ],
                [
                    
'type' => 'section',
                    
'text' => [
                        
'type' => "mrkdwn",
                        
'text' => "*Error Message:*\n ```" self::getErrorMessageFromResponse(self::unserialize(Arr::get($logData'response'))) . "```"
                    
]
                ],
                [
                    
'type' => 'section',
                    
'text' => [
                        
'type' => "mrkdwn",
                        
'text' => "<" admin_url('options-general.php?page=fluent-mail#/logs?per_page=10&page=1&status=failed&search=') . "|View Failed Email(s)>"
                    
]
                ]
            ]
        ];
    }

    public static function 
formatDiscordMessageBlock($handler$logData = [])
    {
        
$sendingTo self::unserialize(Arr::get($logData'to'));

        if (
is_array($sendingTo)) {
            
$sendingTo Arr::get($sendingTo'0.email''');
        }

        if (
is_array($sendingTo) || !$sendingTo) {
            
$sendingTo Arr::get($logData'to');
        }

        
$heading sprintf(__('[%s] Failed to send email''fluent-smtp'), get_bloginfo('name'));

        
$content '## ' $heading "\n";
        
$content .= __('**Website URL:** ''fluent-smtp') . site_url() . "\n";
        
$content .= __('**Sending Driver:** ''fluent-smtp') . strtoupper($handler->getSetting('provider')) . "\n";
        
$content .= __('**To Email Address:** ''fluent-smtp') . $sendingTo "\n";
        
$content .= __('**Email Subject:** ''fluent-smtp') . Arr::get($logData'subject') . "\n";
        
$content .= __('**Error Message:** ```''fluent-smtp') . self::getErrorMessageFromResponse(self::unserialize(Arr::get($logData'response'))) . "```\n";
        
$content .= __('[View Failed Email(s)](''fluent-smtp') . admin_url('options-general.php?page=fluent-mail#/logs?per_page=10&page=1&status=failed&search=') . ')';

        return 
$content;
    }

    public static function 
getErrorMessageFromResponse($response)
    {
        if (!
$response || !is_array($response)) {
            return 
'';
        }

        if (!empty(
$response['fallback_response']['message'])) {
            
$message $response['fallback_response']['message'];
        } else {
            
$message Arr::get($response'message');
        }

        if (!
$message) {
            return 
'';
        }

        if (!
is_string($message)) {
            
$message json_encode($message);
        }

        return 
$message;
    }

    protected static function 
unserialize($data)
    {
        if (
is_serialized($data)) {
            if (
preg_match('/(^|;)O:[0-9]+:/'$data)) {
                return 
'';
            }
            return 
unserialize(trim($data), ['allowed_classes' => false]);
        }

        return 
$data;
    }
}