1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* @copyright Copyright (c) 2017 Bjoern Schiessle <[email protected]> |
4
|
|
|
* |
5
|
|
|
* @license GNU AGPL version 3 or any later version |
6
|
|
|
* |
7
|
|
|
* This program is free software: you can redistribute it and/or modify |
8
|
|
|
* it under the terms of the GNU Affero General Public License as |
9
|
|
|
* published by the Free Software Foundation, either version 3 of the |
10
|
|
|
* License, or (at your option) any later version. |
11
|
|
|
* |
12
|
|
|
* This program is distributed in the hope that it will be useful, |
13
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
14
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15
|
|
|
* GNU Affero General Public License for more details. |
16
|
|
|
* |
17
|
|
|
* You should have received a copy of the GNU Affero General Public License |
18
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
19
|
|
|
* |
20
|
|
|
*/ |
21
|
|
|
|
22
|
|
|
|
23
|
|
|
namespace OC\Repair\NC13; |
24
|
|
|
|
25
|
|
|
|
26
|
|
|
use OC\Files\AppData\Factory; |
27
|
|
|
use OCP\Files\IRootFolder; |
28
|
|
|
use OCP\Files\SimpleFS\ISimpleFolder; |
29
|
|
|
use OCP\IConfig; |
30
|
|
|
use OCP\Migration\IOutput; |
31
|
|
|
use OCP\Migration\IRepairStep; |
32
|
|
|
|
33
|
|
|
class RepairIdentityProofKeyFolders implements IRepairStep { |
34
|
|
|
|
35
|
|
|
/** @var IConfig */ |
36
|
|
|
private $config; |
37
|
|
|
|
38
|
|
|
/** @var \OC\Files\AppData\AppData */ |
39
|
|
|
private $appDataIdentityProof; |
40
|
|
|
|
41
|
|
|
/** @var IRootFolder */ |
42
|
|
|
private $rootFolder; |
43
|
|
|
|
44
|
|
|
/** @var string */ |
45
|
|
|
private $identityProofDir; |
46
|
|
|
|
47
|
|
|
/** |
48
|
|
|
* RepairIdentityProofKeyFolders constructor. |
49
|
|
|
* |
50
|
|
|
* @param IConfig $config |
51
|
|
|
* @param Factory $appDataFactory |
52
|
|
|
* @param IRootFolder $rootFolder |
53
|
|
|
*/ |
54
|
|
|
public function __construct(IConfig $config, Factory $appDataFactory, IRootFolder $rootFolder) { |
55
|
|
|
$this->config = $config; |
56
|
|
|
$this->appDataIdentityProof = $appDataFactory->get('identityproof'); |
57
|
|
|
$this->rootFolder = $rootFolder; |
58
|
|
|
|
59
|
|
|
$instanceId = $this->config->getSystemValue('instanceid', null); |
60
|
|
|
if ($instanceId === null) { |
61
|
|
|
throw new \RuntimeException('no instance id!'); |
62
|
|
|
} |
63
|
|
|
$this->identityProofDir = 'appdata_' . $instanceId . '/identityproof/'; |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
/** |
67
|
|
|
* Returns the step's name |
68
|
|
|
* |
69
|
|
|
* @return string |
70
|
|
|
* @since 9.1.0 |
71
|
|
|
*/ |
72
|
|
|
public function getName() { |
73
|
|
|
return "Rename folder with user specific keys"; |
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
/** |
77
|
|
|
* Run repair step. |
78
|
|
|
* Must throw exception on error. |
79
|
|
|
* |
80
|
|
|
* @param IOutput $output |
81
|
|
|
* @throws \Exception in case of failure |
82
|
|
|
* @since 9.1.0 |
83
|
|
|
*/ |
84
|
|
View Code Duplication |
public function run(IOutput $output) { |
85
|
|
|
$versionFromBeforeUpdate = $this->config->getSystemValue('version', '0.0.0'); |
86
|
|
|
if (version_compare($versionFromBeforeUpdate, '13.0.0.1', '<=')) { |
87
|
|
|
$count = $this->repair(); |
88
|
|
|
$output->info('Repaired ' . $count . ' folders'); |
89
|
|
|
} |
90
|
|
|
} |
91
|
|
|
|
92
|
|
|
/** |
93
|
|
|
* rename all dirs with user specific keys to 'user-uid' |
94
|
|
|
* |
95
|
|
|
* @return int |
96
|
|
|
*/ |
97
|
|
|
private function repair() { |
98
|
|
|
$count = 0; |
99
|
|
|
$dirListing = $this->appDataIdentityProof->getDirectoryListing(); |
100
|
|
|
/** @var ISimpleFolder $folder */ |
101
|
|
|
foreach ($dirListing as $folder) { |
102
|
|
|
$name = $folder->getName(); |
103
|
|
|
$node = $this->rootFolder->get($this->identityProofDir . $name); |
104
|
|
|
$node->move($this->identityProofDir . 'user-' . $name); |
105
|
|
|
$count++; |
106
|
|
|
} |
107
|
|
|
|
108
|
|
|
return $count; |
109
|
|
|
} |
110
|
|
|
} |
111
|
|
|
|