forked from TYPO3-Solr/ext-solr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
class.ext_update.php
103 lines (94 loc) · 2.77 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
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
<?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!
*/
use ApacheSolrForTypo3\Solr\Migrations\RemoveSiteFromScheduler;
use TYPO3\CMS\Core\Messaging\FlashMessage;
use TYPO3\CMS\Core\Messaging\FlashMessageRendererResolver;
use TYPO3\CMS\Core\Utility\GeneralUtility;
/**
* Update class for the extension manager.
*
* @author Steffen Ritter <info@rs-websystems.de>
*
* @noinspection PhpMultipleClassDeclarationsInspection
*/
class ext_update
{
/**
* Array of flash messages (params) array[][status,title,message]
*
* @var array
*/
protected $messages = [];
/**
* @var \ApacheSolrForTypo3\Solr\Migrations\Migration[]
*/
protected $migrators = [];
/**
* Constructor initializing all migrations
*/
public function __construct()
{
$this->migrators[] = new RemoveSiteFromScheduler();
}
/**
* Called by the extension manager to determine if the update menu entry
* should by showed.
*
* @return bool
*/
public function access()
{
foreach ($this->migrators as $migration) {
if ($migration->isNeeded()) {
return true;
}
}
return false;
}
/**
* Main update function called by the extension manager.
*
* @return string
*/
public function main()
{
foreach ($this->migrators as $migration) {
if ($migration->isNeeded()) {
try {
$this->messages[] = $migration->process();
} catch (\Throwable $e) {
$this->messages[] = [FlashMessage::ERROR, 'Execution failed', $e->getMessage()];
}
}
}
return $this->generateOutput();
}
/**
* Generates output by using flash messages
*
* @return string
*/
protected function generateOutput()
{
$flashMessages = [];
foreach ($this->messages as $messageItem) {
/** @var \TYPO3\CMS\Core\Messaging\FlashMessage $flashMessage */
$flashMessages[] = GeneralUtility::makeInstance(FlashMessage::class, $messageItem[2], $messageItem[1], $messageItem[0]);
}
/** @var $resolver FlashMessageRendererResolver */
$resolver = GeneralUtility::makeInstance(FlashMessageRendererResolver::class);
$renderer = $resolver->resolve();
return $renderer->render($flashMessages);
}
}