forked from kitodo/kitodo-publication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
class.ext_update.php
66 lines (52 loc) · 2.12 KB
/
class.ext_update.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
<?php
/*
* 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!
*/
if (!defined('TYPO3_MODE')) {
die('Access denied.');
}
class ext_update {
public function access() {
return TRUE;
}
public function main() {
$objectManager = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\\CMS\\Extbase\Object\\ObjectManager');
$clientRepository = $objectManager->get("EWW\\Dpf\\Domain\\Repository\\ClientRepository");
$processNumberGenerator = $objectManager->get("EWW\\Dpf\\Services\\ProcessNumber\\ProcessNumberGenerator");
$documentRepository = $objectManager->get("EWW\\Dpf\\Domain\\Repository\\DocumentRepository");
$documents = $documentRepository->findDocumentsWithoutProcessNumber();
if (count($documents) == 0) return;
foreach ($documents as $document) {
$pid = $document->getPid();
$clients = $clientRepository->findAllByPid($pid);
if ($clients) {
if (count($clients) != 1) {
throw new \Exception('Invalid number of client records for pid: '.$pid);
}
}
}
foreach ($documents as $document) {
$pid = $document->getPid();
$clients = $clientRepository->findAllByPid($pid);
if ($clients) {
if (count($clients) == 1) {
$client = $clients->getFirst();
$ownerId = $client->getOwnerId();
$processNumber = $processNumberGenerator->getProcessNumber($ownerId);
$document->setProcessNumber($processNumber);
$documentRepository->update($document);
}
}
}
return "Das Update wurde erfolgreich ausgeführt.";
}
}