This repository was archived by the owner on May 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclass.php
executable file
·545 lines (489 loc) · 16.6 KB
/
class.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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
<?php
/**
* Modules Main Classes File
*
* PHP version 5.6.x | 7.x | 8.x
*
* @category PLugins
* @package Prestashop
* @author Pejman Kheyri <[email protected]>
* @copyright @copyright 2021 All rights reserved.
*/
/**
* Sms Logs class
*
* @category PLugins
* @package Prestashop
* @author Pejman Kheyri <[email protected]>
* @copyright @copyright 2021 All rights reserved.
*/
class SmsLogs extends ObjectModel
{
public $id_customer;
public $recipient;
public $phone;
public $event;
public $message;
public $uique;
public $status;
public $error;
public $date_add;
protected $fieldsRequired = array();
protected $fieldsValidate = array();
protected $fieldsSize = array();
protected $fieldsRequiredLang = array();
protected $fieldsSizeLang = array();
protected $fieldsValidateLang = array();
protected $table = 'smsnotifier_logs';
protected $identifier = 'id_smsnotifier_logs';
/**
* Get Fields
*
* @return array fields
*/
public function getFields()
{
parent::validateFields();
$fields['id_customer'] = intval($this->id_customer);
$fields['recipient'] = pSQL($this->recipient);
$fields['phone'] = pSQL($this->phone);
$fields['event'] = pSQL($this->event);
$fields['message'] = pSQL($this->message, true);
$fields['unique'] = pSQL($this->unique);
$fields['status'] = intval($this->status);
$fields['error'] = pSQL($this->error);
$fields['date_add'] = pSQL($this->date_add);
return $fields;
}
}
/**
* Sms class
*
* @category PLugins
* @package Prestashop
* @author Pejman Kheyri <[email protected]>
* @copyright @copyright 2021 All rights reserved.
*/
class SmsClass
{
public $hookName;
public $params;
public $phone = '';
public $apidomain;
public $username;
public $password;
public $txt = '';
public $recipient;
public $event = '';
private $_alternative_hooks = array(
'actionCustomerAccountAdd' => 'createAccount',
'actionValidateOrder' => 'newOrder',
'actionOrderStatusPostUpdate' => 'postUpdateOrderStatus',
'smsNotifierOrderMessage' => 'smsNotifierOrderMessage'
);
private $_config = array(
'actionValidateOrder' => 3, //both
'actionOrderStatusPostUpdate' => 2, //customer
'actionCustomerAccountAdd' => 3 ,
'smsNotifierOrderMessage' => 2
);
/**
* Class Construction
*
* @return void
*/
public function __construct()
{
}
/**
* Send method
*
* @param string $hookName hook Name
* @param string $params parameters
*
* @return void
*/
public function send($hookName, $params)
{
$this->hookName = $hookName;
$this->params = $params;
$dest = $this->_config[$this->hookName];
if ($dest == 2 || $dest == 3) {
$this->_prepareSms();
}
if ($dest == 1 || $dest == 3) {
$this->_prepareSms(true);
}
}
/**
* Prepare sms method
*
* @param boolean $bAdmin admin variable
*
* @return void
*/
private function _prepareSms($bAdmin = false)
{
/*if (class_exists('Context'))
$context = Context::getContext();
else {
global $smarty, $cookie, $language;
$context = new StdClass();
$context->language = $language;
}*/
$method = '_get' . ucfirst($this->hookName) . 'Values';
if (method_exists(__CLASS__, $method)) {
if (version_compare(_PS_VERSION_, '1.5.0') < 0) // 1.4
$hookId = Hook::get($this->_alternative_hooks[$this->hookName]);
else
$hookId = Hook::getIdByName($this->hookName);
if ($hookId) {
$this->recipient = null;
$this->event = $this->hookName;
$idLang = null ;
switch ($this->hookName) {
case 'actionOrderStatusPostUpdate':
$stateId = $this->params['newOrderStatus']->id;
//if($stateId == Configuration::get('PS_OS_SHIPPING')){
$order = new Order((int)$this->params['id_order']);
$idLang = $order->id_lang;
$keyActive = 'SMS_ISACTIVE_' . $hookId;
$keyTxt = 'SMS_TXT_' . $hookId;
$this->event .= '_SHIPPING';
$values = $this->$method(false, false);
//}
break;
default :
$keyActive = ($bAdmin) ? 'SMS_ISACTIVE_' . $hookId . '_ADMIN' : 'SMS_ISACTIVE_' . $hookId;
$keyTxt = ($bAdmin) ? 'SMS_TXT_' . $hookId . '_ADMIN' : 'SMS_TXT_' . $hookId;
$values = $this->$method(false, $bAdmin);
break;
}
if (is_array($values) && $this->_isEverythingValidForSending($keyActive, $keyTxt, $idLang, $bAdmin)) {
$this->txt = str_replace(array_keys($values), array_values($values), Configuration::get($keyTxt));
$this->_sendSMS();
}
}
}
}
/**
* Checking Sending Validation
*
* @param string $keyActive key active
* @param string $keyTxt text keyword
* @param integer $idLang language id
* @param boolean $bAdmin admin variable
*
* @return boolean validation status
*/
private function _isEverythingValidForSending($keyActive, $keyTxt, $idLang=null, $bAdmin=false)
{
if (Configuration::get($keyActive) != 1)
return false;
$this->apidomain = Configuration::get('SMSNOTIFIER_APIDOMAIN');
$this->username = Configuration::get('SMSNOTIFIER_USERNAME');
$this->password = Configuration::get('SMSNOTIFIER_PASSWORD');
if (!empty($this->phone)
&& Configuration::get('SMSNOTIFIER_SENDER')
&& Configuration::get('SMSNOTIFIER_SERVICE')
&& Configuration::get('SMSNOTIFIER_ADMIN_MOB')
&& $this->apidomain
&& $this->username
&& $this->password
)
return true;
return false;
}
/**
* Send sms method
*
* @return boolean sending status
*/
private function _sendSMS()
{
if ($service = Configuration::get('SMSNOTIFIER_SERVICE')) {
$s = str_replace('Class_', '', $service);
include_once _PS_MODULE_DIR_.'SMSIRModule/services/'.$s.'.php';
$sms = new $service;
} else {
return false;
}
//$sms = new SMS();
$sms->setSmsApiDomain($this->apidomain);
$sms->setSmsLogin($this->username);
$sms->setSmsPassword($this->password);
$sms->setSmsText($this->txt);
$sms->setNums(array($this->phone));
$sms->setSender(Configuration::get('SMSNOTIFIER_SENDER'));
$sms->setSenderCC(Configuration::get('SMSNOTIFIER_SENDER_CUSTOMERCLUB'));
$reponse = $sms->send();
$result = @explode('_', $reponse);
$log = new SmsLogs();
if (isset($this->recipient)) {
$log->id_customer = $this->recipient->id;
$log->recipient = $this->recipient->firstname . ' ' . $this->recipient->lastname;
} else {
$log->recipient = '--';
}
$log->phone = $this->phone;
$log->event = $this->event;
$log->message = $this->txt;
$log->unique = $result[1];
$log->status = ($result[0] == 'OK') ? 1 : 0;
$log->error = ($result[0] == 'KO') ? $result[1] : null;
$log->save();
if ($result[0] == 'OK')
return true;
return false;
}
/**
* Get Credit method
*
* @return string credit amount
*/
public function getCredit()
{
if ($service = Configuration::get('SMSNOTIFIER_SERVICE')) {
$s = str_replace('Class_', '', $service);
include_once _PS_MODULE_DIR_.'SMSIRModule/services/'.$s.'.php';
$sms = new $service;
} else {
return false;
}
$sms->setSmsApiDomain(Configuration::get('SMSNOTIFIER_APIDOMAIN'));
$sms->setSmsLogin(Configuration::get('SMSNOTIFIER_USERNAME'));
$sms->setSmsPassword(Configuration::get('SMSNOTIFIER_PASSWORD'));
$reponse = $sms->getCredit();
return $reponse;
}
/**
* Setting Phone number
*
* @param integer $addressId address Id
* @param boolean $bAdmin admin variable
*
* @return void
*/
private function _setPhone($addressId, $bAdmin)
{
$this->phone = '';
if ($bAdmin)
$this->phone = Configuration::get('SMSNOTIFIER_ADMIN_MOB');
else if (!empty($addressId)) {
$address = new Address($addressId);
if (!empty($address->phone_mobile)) {
$this->phone = $address->phone_mobile;
}
}
}
/**
* Setting Recipient
*
* @param string $customer customer
*
* @return void
*/
private function _setRecipient($customer)
{
$this->recipient = $customer;
}
/**
* Get Base Values
*
* @return array base values
*/
private function _getBaseValues()
{
$host = 'http://'.Tools::getHttpHost(false, true);
$values = array(
'{shopname}' => Configuration::get('PS_SHOP_NAME'),
'{shopurl}' => $host.__PS_BASE_URI__
);
return $values;
}
/**
* Get Action Validate Order Values
*
* @param boolean $bSimu variable
* @param boolean $bAdmin admin variable
*
* @return array validation values
*/
private function _getActionValidateOrderValues($bSimu = false, $bAdmin = false)
{
$order = $this->params['order'];
$customer = $this->params['customer'];
$currency = $this->params['currency'];
if (!$bAdmin)
$this->_setRecipient($customer);
$this->_setPhone($order->id_address_delivery, $bAdmin);
$values = array(
'{firstname}' => $customer->firstname,
'{lastname}' => $customer->lastname,
'{order_id}' => sprintf("%06d", $order->id),
'{payment}' => $order->payment,
'{total_paid}' => $order->total_paid,
'{currency}' => $currency->sign
);
return array_merge($values, $this->_getBaseValues());
}
/**
* Get Action Customer Account Add Values
*
* @param boolean $bSimu variable
* @param boolean $bAdmin admin variable
*
* @return array account values
*/
private function _getActionCustomerAccountAddValues($bSimu = false, $bAdmin = false)
{
$customer = $this->params['newCustomer'];
if (!$bAdmin)
$this->_setRecipient($customer);
$this->_setPhone(Address::getFirstCustomerAddressId($customer->id), $bAdmin);
$values = array(
'{firstname}' => $customer->firstname,
'{lastname}' => $customer->lastname,
'{email}' => $customer->email,
'{passwd}' => $this->params['_POST']['passwd']
);
return array_merge($values, $this->_getBaseValues());
}
/**
* Get Action Order Status Post Update Values
*
* @param boolean $bSimu variable
* @param boolean $bAdmin admin variable
*
* @return array account values
*/
private function _getActionOrderStatusPostUpdateValues($bSimu = false, $bAdmin = false)
{
$order = new Order((int)$this->params['id_order']);
$state = $this->params['newOrderStatus']->name;
$customer = new Customer((int)$order->id_customer);
$this->_setRecipient($customer);
$this->_setPhone($order->id_address_delivery, false);
$values = array(
'{firstname}' => $customer->firstname,
'{lastname}' => $customer->lastname,
'{order_id}' => sprintf("%06d", $order->id),
'{order_state}' => $state
);
return array_merge($values, $this->_getBaseValues());
}
/**
* Get Sms Notifier Order Message Values
*
* @param boolean $bSimu variable
* @param boolean $bAdmin admin variable
*
* @return array message values
*/
private function _getSmsNotifierOrderMessageValues($bSimu = false, $bAdmin = false)
{
$order = new Order((int)$this->params['order']);
$customer = $customer = new Customer((int)$order->id_customer);
$message = $this->params['message'];
$this->_setRecipient($customer);
$this->_setPhone($order->id_address_delivery, false);
$values = array(
'{firstname}' => $customer->firstname,
'{lastname}' => $customer->lastname,
'{order_id}' => $order->id,
'{message}' => $message
);
return array_merge($values, $this->_getBaseValues());
}
/**
* Send Message To All Customer
*
* @param array $params parameters
*
* @return boolean sent message status
*/
public function sendMessageAllCustomer($params)
{
if ($service = Configuration::get('SMSNOTIFIER_SERVICE')) {
$s = str_replace('Class_', '', $service);
include_once _PS_MODULE_DIR_.'SMSIRModule/services/'.$s.'.php';
$sms = new $service;
} else {
return false;
}
$this->apidomain = Configuration::get('SMSNOTIFIER_APIDOMAIN');
$this->username = Configuration::get('SMSNOTIFIER_USERNAME');
$this->password = Configuration::get('SMSNOTIFIER_PASSWORD');
//$sms = new SMS();
$sms->setSmsApiDomain($this->apidomain);
$sms->setSmsLogin($this->username);
$sms->setSmsPassword($this->password);
$sms->setSmsText($params['text']);
$sms->setNums($params['numbers']);
$sms->setSender(Configuration::get('SMSNOTIFIER_SENDER'));
$sms->setSenderCC(Configuration::get('SMSNOTIFIER_SENDER_CUSTOMERCLUB'));
$reponse = $sms->send();
$result = @explode('_', $reponse);
$log = new SmsLogs();
if (isset($this->recipient)) {
$log->id_customer = $this->recipient->id;
$log->recipient = $this->recipient->firstname . ' ' . $this->recipient->lastname;
} else {
$log->recipient = '--';
}
$log->phone = $this->phone;
$log->event = $this->event;
$log->message = $this->txt;
$log->unique = $result[1];
$log->status = ($result[0] == 'OK') ? 1 : 0;
$log->error = ($result[0] == 'KO') ? $result[1] : null;
$log->save();
if ($result[0] == 'OK')
return true;
return false;
}
/**
* Send Message To All Customer Club Contacts
*
* @param array $params parameters
*
* @return boolean sent message status
*/
public function sendMessageAllCustomerClub($params)
{
if ($service = Configuration::get('SMSNOTIFIER_SERVICE')) {
$s = str_replace('Class_', '', $service);
include_once _PS_MODULE_DIR_.'SMSIRModule/services/'.$s.'.php' ;
$sms = new $service;
} else {
return false;
}
$this->apidomain = Configuration::get('SMSNOTIFIER_APIDOMAIN');
$this->username = Configuration::get('SMSNOTIFIER_USERNAME');
$this->password = Configuration::get('SMSNOTIFIER_PASSWORD');
$sms->setSmsApiDomain($this->apidomain);
$sms->setSmsLogin($this->username);
$sms->setSmsPassword($this->password);
$sms->setSmsText($params['text']);
$reponse = $sms->sendtoallcustomerclub();
$result = @explode('_', $reponse);
$log = new SmsLogs();
if (isset($this->recipient)) {
$log->id_customer = $this->recipient->id;
$log->recipient = $this->recipient->firstname . ' ' . $this->recipient->lastname;
} else {
$log->recipient = '--';
}
$log->phone = $this->phone;
$log->event = $this->event;
$log->message = $this->txt;
$log->unique = $result[1];
$log->status = ($result[0] == 'OK') ? 1 : 0;
$log->error = ($result[0] == 'KO') ? $result[1] : null;
$log->save();
if ($result[0] == 'OK')
return true;
return false;
}
}
?>