|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* @copyright Copyright (c) 2019, Matias De lellis <[email protected]> |
|
4
|
|
|
* |
|
5
|
|
|
* @author Matias De lellis <[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
|
|
|
namespace OCA\FaceRecognition\Service; |
|
25
|
|
|
|
|
26
|
|
|
use OCP\IConfig; |
|
27
|
|
|
use OCP\Files\IAppData; |
|
28
|
|
|
use OCP\Files\IRootFolder; |
|
29
|
|
|
use OCP\Files\NotFoundException; |
|
30
|
|
|
|
|
31
|
|
|
class ModelService { |
|
32
|
|
|
|
|
33
|
|
|
/** @var IConfig */ |
|
34
|
|
|
private $config; |
|
35
|
|
|
|
|
36
|
|
|
/** @var IAppData */ |
|
37
|
|
|
private $appData; |
|
38
|
|
|
|
|
39
|
|
|
/** @var IRootFolder */ |
|
40
|
|
|
private $rootFolder; |
|
41
|
|
|
|
|
42
|
|
|
/** @var string */ |
|
43
|
|
|
private $modelsFolder; |
|
44
|
|
|
|
|
45
|
1 |
|
public function __construct(IConfig $config, |
|
46
|
|
|
IAppData $appData, |
|
47
|
|
|
IRootFolder $rootFolder) { |
|
48
|
1 |
|
$this->config = $config; |
|
49
|
1 |
|
$this->appData = $appData; |
|
50
|
1 |
|
$this->rootFolder = $rootFolder; |
|
51
|
|
|
|
|
52
|
|
|
// Construct root folder for models |
|
53
|
1 |
|
$this->prepareAppDataFolders(); |
|
54
|
|
|
|
|
55
|
|
|
/// Get this folder. |
|
56
|
1 |
|
$instanceId = $this->config->getSystemValue('instanceid', null); |
|
57
|
1 |
|
$appData = $this->rootFolder->get('appdata_'.$instanceId)->getPath(); |
|
58
|
1 |
|
$dataDir = $this->config->getSystemValue('datadirectory', null); |
|
59
|
|
|
|
|
60
|
1 |
|
$this->modelsFolder = $dataDir . $appData . '/facerecognition/models/'; |
|
61
|
1 |
|
} |
|
62
|
|
|
|
|
63
|
|
|
/** |
|
64
|
|
|
* @return string |
|
65
|
|
|
*/ |
|
66
|
|
|
public function getFileModelPath(int $modelId, string $file): string { |
|
67
|
|
|
return $this->modelsFolder . $modelId . '/' . $file; |
|
68
|
|
|
} |
|
69
|
|
|
|
|
70
|
|
|
/** |
|
71
|
|
|
* @return bool |
|
72
|
|
|
*/ |
|
73
|
|
|
public function modelFileExists(int $modelId, string $file): bool { |
|
74
|
|
|
return file_exists($this->getFileModelPath($modelId, $file)); |
|
75
|
|
|
} |
|
76
|
|
|
|
|
77
|
|
|
/** |
|
78
|
|
|
* @return void |
|
79
|
|
|
*/ |
|
80
|
|
|
public function prepareModelFolder(int $modelId) { |
|
81
|
|
|
try { |
|
82
|
|
|
$this->appData->getFolder('/models/' . $modelId); |
|
83
|
|
|
} catch (NotFoundException $e) { |
|
84
|
|
|
$this->appData->newFolder('/models/' . $modelId); |
|
85
|
|
|
} |
|
86
|
|
|
} |
|
87
|
|
|
|
|
88
|
|
|
/** |
|
89
|
|
|
* @return void |
|
90
|
|
|
*/ |
|
91
|
1 |
|
private function prepareAppDataFolders() { |
|
92
|
|
|
try { |
|
93
|
1 |
|
$this->appData->getFolder('/models'); |
|
94
|
1 |
|
} catch (NotFoundException $e) { |
|
95
|
1 |
|
$this->appData->newFolder('/models'); |
|
96
|
|
|
} |
|
97
|
1 |
|
} |
|
98
|
|
|
|
|
99
|
|
|
} |