-
Notifications
You must be signed in to change notification settings - Fork 91
/
cronjobs.php
executable file
·752 lines (611 loc) · 29 KB
/
cronjobs.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
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
<?php
/**
* 2007-2016 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author PrestaShop SA <[email protected]>
* @copyright 2007-2016 PrestaShop SA
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/
if (!defined('_PS_VERSION_')) {
exit;
}
if (defined('_PS_ADMIN_DIR_') === false) {
define('_PS_ADMIN_DIR_', _PS_ROOT_DIR_.'/admin/');
}
require_once(dirname(__FILE__).'/classes/CronJobsForms.php');
class CronJobs extends Module
{
const EACH = -1;
protected $_successes;
protected $_warnings;
public $webservice_url = 'http://webcron.prestashop.com/crons';
public function __construct()
{
$this->name = 'cronjobs';
$this->tab = 'administration';
$this->version = '1.4.0';
$this->module_key = '';
$this->controllers = array('callback');
$this->author = 'PrestaShop';
$this->need_instance = true;
$this->bootstrap = true;
$this->display = 'view';
parent::__construct();
if ($this->id) {
$this->init();
}
$this->displayName = $this->l('Cron tasks manager');
$this->description = $this->l('Manage all your automated web tasks from a single interface.');
if (function_exists('curl_init') == false) {
$this->warning = $this->l('To be able to use this module, please activate cURL (PHP extension).');
}
}
public function install()
{
Configuration::updateValue('CRONJOBS_ADMIN_DIR', Tools::encrypt($this->getAdminDir()));
Configuration::updateValue('CRONJOBS_MODE', 'webservice');
Configuration::updateValue('CRONJOBS_MODULE_VERSION', $this->version);
Configuration::updateValue('CRONJOBS_WEBSERVICE_ID', 0);
$token = Tools::encrypt(Tools::getShopDomainSsl().time());
Configuration::updateGlobalValue('CRONJOBS_EXECUTION_TOKEN', $token);
if (parent::install()) {
$this->updateWebservice(true);
return $this->installDb() && $this->installTab() &&
$this->registerHook('actionModuleRegisterHookAfter') &&
$this->registerHook('actionModuleUnRegisterHookAfter') &&
$this->registerHook('backOfficeHeader');
}
return false;
}
protected function getAdminDir()
{
return basename(_PS_ADMIN_DIR_);
}
protected function init()
{
$new_admin_dir = (Tools::encrypt($this->getAdminDir()) != Configuration::get('CRONJOBS_ADMIN_DIR'));
$new_module_version = version_compare($this->version, Configuration::get('CRONJOBS_MODULE_VERSION'), '!=');
if ($new_admin_dir || $new_module_version) {
Configuration::updateValue('CRONJOBS_MODULE_VERSION', $this->version);
Configuration::updateValue('CRONJOBS_ADMIN_DIR', Tools::encrypt($this->getAdminDir()));
if (Configuration::get('CRONJOBS_MODE') == 'webservice') {
$this->updateWebservice(true);
return $this->enableWebservice();
}
return $this->disableWebservice();
}
}
public function uninstall()
{
Configuration::deleteByName('CRONJOBS_MODE');
$this->disableWebservice();
return $this->uninstallDb() &&
$this->uninstallTab() &&
parent::uninstall();
}
public function installDb()
{
return Db::getInstance()->execute(
'CREATE TABLE IF NOT EXISTS '._DB_PREFIX_.bqSQL($this->name).' (
`id_cronjob` INTEGER(10) NOT NULL AUTO_INCREMENT,
`id_module` INTEGER(10) DEFAULT NULL,
`description` TEXT DEFAULT NULL,
`task` TEXT DEFAULT NULL,
`hour` INTEGER DEFAULT \'-1\',
`day` INTEGER DEFAULT \'-1\',
`month` INTEGER DEFAULT \'-1\',
`day_of_week` INTEGER DEFAULT \'-1\',
`updated_at` DATETIME DEFAULT NULL,
`one_shot` BOOLEAN NOT NULL DEFAULT 0,
`active` BOOLEAN DEFAULT FALSE,
`id_shop` INTEGER DEFAULT \'0\',
`id_shop_group` INTEGER DEFAULT \'0\',
PRIMARY KEY(`id_cronjob`),
INDEX (`id_module`))
ENGINE='._MYSQL_ENGINE_.' default CHARSET=utf8'
);
}
public function uninstallDb()
{
return Db::getInstance()->execute('DROP TABLE IF EXISTS '._DB_PREFIX_.bqSQL($this->name));
}
public function installTab()
{
$tab = new Tab();
$tab->active = 1;
$tab->name = array();
$tab->class_name = 'AdminCronJobs';
foreach (Language::getLanguages(true) as $lang) {
$tab->name[$lang['id_lang']] = 'Cron Jobs';
}
$tab->id_parent = -1;
$tab->module = $this->name;
return $tab->add();
}
public function uninstallTab()
{
$id_tab = (int)Tab::getIdFromClassName('AdminCronJobs');
if ($id_tab) {
$tab = new Tab($id_tab);
return $tab->delete();
}
return false;
}
public function hookActionModuleRegisterHookAfter($params)
{
$hook_name = $params['hook_name'];
if ($hook_name == 'actionCronJob') {
$module = $params['object'];
$this->registerModuleHook($module->id);
$this->updateWebservice(Configuration::get('CRONJOBS_MODE') == 'webservice');
}
}
public function hookActionModuleUnRegisterHookAfter($params)
{
$hook_name = $params['hook_name'];
if ($hook_name == 'actionCronJob') {
$module = $params['object'];
$this->unregisterModuleHook($module->id);
$this->updateWebservice(Configuration::get('CRONJOBS_MODE') == 'webservice');
}
}
public function hookBackOfficeHeader()
{
if (Tools::getValue('configure') == $this->name) {
if (version_compare(_PS_VERSION_, '1.6', '<') == true) {
$this->context->controller->addCSS($this->_path.'views/css/bootstrap.min.css');
$this->context->controller->addCSS($this->_path.'views/css/configure-ps-15.css');
} else {
$this->context->controller->addCSS($this->_path.'views/css/configure-ps-16.css');
}
}
}
public function getContent()
{
$output = null;
CronJobsForms::init($this);
$this->checkLocalEnvironment();
if (Tools::isSubmit('submitCronJobs')) {
$this->postProcessConfiguration();
} elseif (Tools::isSubmit('submitNewCronJob')) {
$submit_cron = $this->postProcessNewJob();
} elseif (Tools::isSubmit('submitUpdateCronJob')) {
$submit_cron = $this->postProcessUpdateJob();
}
$this->context->smarty->assign(array(
'module_dir' => $this->_path,
'module_local_dir' => $this->local_path,
));
$this->context->smarty->assign('form_errors', $this->_errors);
$this->context->smarty->assign('form_infos', $this->_warnings);
$this->context->smarty->assign('form_successes', $this->_successes);
if ((Tools::isSubmit('submitNewCronJob') || Tools::isSubmit('newcronjobs') || Tools::isSubmit('updatecronjobs')) &&
((isset($submit_cron) == false) || ($submit_cron === false))) {
$back_url = $this->context->link->getAdminLink('AdminModules', false)
.'&configure='.$this->name.'&tab_module='.$this->tab.'&module_name='.$this->name
.'&token='.Tools::getAdminTokenLite('AdminModules');
}
$output = $output.$this->context->smarty->fetch($this->local_path.'views/templates/admin/configure.tpl');
if (Tools::isSubmit('newcronjobs') || ((isset($submit_cron) == true) && ($submit_cron === false))) {
$output = $output.$this->renderForm(CronJobsForms::getJobForm(), CronJobsForms::getNewJobFormValues(), 'submitNewCronJob', true, $back_url);
} elseif (Tools::isSubmit('updatecronjobs') && Tools::isSubmit('id_cronjob')) {
$form_structure = CronJobsForms::getJobForm('Update cron task', true);
$form = $this->renderForm($form_structure, CronJobsForms::getUpdateJobFormValues(), 'submitUpdateCronJob', true, $back_url, true);
$output = $output.$form;
} elseif (Tools::isSubmit('deletecronjobs') && Tools::isSubmit('id_cronjob')) {
$this->postProcessDeleteCronJob((int)Tools::getValue('id_cronjob'));
} elseif (Tools::isSubmit('oneshotcronjobs')) {
$this->postProcessUpdateJobOneShot();
} elseif (Tools::isSubmit('statuscronjobs')) {
$this->postProcessUpdateJobStatus();
} elseif (defined('_PS_HOST_MODE_') == false) {
$output = $output.$this->renderForm(CronJobsForms::getForm(), CronJobsForms::getFormValues(), 'submitCronJobs');
}
return $output.$this->renderTasksList();
}
public function sendCallback()
{
ignore_user_abort(true);
set_time_limit(0);
ob_start();
echo $this->name.'_prestashop';
header('Connection: close');
header('Content-Length: '.ob_get_length());
ob_end_flush();
ob_flush();
flush();
if (function_exists('fastcgi_finish_request')) {
fastcgi_finish_request();
}
}
public static function isActive($id_module)
{
$module = Module::getInstanceByName('cronjobs');
if (($module == false) || ($module->active == false)) {
return false;
}
$query = 'SELECT `active` FROM '._DB_PREFIX_.'cronjobs WHERE `id_module` = \''.(int)$id_module.'\'';
return (bool)Db::getInstance()->getValue($query);
}
/**
* $taks should be a valid URL
*/
public static function addOneShotTask($task, $description, $execution = array())
{
if (self::isTaskURLValid($task) == false) {
return false;
}
$id_shop = (int)Context::getContext()->shop->id;
$id_shop_group = (int)Context::getContext()->shop->id_shop_group;
$query = 'SELECT `active` FROM '._DB_PREFIX_.'cronjobs
WHERE `task` = \''.urlencode($task).'\' AND `updated_at` IS NULL
AND `one_shot` IS TRUE
AND `id_shop` = \''.$id_shop.'\' AND `id_shop_group` = \''.$id_shop_group.'\'';
if ((bool)Db::getInstance()->getValue($query) == true) {
return true;
}
if (count($execution) == 0) {
$query = 'INSERT INTO '._DB_PREFIX_.'cronjobs
(`description`, `task`, `hour`, `day`, `month`, `day_of_week`, `updated_at`, `one_shot`, `active`, `id_shop`, `id_shop_group`)
VALUES (\''. Db::getInstance()->escape($description) .'\', \'' .
urlencode($task) . '\', \'0\', \''.CronJobs::EACH.'\', \''.CronJobs::EACH.'\', \''.CronJobs::EACH.'\',
NULL, TRUE, TRUE, '.$id_shop.', '.$id_shop_group.')';
return Db::getInstance()->execute($query);
} else {
$is_frequency_valid = true;
$hour = (int)$execution['hour'];
$day = (int)$execution['day'];
$month = (int)$execution['month'];
$day_of_week = (int)$execution['day_of_week'];
$is_frequency_valid = (($hour >= -1) && ($hour < 24) && $is_frequency_valid);
$is_frequency_valid = (($day >= -1) && ($day <= 31) && $is_frequency_valid);
$is_frequency_valid = (($month >= -1) && ($month <= 31) && $is_frequency_valid);
$is_frequency_valid = (($day_of_week >= -1) && ($day_of_week < 7) && $is_frequency_valid);
if ($is_frequency_valid == true) {
$query = 'INSERT INTO '._DB_PREFIX_.'cronjobs
(`description`, `task`, `hour`, `day`, `month`, `day_of_week`, `updated_at`, `one_shot`, `active`, `id_shop`, `id_shop_group`)
VALUES (\''. Db::getInstance()->escape($description) .'\', \'' .
urlencode($task) . '\', \''.$hour.'\', \''.$day.'\', \''.$month.'\', \''.$day_of_week.'\',
NULL, TRUE, TRUE, '.$id_shop.', '.$id_shop_group.')';
return Db::getInstance()->execute($query);
}
}
return false;
}
protected function checkLocalEnvironment()
{
if ($this->isLocalEnvironment() == true) {
$this->setWarningMessage('You are using the Cron jobs module on a local installation:
you will not be able to use the Basic mode or reliably call remote cron tasks in your current environment.
To use this module at its best, you should switch to an online installation.');
}
}
protected function isLocalEnvironment()
{
if (isset($_SERVER['REMOTE_ADDR']) === false) {
return true;
}
return in_array(Tools::getRemoteAddr(), array('127.0.0.1', '::1')) || preg_match('/^172\.16\.|^192\.168\.|^10\.|^127\.|^localhost|\.local$/', Configuration::get('PS_SHOP_DOMAIN'));
}
protected function renderForm($form, $form_values, $action, $cancel = false, $back_url = false, $update = false)
{
$helper = new HelperForm();
$helper->show_toolbar = false;
$helper->module = $this;
$helper->default_form_language = $this->context->language->id;
$helper->allow_employee_form_lang = Configuration::get('PS_BO_ALLOW_EMPLOYEE_FORM_LANG', 0);
$helper->identifier = $this->identifier;
$helper->submit_action = $action;
$helper->currentIndex = $this->context->link->getAdminLink('AdminModules', false)
.'&configure='.$this->name.'&tab_module='.$this->tab.'&module_name='.$this->name;
if ($update == true) {
$helper->currentIndex .= '&id_cronjob='.(int)Tools::getValue('id_cronjob');
}
$helper->token = Tools::getAdminTokenLite('AdminModules');
$helper->tpl_vars = array(
'fields_value' => $form_values,
'id_language' => $this->context->language->id,
'languages' => $this->context->controller->getLanguages(),
'back_url' => $back_url,
'show_cancel_button' => $cancel,
);
return $helper->generateForm($form);
}
protected function renderTasksList()
{
$helper = new HelperList();
$helper->title = $this->l('Cron tasks');
$helper->table = $this->name;
$helper->no_link = true;
$helper->shopLinkType = '';
$helper->identifier = 'id_cronjob';
$helper->actions = array('edit', 'delete');
$values = CronJobsForms::getTasksListValues();
$helper->listTotal = count($values);
$helper->tpl_vars = array('show_filters' => false);
$helper->toolbar_btn['new'] = array(
'href' => $this->context->link->getAdminLink('AdminModules', false)
.'&configure='.$this->name.'&tab_module='.$this->tab.'&module_name='.$this->name
.'&newcronjobs=1&token='.Tools::getAdminTokenLite('AdminModules'),
'desc' => $this->l('Add new task')
);
$helper->token = Tools::getAdminTokenLite('AdminModules');
$helper->currentIndex = $this->context->link->getAdminLink('AdminModules', false)
.'&configure='.$this->name.'&tab_module='.$this->tab.'&module_name='.$this->name;
return $helper->generateList($values, CronJobsForms::getTasksList());
}
protected function postProcessConfiguration()
{
if (Tools::isSubmit('cron_mode') == true) {
if (Tools::getValue('cron_mode') == 'advanced') {
return $this->disableWebservice();
}
return $this->enableWebservice();
}
}
protected function postProcessNewJob()
{
if ($this->isNewJobValid() == true) {
$description = Db::getInstance()->escape(Tools::getValue('description'));
$task = urlencode(Tools::getValue('task'));
$hour = (int)Tools::getValue('hour');
$day = (int)Tools::getValue('day');
$month = (int)Tools::getValue('month');
$day_of_week = (int)Tools::getValue('day_of_week');
$result = Db::getInstance()->getRow('SELECT id_cronjob FROM '._DB_PREFIX_.bqSQL($this->name).'
WHERE `task` = \''.$task.'\' AND `hour` = \''.$hour.'\' AND `day` = \''.$day.'\'
AND `month` = \''.$month.'\' AND `day_of_week` = \''.$day_of_week.'\'');
if ($result == false) {
$id_shop = (int)Context::getContext()->shop->id;
$id_shop_group = (int)Context::getContext()->shop->id_shop_group;
$query = 'INSERT INTO '._DB_PREFIX_.bqSQL($this->name).'
(`description`, `task`, `hour`, `day`, `month`, `day_of_week`, `updated_at`, `active`, `id_shop`, `id_shop_group`)
VALUES (\''.$description.'\', \''.$task.'\', \''.$hour.'\', \''.$day.'\', \''.$month.'\', \''.$day_of_week.'\', NULL, TRUE, '.$id_shop.', '.$id_shop_group.')';
if (($result = Db::getInstance()->execute($query)) != false) {
return $this->setSuccessMessage('The task has been successfully added.');
}
return $this->setErrorMessage('An error happened: the task could not be added.');
}
return $this->setErrorMessage('This cron task already exists.');
}
return false;
}
protected function postProcessUpdateJob()
{
if (Tools::isSubmit('id_cronjob') == false) {
return false;
}
$description = Db::getInstance()->escape(Tools::getValue('description'));
$task = urlencode(Tools::getValue('task'));
$hour = (int)Tools::getValue('hour');
$day = (int)Tools::getValue('day');
$month = (int)Tools::getValue('month');
$day_of_week = (int)Tools::getValue('day_of_week');
$id_cronjob = (int)Tools::getValue('id_cronjob');
// $id_shop = (int)Context::getContext()->shop->id;
// $id_shop_group = (int)Context::getContext()->shop->id_shop_group;
$query = 'UPDATE '._DB_PREFIX_.bqSQL($this->name).'
SET `description` = \''.$description.'\',
`task` = \''.$task.'\',
`hour` = \''.$hour.'\',
`day` = \''.$day.'\',
`month` = \''.$month.'\',
`day_of_week` = \''.$day_of_week.'\'
WHERE `id_cronjob` = \''.(int)$id_cronjob.'\'';
if ((Db::getInstance()->execute($query)) != false) {
return $this->setSuccessMessage('The task has been updated.');
}
return $this->setErrorMessage('The task has not been updated');
}
public function addNewModulesTasks()
{
$crons = Hook::getHookModuleExecList('actionCronJob');
if ($crons == false) {
return false;
}
$id_shop = (int)Context::getContext()->shop->id;
$id_shop_group = (int)Context::getContext()->shop->id_shop_group;
foreach ($crons as $cron) {
$id_module = (int)$cron['id_module'];
$module = Module::getInstanceById((int)$cron['id_module']);
if ($module == false) {
Db::getInstance()->execute('DELETE FROM '._DB_PREFIX_.bqSQL($this->name).' WHERE `id_cronjob` = \''.(int)$cron['id_cronjob'].'\'');
break;
}
$cronjob = (bool)Db::getInstance()->getValue('SELECT `id_cronjob` FROM `'._DB_PREFIX_.bqSQL($this->name).'`
WHERE `id_module` = \''.$id_module.'\' AND `id_shop` = \''.$id_shop.'\' AND `id_shop_group` = \''.$id_shop_group.'\'');
if ($cronjob == false) {
$this->registerModuleHook($id_module);
}
}
}
protected function postProcessUpdateJobOneShot()
{
if (Tools::isSubmit('id_cronjob') == false) {
return false;
}
$id_cronjob = (int)Tools::getValue('id_cronjob');
// $id_shop = (int)Context::getContext()->shop->id;
// $id_shop_group = (int)Context::getContext()->shop->id_shop_group;
Db::getInstance()->execute('UPDATE '._DB_PREFIX_.bqSQL($this->name).'
SET `one_shot` = IF (`one_shot`, 0, 1) WHERE `id_cronjob` = \''.(int)$id_cronjob.'\'');
Tools::redirectAdmin($this->context->link->getAdminLink('AdminModules', false)
.'&configure='.$this->name.'&tab_module='.$this->tab.'&module_name='.$this->name
.'&token='.Tools::getAdminTokenLite('AdminModules'));
}
protected function postProcessUpdateJobStatus()
{
if (Tools::isSubmit('id_cronjob') == false) {
return false;
}
$id_cronjob = (int)Tools::getValue('id_cronjob');
// $id_shop = (int)Context::getContext()->shop->id;
// $id_shop_group = (int)Context::getContext()->shop->id_shop_group;
Db::getInstance()->execute('UPDATE '._DB_PREFIX_.bqSQL($this->name).'
SET `active` = IF (`active`, 0, 1) WHERE `id_cronjob` = \''.(int)$id_cronjob.'\'');
Tools::redirectAdmin($this->context->link->getAdminLink('AdminModules', false)
.'&configure='.$this->name.'&tab_module='.$this->tab.'&module_name='.$this->name
.'&token='.Tools::getAdminTokenLite('AdminModules'));
}
protected function isNewJobValid()
{
if ((Tools::isSubmit('description') == true) &&
(Tools::isSubmit('task') == true) &&
(Tools::isSubmit('hour') == true) &&
(Tools::isSubmit('day') == true) &&
(Tools::isSubmit('month') == true) &&
(Tools::isSubmit('day_of_week') == true)) {
if (self::isTaskURLValid(Tools::getValue('task')) == false) {
return $this->setErrorMessage('The target link you entered is not valid. It should be an absolute URL, on the same domain as your shop.');
}
$hour = Tools::getValue('hour');
$day = Tools::getValue('day');
$month = Tools::getValue('month');
$day_of_week = Tools::getValue('day_of_week');
return $this->isFrequencyValid($hour, $day, $month, $day_of_week);
}
return false;
}
protected function isFrequencyValid($hour, $day, $month, $day_of_week)
{
$success = true;
if ((($hour >= -1) && ($hour < 24)) == false) {
$success &= $this->setErrorMessage('The value you chose for the hour is not valid. It should be between 00:00 and 23:59.');
}
if ((($day >= -1) && ($day <= 31)) == false) {
$success &= $this->setErrorMessage('The value you chose for the day is not valid.');
}
if ((($month >= -1) && ($month <= 31)) == false) {
$success &= $this->setErrorMessage('The value you chose for the month is not valid.');
}
if ((($day_of_week >= -1) && ($day_of_week < 7)) == false) {
$success &= $this->setErrorMessage('The value you chose for the day of the week is not valid.');
}
return $success;
}
protected static function isTaskURLValid($task)
{
$task = urlencode($task);
$shop_url = urlencode(Tools::getShopDomain(true, true).__PS_BASE_URI__);
$shop_url_ssl = urlencode(Tools::getShopDomainSsl(true, true).__PS_BASE_URI__);
return ((strpos($task, $shop_url) === 0) || (strpos($task, $shop_url_ssl) === 0));
}
protected function setErrorMessage($message)
{
$this->_errors[] = $this->l($message);
return false;
}
protected function setSuccessMessage($message)
{
$this->_successes[] = $this->l($message);
return true;
}
protected function setWarningMessage($message)
{
$this->_warnings[] = $this->l($message);
return false;
}
protected function enableWebservice()
{
Configuration::updateValue('CRONJOBS_MODE', 'webservice');
$this->updateWebservice(true);
}
protected function disableWebservice()
{
Configuration::updateValue('CRONJOBS_MODE', 'advanced');
$this->updateWebservice(false);
}
protected function updateWebservice($use_webservice)
{
if ($this->isLocalEnvironment() == true) {
return true;
}
$link = new Link();
$admin_folder = $this->getAdminDir();
if (version_compare(_PS_VERSION_, '1.7', '<') == true) {
$path = Tools::getShopDomainSsl(true, true).__PS_BASE_URI__.$admin_folder;
$cron_url = $path.'/'.$link->getAdminLink('AdminCronJobs', false);
} else {
$cron_url = $link->getAdminLink('AdminCronJobs', false);
}
$webservice_id = Configuration::get('CRONJOBS_WEBSERVICE_ID') ? '/'.Configuration::get('CRONJOBS_WEBSERVICE_ID') : null;
$data = array(
'callback' => $link->getModuleLink($this->name, 'callback'),
'domain' => Tools::getShopDomainSsl(true, true).__PS_BASE_URI__,
'cronjob' => $cron_url.'&token='.Configuration::getGlobalValue('CRONJOBS_EXECUTION_TOKEN'),
'cron_token' => Configuration::getGlobalValue('CRONJOBS_EXECUTION_TOKEN'),
'active' => (bool)$use_webservice
);
$context_options = array('http' => array(
'method' => (is_null($webservice_id) == true) ? 'POST' : 'PUT',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => http_build_query($data)
));
$result = Tools::file_get_contents($this->webservice_url.$webservice_id, false, stream_context_create($context_options));
if ($result != false) {
Configuration::updateValue('CRONJOBS_WEBSERVICE_ID', (int)$result);
}
if (((Tools::isSubmit('install') == true) || (Tools::isSubmit('reset') == true)) && ((bool)$result == false)) {
return true;
} elseif (((Tools::isSubmit('install') == false) || (Tools::isSubmit('reset') == false)) && ((bool)$result == false)) {
return $this->setErrorMessage('An error occurred while trying to contact PrestaShop\'s cron tasks webservice.');
}
if ((bool)$use_webservice == true) {
return $this->setSuccessMessage('Your cron tasks have been successfully added to PrestaShop\'s cron tasks webservice.');
}
return $this->setSuccessMessage('Your cron tasks have been successfully registered using the Advanced mode.');
}
protected function postProcessDeleteCronJob($id_cronjob)
{
$id_cronjob = Tools::getValue('id_cronjob');
$id_module = Db::getInstance()->getValue('SELECT `id_module` FROM '._DB_PREFIX_.bqSQL($this->name).' WHERE `id_cronjob` = \''.(int)$id_cronjob.'\'');
if ((bool)$id_module == false) {
Db::getInstance()->execute('DELETE FROM '._DB_PREFIX_.bqSQL($this->name).' WHERE `id_cronjob` = \''.(int)$id_cronjob.'\'');
} else {
Db::getInstance()->execute('UPDATE '._DB_PREFIX_.bqSQL($this->name).' SET `active` = FALSE WHERE `id_cronjob` = \''.(int)$id_cronjob.'\'');
}
return Tools::redirectAdmin($this->context->link->getAdminLink('AdminModules', false)
.'&configure='.$this->name.'&tab_module='.$this->tab.'&module_name='.$this->name
.'&token='.Tools::getAdminTokenLite('AdminModules'));
}
protected function registerModuleHook($id_module)
{
$module = Module::getInstanceById($id_module);
$id_shop = (int)Context::getContext()->shop->id;
$id_shop_group = (int)Context::getContext()->shop->id_shop_group;
if (is_callable(array($module, 'getCronFrequency')) == true) {
$frequency = $module->getCronFrequency();
$query = 'INSERT INTO '._DB_PREFIX_.bqSQL($this->name).'
(`id_module`, `hour`, `day`, `month`, `day_of_week`, `active`, `id_shop`, `id_shop_group`)
VALUES (\''.$id_module.'\', \''.$frequency['hour'].'\', \''.$frequency['day'].'\',
\''.$frequency['month'].'\', \''.$frequency['day_of_week'].'\',
TRUE, '.$id_shop.', '.$id_shop_group.')';
} else {
$query = 'INSERT INTO '._DB_PREFIX_.bqSQL($this->name).'
(`id_module`, `active`, `id_shop`, `id_shop_group`)
VALUES ('.$id_module.', FALSE, '.$id_shop.', '.$id_shop_group.')';
}
return Db::getInstance()->execute($query);
}
protected function unregisterModuleHook($id_module)
{
return Db::getInstance()->execute('DELETE FROM '._DB_PREFIX_.bqSQL($this->name).' WHERE `id_module` = \''.(int)$id_module.'\'');
}
}