forked from JanBartels/wec_map
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclass.ext_update.php
More file actions
208 lines (191 loc) · 6.8 KB
/
Copy pathclass.ext_update.php
File metadata and controls
208 lines (191 loc) · 6.8 KB
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
<?php
/*
* This file is part of the web-tp3/wec_map.
* For the full copyright and license information, please read the
* LICENSE file that was distributed with this source code.
*/
namespace JBartels\WecMap;
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
/**
* Update class for the extension manager.
*/
class ext_update
{
/**
* Array of flash messages (params) array[][status,title,message]
*
* @var array
*/
protected $messageArray = [];
/**
* @var \TYPO3\CMS\Core\Configuration\FlexForm\FlexFormTools
*/
protected $flexFormTools;
/**
* Mapping for switchable controller actions
* in FlexForms
*
* @var string
*/
protected $mapControlSizeWhere = '%<field index="mapControlSize">%<value index="vDEF">%</value>%</field>%';
/**
* Main update function called by the extension manager.
*
* @return string
*/
public function main()
{
$this->processUpdates();
return $this->generateOutput();
}
/**
* Called by the extension manager to determine if the update menu entry
* should by showed.
*
* @return bool
*/
public function access()
{
// Check for changed options in FlexForms
$queryBuilder = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Database\ConnectionPool::class)
->getQueryBuilderForTable('tt_content');
$queryBuilder
->getRestrictions()->removeAll();
$count = $queryBuilder
->count('*')
->from('tt_content')
->where(
$queryBuilder->expr()->like(
'pi_flexform',
$queryBuilder->createNamedParameter($this->mapControlSizeWhere)
),
$queryBuilder->expr()->like(
'list_type',
$queryBuilder->createNamedParameter('wec_map_pi%%')
)
)
->execute()
->fetchColumn(0);
return $count > 0;
}
/**
* The actual update function. Add your update task in here.
*
* @return void
*/
protected function processUpdates()
{
$this->migrateToNewZoomControlInFlexForms();
}
/**
* Migrate old FlexForm values for Zoom Control to the new one
*
* @return void
*/
protected function migrateToNewZoomControlInFlexForms()
{
$queryBuilder = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Database\ConnectionPool::class)
->getQueryBuilderForTable('tt_content');
$queryBuilder
->getRestrictions()->removeAll();
$statement = $queryBuilder
->select('*')
->from('tt_content')
->where(
$queryBuilder->expr()->like(
'pi_flexform',
$queryBuilder->createNamedParameter($this->mapControlSizeWhere)
),
$queryBuilder->expr()->like(
'list_type',
$queryBuilder->createNamedParameter('wec_map_pi%%')
)
)
->execute();
$count = 0;
while ($row = $statement->fetch()) {
$flexformData = \TYPO3\CMS\Core\Utility\GeneralUtility::xml2array($row['pi_flexform']);
$mapControlSize = $flexformData['data']['mapControls']['lDEF']['mapControlSize']['vDEF'];
unset($flexformData['data']['mapControls']['lDEF']['mapControlSize']);
switch ($mapControlSize) {
case 'large':
case 'small':
case 'zoomonly':
$flexformData['data']['mapControls']['lDEF']['showZoom']['vDEF']='1';
break;
case 'none':
case '':
$flexformData['data']['mapControls']['lDEF']['showZoom']['vDEF']='0';
break;
}
$flexformData = $this->getFlexFormTools()->flexArray2Xml($flexformData, true);
$queryBuilder = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Database\ConnectionPool::class)
->getQueryBuilderForTable('tt_content');
$queryBuilder
->getRestrictions()->removeAll();
$queryBuilder
->update('tt_content')
->where(
$queryBuilder->expr()->eq('uid', $queryBuilder->createNamedParameter($row['uid'], \PDO::PARAM_INT))
)
->set('pi_flexform', $flexformData)
->execute();
$count++;
}
$this->messageArray[] = [
\TYPO3\CMS\Core\Messaging\FlashMessage::OK,
'Migrating flexforms successful',
'We have updated ' . $count . ' related tt_content records'
];
}
/**
* Generates output by using flash messages
*
* @return string
*/
protected function generateOutput()
{
/** @var \TYPO3\CMS\Core\Messaging\FlashMessageService $flashMessageService */
$flashMessageService = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Messaging\FlashMessageService::class);
$flashMessageQueue = $flashMessageService->getMessageQueueByIdentifier();
/** @var \TYPO3\CMS\Fluid\View\StandaloneView $view */
$view = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Fluid\View\StandaloneView::class);
$view->setTemplatePathAndFilename(
\TYPO3\CMS\Core\Utility\GeneralUtility::getFileAbsFileName('EXT:wec_map/Resources/Private/Templates/ExtUpdate.html')
);
foreach ($this->messageArray as $messageItem) {
/** @var \TYPO3\CMS\Core\Messaging\FlashMessage $flashMessage */
$flashMessage = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(
\TYPO3\CMS\Core\Messaging\FlashMessage::class,
$messageItem[2],
$messageItem[1],
$messageItem[0]
);
$flashMessageQueue->enqueue($flashMessage);
}
return $view->render();
}
/**
* Get TYPO3s FlexFormTools
*
* @return FlexFormTools
*/
protected function getFlexFormTools()
{
if (!$this->flexFormTools instanceof FlexFormTools) {
$this->flexFormTools = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Configuration\FlexForm\FlexFormTools::class);
}
return $this->flexFormTools;
}
}