|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* @copyright Copyright (c) 2019 Julius Härtl <[email protected]> |
|
4
|
|
|
* |
|
5
|
|
|
* @author Julius Härtl <[email protected]> |
|
6
|
|
|
* |
|
7
|
|
|
* @license GNU AGPL version 3 or any later version |
|
8
|
|
|
* |
|
9
|
|
|
* This program is free software: you can redistribute it and/or modify |
|
10
|
|
|
* it under the terms of the GNU Affero General Public License as |
|
11
|
|
|
* published by the Free Software Foundation, either version 3 of the |
|
12
|
|
|
* License, or (at your option) any later version. |
|
13
|
|
|
* |
|
14
|
|
|
* This program is distributed in the hope that it will be useful, |
|
15
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
16
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
17
|
|
|
* GNU Affero General Public License for more details. |
|
18
|
|
|
* |
|
19
|
|
|
* You should have received a copy of the GNU Affero General Public License |
|
20
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
21
|
|
|
* |
|
22
|
|
|
*/ |
|
23
|
|
|
|
|
24
|
|
|
|
|
25
|
|
|
namespace OCA\RichDocuments\Command; |
|
26
|
|
|
|
|
27
|
|
|
use OCA\Richdocuments\AppConfig; |
|
28
|
|
|
use OCA\Richdocuments\Service\CapabilitiesService; |
|
29
|
|
|
use OCA\Richdocuments\TemplateManager; |
|
30
|
|
|
use OCA\Richdocuments\WOPI\DiscoveryManager; |
|
31
|
|
|
use OCA\Richdocuments\WOPI\Parser; |
|
32
|
|
|
use Symfony\Component\Console\Command\Command; |
|
33
|
|
|
use Symfony\Component\Console\Input\InputArgument; |
|
34
|
|
|
use Symfony\Component\Console\Input\InputInterface; |
|
35
|
|
|
use Symfony\Component\Console\Output\OutputInterface; |
|
36
|
|
|
|
|
37
|
|
|
class ActivateConfig extends Command { |
|
38
|
|
|
|
|
39
|
|
|
/** @var AppConfig */ |
|
40
|
|
|
private $appConfig; |
|
41
|
|
|
|
|
42
|
|
|
/** @var CapabilitiesService */ |
|
43
|
|
|
private $capabilitiesService; |
|
44
|
|
|
|
|
45
|
|
|
/** @var DiscoveryManager */ |
|
46
|
|
|
private $discoveryManager; |
|
47
|
|
|
|
|
48
|
|
|
/** @var Parser */ |
|
49
|
|
|
private $wopiParser; |
|
50
|
|
|
|
|
51
|
|
|
public function __construct(AppConfig $appConfig, CapabilitiesService $capabilitiesService, DiscoveryManager $discoveryManager, Parser $wopiParser) { |
|
52
|
|
|
parent::__construct(); |
|
53
|
|
|
|
|
54
|
|
|
$this->appConfig = $appConfig; |
|
55
|
|
|
$this->capabilitiesService = $capabilitiesService; |
|
56
|
|
|
$this->discoveryManager = $discoveryManager; |
|
57
|
|
|
$this->wopiParser = $wopiParser; |
|
58
|
|
|
} |
|
59
|
|
|
|
|
60
|
|
|
protected function configure() { |
|
61
|
|
|
$this |
|
62
|
|
|
->setName('richdocuments:activate-config') |
|
63
|
|
|
->setDescription('Activate config changes'); |
|
64
|
|
|
} |
|
65
|
|
|
|
|
66
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) { |
|
67
|
|
|
try { |
|
68
|
|
|
$this->discoveryManager->refetch(); |
|
69
|
|
|
$this->capabilitiesService->clear(); |
|
70
|
|
|
$capaUrlSrc = $this->wopiParser->getUrlSrc('Capabilities'); |
|
71
|
|
|
if (is_array($capaUrlSrc) && $capaUrlSrc['action'] === 'getinfo') { |
|
72
|
|
|
$public_wopi_url = str_replace('/hosting/capabilities', '', $capaUrlSrc['urlsrc']); |
|
73
|
|
|
if ($public_wopi_url !== null) { |
|
74
|
|
|
$this->appConfig->setAppValue('public_wopi_url', $public_wopi_url); |
|
75
|
|
|
} |
|
76
|
|
|
} |
|
77
|
|
|
$this->capabilitiesService->clear(); |
|
78
|
|
|
$this->capabilitiesService->refetch(); |
|
79
|
|
|
$output->writeln('<info>Activated any config changes</info>'); |
|
80
|
|
|
} catch (\Exception $e) { |
|
81
|
|
|
$output->writeln('<error>Failed to activate any config changes</error>'); |
|
82
|
|
|
$output->writeln($e->getMessage()); |
|
83
|
|
|
$output->writeln($e->getTraceAsString()); |
|
84
|
|
|
} |
|
85
|
|
|
} |
|
86
|
|
|
|
|
87
|
|
|
} |
|
88
|
|
|
|