-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRandomdataService.php
More file actions
executable file
·511 lines (444 loc) · 16.6 KB
/
Copy pathRandomdataService.php
File metadata and controls
executable file
·511 lines (444 loc) · 16.6 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
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
<?php
namespace WIND\Randomdata\Service;
/*
* 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!
*/
use Faker\Factory;
use Faker\Generator;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use WIND\Randomdata\Event\RandomdataEvent;
use TYPO3\CMS\Core\Database\ConnectionPool;
use TYPO3\CMS\Extbase\Object\ObjectManager;
use TYPO3\CMS\Core\DataHandling\DataHandler;
use TYPO3\CMS\Core\Database\Query\QueryBuilder;
use WIND\Randomdata\Provider\ProviderInterface;
use WIND\Randomdata\Exception\ProviderException;
use TYPO3\CMS\Core\EventDispatcher\EventDispatcher;
use WIND\Randomdata\Exception\DataHandlerException;
use Symfony\Component\Console\Output\OutputInterface;
use WIND\Randomdata\Exception\UnknownActionException;
use TYPO3\CMS\Core\Configuration\Loader\YamlFileLoader;
use WIND\Randomdata\Exception\PidNotFoundForItemException;
use WIND\Randomdata\Exception\TableNotFoundInTcaException;
use WIND\Randomdata\Exception\CountNotFoundForItemException;
use WIND\Randomdata\Exception\FieldsNotFoundForItemException;
use TYPO3\CMS\Extbase\SignalSlot\Exception\InvalidSlotException;
use WIND\Randomdata\Exception\ConfigurationFileNotFoundException;
use TYPO3\CMS\Extbase\SignalSlot\Exception\InvalidSlotReturnException;
/**
* Randomdata Service
*/
class RandomdataService
{
/**
* @var array
*/
protected $configuration;
/**
* @var OutputInterface
*/
protected $output;
/**
* @var DataHandler
*/
protected $dataHandler;
/**
* @var Generator
*/
protected $faker;
/**
* @var ObjectManager
*/
protected $objectManager;
/**
* @var array
*/
protected $addToDataMap = [];
/**
* @var array
*/
protected $addToCmdMap = [];
/**
* @var int
*/
protected $newUid = 0;
/**
* Generate random data
*
* @param string $configurationFile
* @param string $locale
* @param OutputInterface $output
* @return void
* @throws \RuntimeException
* @throws ConfigurationFileNotFoundException
* @throws FieldsNotFoundForItemException
* @throws PidNotFoundForItemException
* @throws TableNotFoundInTcaException
* @throws UnknownActionException
* @throws CountNotFoundForItemException
* @throws DataHandlerException
* @throws ProviderException
* @throws InvalidSlotException
* @throws InvalidSlotReturnException
*/
public function generate($configurationFile, $locale, $output = null)
{
$this->output = $output;
$this->dataHandler = GeneralUtility::makeInstance(DataHandler::class);
$this->faker = Factory::create($locale);
$this->outputWithoutNewLine('Loading configuration file "' . $configurationFile . '" ...');
try {
$this->loadConfigurationFile($configurationFile);
} catch(\Throwable $e) {
$this->output(' <fg=red>FAIL</>');
throw $e;
}
$this->output(' <fg=green>OK</>');
foreach ($this->configuration as $configurationKey => $itemConfiguration) {
$this->generateItem($configurationKey, $itemConfiguration);
}
}
/**
* Add to data map
*
* @param array $dataMap
* @return void
*/
public function addToDataMap(array $dataMap)
{
$this->addToDataMap = array_merge_recursive($this->addToDataMap, $dataMap);
}
/**
* Add to cmd map
*
* @param array $cmdMap
* @return void
*/
public function addToCmdMap(array $cmdMap)
{
$this->addToCmdMap = array_merge_recursive($this->addToCmdMap, $cmdMap);
}
/**
* Get new uid
*
* @return string
*/
public function getNewUid()
{
$this->newUid++;
return 'NEW' . $this->newUid;
}
/**
* Load configuration file
*
* @param string $configurationFile
* @return void
* @throws ConfigurationFileNotFoundException
* @throws \RuntimeException
*/
protected function loadConfigurationFile($configurationFile)
{
$configurationFile = GeneralUtility::getFileAbsFileName(realpath($configurationFile));
if (!is_file($configurationFile)) {
throw new ConfigurationFileNotFoundException('Configuration file "' . $configurationFile . '" not found', 1554378907);
}
/** @var YamlFileLoader $yamlLoader */
$yamlLoader = GeneralUtility::makeInstance(YamlFileLoader::class);
$this->configuration = $yamlLoader->load($configurationFile);
}
/**
* Generate random data for item
*
* @param string $configurationKey
* @param array $itemConfiguration
* @throws FieldsNotFoundForItemException
* @throws PidNotFoundForItemException
* @throws TableNotFoundInTcaException
* @throws UnknownActionException
* @throws CountNotFoundForItemException
* @throws DataHandlerException
* @throws ProviderException
* @throws InvalidSlotException
* @throws InvalidSlotReturnException
*/
protected function generateItem($configurationKey, array $itemConfiguration)
{
$this->outputWithoutNewLine('Generating data for item "' . $configurationKey . '" ...');
try {
$table = $this->getItemTable($configurationKey, $itemConfiguration);
$pid = $this->getItemPid($configurationKey, $itemConfiguration);
$action = $this->getItemAction($configurationKey, $itemConfiguration);
$fields = $this->getItemFields($configurationKey, $itemConfiguration);
switch ($action) {
case 'insert':
$this->generateAndInsertRecords($configurationKey, $table, $pid, $fields, $itemConfiguration);
break;
case 'replace':
$this->generateAndReplaceRecords($configurationKey, $table, $pid, $fields, $itemConfiguration);
break;
default:
$this->dispatchSignalSlot('generateItemCustomAction', [$configurationKey, $table, $pid, $action, $fields, $itemConfiguration, $this]);
break;
}
} catch(\Throwable $e) {
$this->output(' <fg=red>FAIL</>');
throw $e;
}
$this->output(' <fg=green>OK</>');
}
/**
* Get item table
*
* @param string $configurationKey
* @param array $itemConfiguration
* @return string
* @throws TableNotFoundInTcaException
*/
protected function getItemTable($configurationKey, array $itemConfiguration)
{
$table = $this->getItemConfigurationValue($itemConfiguration, 'table');
if (empty($table)) {
$table = $configurationKey;
}
if (!isset($GLOBALS['TCA'][$table])) {
throw new TableNotFoundInTcaException('Table "' . $table . '" not found in TCA for item "' . $configurationKey . '"', 1554379741);
}
return $table;
}
/**
* Get item PID
*
* @param string $configurationKey
* @param array $itemConfiguration
* @return int
* @throws PidNotFoundForItemException
*/
protected function getItemPid($configurationKey, array $itemConfiguration)
{
$pid = $this->getItemConfigurationValue($itemConfiguration, 'pid');
if ($pid === null) {
throw new PidNotFoundForItemException('PID not set in configuration for item "' . $configurationKey . '"', 1554380141);
}
$pid = (int)$pid;
if ($pid > 0) {
/** @var QueryBuilder $pageQueryBuilder */
$pageQueryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('pages');
$page = $pageQueryBuilder->count('*')->from('pages')->where(
$pageQueryBuilder->expr()->eq('uid', $pid)
)->executeQuery()->fetchColumn(0);
if ($page !== 1) {
throw new PidNotFoundForItemException('Page with uid "' . $pid . '" not found in database for item "' . $configurationKey . '"', 1554380475);
}
}
return $pid;
}
/**
* Get item action
*
* @param string $configurationKey
* @param array $itemConfiguration
* @return string
* @throws UnknownActionException
*/
protected function getItemAction($configurationKey, array $itemConfiguration)
{
$action = $this->getItemConfigurationValue($itemConfiguration, 'action');
if (empty($action)) {
$action = 'insert';
}
if (!in_array($action, $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['randomdata']['allowedActions'])) {
throw new UnknownActionException('Unknown action "' . $action . '" for item "' . $configurationKey . '"', 1554381398);
}
return $action;
}
/**
* Get item fields
*
* @param string $configurationKey
* @param array $itemConfiguration
* @return array
* @throws FieldsNotFoundForItemException
*/
protected function getItemFields($configurationKey, array $itemConfiguration)
{
$fields = $this->getItemConfigurationValue($itemConfiguration, 'fields');
if (empty($fields) || !is_array($fields)) {
throw new FieldsNotFoundForItemException('Fields not set in configuration for item "' . $configurationKey . '"', 1554381915);
}
return $fields;
}
/**
* Get item configuration
*
* @param array $itemConfiguration
* @param string $key
* @return mixed
*/
protected function getItemConfigurationValue(array $itemConfiguration, $key)
{
return isset($itemConfiguration[$key]) ? $itemConfiguration[$key] : null;
}
/**
* Insert new records with random data for item
*
* @param string $configurationKey
* @param string $table
* @param int $pid
* @param array $fields
* @param array $itemConfiguration
* @return void
* @throws CountNotFoundForItemException
* @throws DataHandlerException
* @throws ProviderException
*/
protected function generateAndInsertRecords($configurationKey, $table, $pid, array $fields, array $itemConfiguration)
{
$count = (int)$this->getItemConfigurationValue($itemConfiguration, 'count');
if (empty($count)) {
throw new CountNotFoundForItemException('Count not set in configuration for item "' . $configurationKey . '"', 1554383433);
}
$dataMap = [$table => []];
$this->addToDataMap = [];
$this->addToCmdMap = [];
for ($i = 1; $i <= $count; $i++) {
$recordUid = $this->getNewUid();
$data = [
'pid' => $pid,
];
foreach ($fields as $field => $fieldConfiguration) {
$fieldConfiguration['__table'] = $table;
$fieldConfiguration['__pid'] = $pid;
$fieldConfiguration['__field'] = $field;
$fieldConfiguration['__recordUid'] = $recordUid;
$data[$field] = $this->generateData($configurationKey, $field, $fieldConfiguration, $pid, $data);
}
$dataMap[$table][$recordUid] = $data;
}
if (!empty($this->addToDataMap)) {
$dataMap = array_merge_recursive($dataMap, $this->addToDataMap);
}
$this->dataHandler->start($dataMap, $this->addToCmdMap);
$this->dataHandler->process_datamap();
if (!empty($this->dataHandler->errorLog)) {
throw new DataHandlerException(count($this->dataHandler->errorLog) . ' errors handling data for item "' . $configurationKey . '". First error: ' . $this->dataHandler->errorLog[0], 1540909750);
}
}
/**
* Replace records with random data for item
*
* @param string $configurationKey
* @param string $table
* @param int $pid
* @param array $fields
* @param array $itemConfiguration
* @return void
* @throws DataHandlerException
* @throws ProviderException
*/
protected function generateAndReplaceRecords($configurationKey, $table, $pid, array $fields, array $itemConfiguration)
{
/** @var QueryBuilder $queryBuilder */
$queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable($table);
$records = $queryBuilder->select('uid')->from($table)->where($queryBuilder->expr()->eq('pid', $pid))->executeQuery()->fetchAllAssociative();
if (!empty($records)) {
$dataMap = [$table => []];
$this->addToDataMap = [];
$this->addToCmdMap = [];
foreach ($records as $record) {
$data = [];
foreach ($fields as $field => $fieldConfiguration) {
$fieldConfiguration['__table'] = $table;
$fieldConfiguration['__pid'] = $pid;
$fieldConfiguration['__field'] = $field;
$fieldConfiguration['__recordUid'] = $record['uid'];
$data[$field] = $this->generateData($configurationKey, $field, $fieldConfiguration, $pid);
}
$dataMap[$table][$record['uid']] = $data;
}
if (!empty($this->addToDataMap)) {
$dataMap = array_merge_recursive($dataMap, $this->addToDataMap);
}
$this->dataHandler->start($dataMap, $this->addToCmdMap);
$this->dataHandler->process_cmdmap();
$this->dataHandler->process_datamap();
if (!empty($this->dataHandler->errorLog)) {
throw new DataHandlerException(count($this->dataHandler->errorLog) . ' errors handling data for item "' . $configurationKey . '". First error: ' . $this->dataHandler->errorLog[0], 1554457506);
}
}
}
/**
* Generate random data
*
* @param string $configurationKey
* @param string $field
* @param array $fieldConfiguration
* @param int $pid
* @param $previousFieldsData
* @return mixed
* @throws ProviderException
*/
public function generateData($configurationKey, $field, array $fieldConfiguration, $pid, array $previousFieldsData = [])
{
// Public so it can be used in signal slots
$provider = $this->getItemConfigurationValue($fieldConfiguration, 'provider');
if (empty($provider)) {
throw new ProviderException('Provider not set for field "' . $field . '" in item "' . $configurationKey . '"', 1554386438);
}
/** @var ProviderInterface $providerClass */
if (strpos($provider, '\\') === 0) {
$providerClass = $provider;
} else {
$providerClass = '\\WIND\\Randomdata\\Provider\\' . $provider . 'Provider';
}
if (!class_exists($providerClass)) {
throw new ProviderException('Provider "' . $provider . '" does not exist for field "' . $field . '" in item "' . $configurationKey . '"', 1554387194);
} elseif (!in_array(ProviderInterface::class, class_implements($providerClass))) {
throw new ProviderException('Provider "' . $provider . '" does not implement ' . ProviderInterface::class . ' for field "' . $field . '" in item "' . $configurationKey . '"', 1554387209);
}
if ($provider === 'Relation' && (!isset($fieldConfiguration['pid']) || $fieldConfiguration['pid'] === 'same')) {
$fieldConfiguration['pid'] = $pid;
}
return $providerClass::generate($this->faker, $fieldConfiguration, $this, $previousFieldsData);
}
/**
* Dispatch signal slot
*
* @param string $name
* @param array $arguments
* @throws InvalidSlotException
* @throws InvalidSlotReturnException
* @return void
*/
protected function dispatchSignalSlot($name, array $arguments)
{
$eventDispatcher = GeneralUtility::makeInstance(EventDispatcher::class);
$eventDispatcher->dispatch(new RandomdataEvent($name, $arguments));
}
/**
* Output message
*
* @param string $message
* @return void
*/
protected function output($message)
{
if (!empty($this->output)) {
$this->output->writeln($message);
}
}
protected function outputWithoutNewLine($message)
{
if (!empty($this->output)) {
$this->output->write($message);
}
}
}