-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathclass.ext_update.php
More file actions
329 lines (302 loc) · 11.5 KB
/
Copy pathclass.ext_update.php
File metadata and controls
329 lines (302 loc) · 11.5 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
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
<?php
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
{
const FOLDER_ContentUploads = '_migrated/wecmap_resources';
/**
* Array of flash messages (params) array[][status,title,message]
*
* @var array
*/
protected $messageArray = array();
/**
* @var \TYPO3\CMS\Core\Configuration\FlexForm\FlexFormTools
*/
protected $flexFormTools;
/**
* WHERE-clause for zoom in PI-Flexform
*
* @var string
*/
protected $mapControlSizeWhere = '%<field index="mapControlSize">%<value index="vDEF">%</value>%</field>%';
/**
* WHERE-clause for kml in PI-Flexform
*
* @var string
*/
protected $mapKmlWhere = '%<field index="kml">%<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()
{
return $this->accessValueInFlexForms( $this->mapControlSizeWhere )
|| $this->accessValueInFlexForms( $this->mapKmlWhere )
;
}
/**
* Check if certain flexform-values are set in plugin
*
* @param string
* @return bool
*/
protected function accessValueInFlexForms( $flexformWhere )
{
// 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( $flexformWhere )
),
$queryBuilder->expr()->like(
'list_type',
$queryBuilder->createNamedParameter( 'wec_map_pi%%' )
)
)
->execute()
->fetchColumn(0);
$queryBuilder = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance( \TYPO3\CMS\Core\Database\ConnectionPool::class )
->getQueryBuilderForTable( 'tt_content' );
$queryBuilder
->getRestrictions()->removeAll();
$sql = $queryBuilder
->count('*')
->from( 'tt_content' )
->where(
$queryBuilder->expr()->like(
'pi_flexform',
$queryBuilder->createNamedParameter( $flexformWhere )
),
$queryBuilder->expr()->like(
'list_type',
$queryBuilder->createNamedParameter( 'wec_map_pi%%' )
)
)
->getSQL();
\TYPO3\CMS\Core\Utility\DebugUtility::debug( $flexformWhere );
\TYPO3\CMS\Core\Utility\DebugUtility::debug( $sql );
\TYPO3\CMS\Core\Utility\DebugUtility::debug( $count );
return $count > 0;
}
/**
* The actual update function. Add your update task in here.
*
* @return void
*/
protected function processUpdates()
{
$this->migrateToNewZoomControlInFlexForms();
$this->migrateKMLToFALInFlexForms();
}
/**
* 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[] = array(
\TYPO3\CMS\Core\Messaging\FlashMessage::OK,
'Migrating mapControls successful',
'We have updated '.$count.' related tt_content records'
);
}
/**
* Migrate old FlexForm values for kml-overlays to FAL
*
* @return void
*/
protected function migrateKMLToFALInFlexForms()
{
# Set up FAL
$fileadminDirectory = rtrim($GLOBALS['TYPO3_CONF_VARS']['BE']['fileadminDir'], '/') . '/';
/** @var $storageRepository \TYPO3\CMS\Core\Resource\StorageRepository */
$storageRepository = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Core\\Resource\\StorageRepository');
$storages = $storageRepository->findAll();
foreach ($storages as $storage) {
$storageRecord = $storage->getStorageRecord();
$configuration = $storage->getConfiguration();
$isLocalDriver = $storageRecord['driver'] === 'Local';
$isOnFileadmin = !empty($configuration['basePath']) && \TYPO3\CMS\Core\Utility\GeneralUtility::isFirstPartOfStr($configuration['basePath'], $fileadminDirectory);
if ($isLocalDriver && $isOnFileadmin) {
$storage = $storage;
break;
}
}
if (!isset($storage)) {
throw new \RuntimeException('Local default storage could not be initialized - might be due to missing sys_file* tables.');
}
# Create folder if neccessary
if (!$storage->hasFolder(self::FOLDER_ContentUploads)) {
$storage->createFolder(self::FOLDER_ContentUploads, $storage->getRootLevelFolder());
}
$fileFactory = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Core\\Resource\\ResourceFactory');
$fileIndexRepository = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Core\\Resource\\Index\\FileIndexRepository');
$targetDirectory = PATH_site . $fileadminDirectory . self::FOLDER_ContentUploads . '/';
$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->mapKmlWhere )
),
$queryBuilder->expr()->like(
'list_type',
$queryBuilder->createNamedParameter( 'wec_map_pi%%' )
)
)
->execute();
$count = 0;
return;
while( $row = $statement->fetch() ) {
$flexformData = \TYPO3\CMS\Core\Utility\GeneralUtility::xml2array($row['pi_flexform']);
$uidExternalResource = $flexformData['data']['default']['lDEF']['kml']['vDEF'];
unset( $flexformData['data']['default']['lDEF']['kml']);
$flexformData['data']['default']['lDEF']['kmlfal']['vDEF']='4711';
$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[] = array(
\TYPO3\CMS\Core\Messaging\FlashMessage::OK,
'Migrating kml-resources 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;
}
}