1
|
|
|
<?php |
2
|
|
|
namespace Aoe\FeatureFlag\Command; |
3
|
|
|
|
4
|
|
|
/*************************************************************** |
5
|
|
|
* Copyright notice |
6
|
|
|
* |
7
|
|
|
* (c) 2021 AOE GmbH <[email protected]> |
8
|
|
|
* |
9
|
|
|
* All rights reserved |
10
|
|
|
* |
11
|
|
|
* This script is part of the TYPO3 project. The TYPO3 project is |
12
|
|
|
* free software; you can redistribute it and/or modify |
13
|
|
|
* it under the terms of the GNU General Public License as published by |
14
|
|
|
* the Free Software Foundation; either version 3 of the License, or |
15
|
|
|
* (at your option) any later version. |
16
|
|
|
* |
17
|
|
|
* The GNU General Public License can be found at |
18
|
|
|
* http://www.gnu.org/copyleft/gpl.html. |
19
|
|
|
* |
20
|
|
|
* This script is distributed in the hope that it will be useful, |
21
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
22
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
23
|
|
|
* GNU General Public License for more details. |
24
|
|
|
* |
25
|
|
|
* This copyright notice MUST APPEAR in all copies of the script! |
26
|
|
|
***************************************************************/ |
27
|
|
|
|
28
|
|
|
use Aoe\FeatureFlag\Service\Exception\FeatureNotFoundException; |
29
|
|
|
use Aoe\FeatureFlag\Service\FeatureFlagService; |
30
|
|
|
use Symfony\Component\Console\Command\Command; |
31
|
|
|
use Symfony\Component\Console\Style\SymfonyStyle; |
32
|
|
|
use TYPO3\CMS\Extbase\Persistence\Exception\IllegalObjectTypeException; |
33
|
|
|
|
34
|
|
|
abstract class AbstractCommand extends Command |
35
|
|
|
{ |
36
|
|
|
/** |
37
|
|
|
* @var FeatureFlagService |
38
|
|
|
*/ |
39
|
|
|
protected $featureFlagService; |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* @var SymfonyStyle |
43
|
|
|
*/ |
44
|
|
|
protected $inputOutput; |
45
|
|
|
|
46
|
|
|
public function __construct(FeatureFlagService $featureFlagService) |
47
|
|
|
{ |
48
|
|
|
parent::__construct(); |
49
|
|
|
$this->featureFlagService = $featureFlagService; |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
/** |
53
|
|
|
* Enable or disable features. $features can be a comma-separated list of feature names |
54
|
|
|
* @param String $features |
55
|
|
|
* @param boolean $enabled |
56
|
|
|
* @throws FeatureNotFoundException |
57
|
|
|
* @throws IllegalObjectTypeException |
58
|
|
|
*/ |
59
|
|
|
protected function setFeatureStatus(string $features, bool $enabled): void |
60
|
|
|
{ |
61
|
|
|
$features = array_map('trim', explode(',', $features)); |
62
|
|
|
foreach ($features as $feature) { |
63
|
|
|
$info = ($enabled === true) ? 'Activate' : 'Deactivate'; |
64
|
|
|
$this->showInfo($info . ' feature: ' . $feature); |
65
|
|
|
$this->featureFlagService->updateFeatureFlag($feature, $enabled); |
66
|
|
|
} |
67
|
|
|
$this->showInfo('Update visibility of records (e.g. content elements), which are connected with features'); |
68
|
|
|
$this->featureFlagService->flagEntries(); |
69
|
|
|
} |
70
|
|
|
|
71
|
|
|
/** |
72
|
|
|
* @param string $info |
73
|
|
|
*/ |
74
|
|
|
protected function showInfo(string $info): void |
75
|
|
|
{ |
76
|
|
|
$this->inputOutput->block($info, 'INFO', 'fg=green', '', false); |
77
|
|
|
} |
78
|
|
|
} |
79
|
|
|
|