* * @author Matias De lellis * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * */ namespace OCA\FaceRecognition\Service; use OCP\IConfig; use OCP\Files\IAppData; use OCP\Files\IRootFolder; use OCP\Files\NotFoundException; use OCA\FaceRecognition\Service\SettingsService; class ModelService { /** @var IConfig */ private $config; /** @var IAppData */ private $appData; /** @var IRootFolder */ private $rootFolder; /** @var string */ private $modelsFolder; /** @var SettingsService */ private $settingsService; public function __construct(IConfig $config, IAppData $appData, IRootFolder $rootFolder, SettingsService $settingsService) { $this->config = $config; $this->appData = $appData; $this->rootFolder = $rootFolder; $this->settingsService = $settingsService; $this->modelsFolder = $this->getModelsFolder(); } /** * @return string */ public function getFileModelPath(int $modelId, string $file): string { return $this->modelsFolder . '/' . $modelId . '/' . $file; } /** * @return bool */ public function modelFileExists(int $modelId, string $file): bool { return file_exists($this->getFileModelPath($modelId, $file)); } /** * @return void */ public function prepareModelFolder(int $modelId) { // Custum folder if (!is_null($this->settingsService->getSystemModelPath())) { $modelFolder = $this->modelsFolder . '/' . $modelId; if (!is_dir($modelFolder)) { mkdir($modelFolder, 0770, true); } return; } // Default folder try { $this->appData->getFolder('/models/' . $modelId); } catch (NotFoundException $e) { $this->appData->newFolder('/models/' . $modelId); } } /** * @return string */ private function getModelsFolder(): string { // Custum folder $customFolder = $this->settingsService->getSystemModelPath(); if (!is_null($customFolder)) { if (!is_dir($customFolder)) { mkdir($customFolder, 0770, true); } return $customFolder; } // Default folder try { $this->appData->getFolder('/models'); } catch (NotFoundException $e) { $this->appData->newFolder('/models'); } $instanceId = $this->config->getSystemValue('instanceid', null); $appData = $this->rootFolder->get('appdata_'.$instanceId)->getPath(); $dataDir = $this->config->getSystemValue('datadirectory', null); return $dataDir . '/' . $appData . '/facerecognition/models/'; } }