|
1
|
|
|
<?php |
|
2
|
|
|
namespace Aoe\UpdateRefindex\Scheduler; |
|
3
|
|
|
|
|
4
|
|
|
/*************************************************************** |
|
5
|
|
|
* Copyright notice |
|
6
|
|
|
* |
|
7
|
|
|
* (c) 2017 AOE GmbH <[email protected]> |
|
8
|
|
|
* |
|
9
|
|
|
* All rights reserved |
|
10
|
|
|
* |
|
11
|
|
|
* This script is part of the TYPO3 project. The TYPO3 project is |
|
12
|
|
|
* free software; you can redistribute it and/or modify |
|
13
|
|
|
* it under the terms of the GNU General Public License as published by |
|
14
|
|
|
* the Free Software Foundation; either version 2 of the License, or |
|
15
|
|
|
* (at your option) any later version. |
|
16
|
|
|
* |
|
17
|
|
|
* The GNU General Public License can be found at |
|
18
|
|
|
* http://www.gnu.org/copyleft/gpl.html. |
|
19
|
|
|
* |
|
20
|
|
|
* This script is distributed in the hope that it will be useful, |
|
21
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
22
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
23
|
|
|
* GNU General Public License for more details. |
|
24
|
|
|
* |
|
25
|
|
|
* This copyright notice MUST APPEAR in all copies of the script! |
|
26
|
|
|
***************************************************************/ |
|
27
|
|
|
|
|
28
|
|
|
use Aoe\UpdateRefindex\Typo3\RefIndex; |
|
29
|
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility; |
|
30
|
|
|
use TYPO3\CMS\Scheduler\Task\AbstractTask; |
|
31
|
|
|
|
|
32
|
|
|
/** |
|
33
|
|
|
* scheduler-task to update refindex of TYPO3 |
|
34
|
|
|
* |
|
35
|
|
|
* @package update_refindex |
|
36
|
|
|
* @subpackage Scheduler |
|
37
|
|
|
*/ |
|
38
|
|
|
class UpdateRefIndexTask extends AbstractTask |
|
39
|
|
|
{ |
|
40
|
|
|
/** |
|
41
|
|
|
* Boolean flag indicating if all existing tables should be processed |
|
42
|
|
|
* |
|
43
|
|
|
* @var boolean |
|
44
|
|
|
*/ |
|
45
|
|
|
public $updateAllTables = false; |
|
46
|
|
|
|
|
47
|
|
|
/** |
|
48
|
|
|
* Comma separated list of tables |
|
49
|
|
|
* |
|
50
|
|
|
* @var string |
|
51
|
|
|
*/ |
|
52
|
|
|
public $updateRefindexSelectedTables; |
|
53
|
|
|
|
|
54
|
|
|
/** |
|
55
|
|
|
* @var RefIndex |
|
56
|
|
|
*/ |
|
57
|
|
|
private $refIndex; |
|
58
|
|
|
|
|
59
|
|
|
/** |
|
60
|
|
|
* execute the task |
|
61
|
|
|
* |
|
62
|
|
|
* @return boolean |
|
63
|
|
|
*/ |
|
64
|
2 |
|
public function execute() |
|
65
|
|
|
{ |
|
66
|
2 |
|
$shellExitCode = true; |
|
67
|
|
|
try { |
|
68
|
2 |
|
$selectedTables = $this->isUpdateAllTables() ? $this->getRefIndex()->getExistingTables() : $this->getSelectedTables(); |
|
69
|
2 |
|
$this->getRefIndex()->setSelectedTables($selectedTables)->update(); |
|
70
|
2 |
|
} catch (\Exception $e) { |
|
71
|
|
|
$shellExitCode = false; |
|
72
|
|
|
} |
|
73
|
|
|
|
|
74
|
2 |
|
return $shellExitCode; |
|
75
|
|
|
} |
|
76
|
|
|
|
|
77
|
|
|
/** |
|
78
|
|
|
* @return boolean |
|
79
|
|
|
*/ |
|
80
|
2 |
|
public function isUpdateAllTables() |
|
81
|
|
|
{ |
|
82
|
2 |
|
return $this->updateAllTables; |
|
83
|
|
|
} |
|
84
|
|
|
|
|
85
|
|
|
/** |
|
86
|
|
|
* @param boolean $updateAllTables |
|
87
|
|
|
*/ |
|
88
|
1 |
|
public function setUpdateAllTables($updateAllTables) |
|
89
|
|
|
{ |
|
90
|
1 |
|
$this->updateAllTables = $updateAllTables; |
|
91
|
1 |
|
} |
|
92
|
|
|
|
|
93
|
|
|
/** |
|
94
|
|
|
* @return array |
|
95
|
|
|
*/ |
|
96
|
1 |
|
public function getSelectedTables() |
|
97
|
|
|
{ |
|
98
|
1 |
|
return explode(',', $this->updateRefindexSelectedTables); |
|
99
|
|
|
} |
|
100
|
|
|
|
|
101
|
|
|
/** |
|
102
|
|
|
* @param array $selectedTables |
|
103
|
|
|
*/ |
|
104
|
1 |
|
public function setSelectedTables(array $selectedTables) |
|
105
|
|
|
{ |
|
106
|
1 |
|
$this->updateRefindexSelectedTables = implode(',', $selectedTables); |
|
107
|
1 |
|
} |
|
108
|
|
|
|
|
109
|
|
|
/** |
|
110
|
|
|
* @return RefIndex |
|
111
|
|
|
*/ |
|
112
|
|
|
protected function getRefIndex() |
|
113
|
|
|
{ |
|
114
|
|
|
if ($this->refIndex === null) { |
|
115
|
|
|
$this->refIndex = GeneralUtility::makeInstance(RefIndex::class); |
|
116
|
|
|
} |
|
117
|
|
|
|
|
118
|
|
|
return $this->refIndex; |
|
119
|
|
|
} |
|
120
|
|
|
} |
|
121
|
|
|
|