2023-03-22 23:44:51 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2022 Varun Patil <radialapps@gmail.com>
|
|
|
|
* @author Varun Patil <radialapps@gmail.com>
|
|
|
|
* @license AGPL-3.0-or-later
|
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2023-03-23 18:08:36 +00:00
|
|
|
namespace OCA\Memories\ClustersBackend;
|
2023-03-22 23:44:51 +00:00
|
|
|
|
2023-03-23 18:08:36 +00:00
|
|
|
use OCA\Memories\Db\TimelineQuery;
|
2023-03-23 20:49:26 +00:00
|
|
|
use OCA\Memories\Util;
|
2023-03-23 18:08:36 +00:00
|
|
|
|
|
|
|
class RecognizeBackend extends Backend
|
2023-03-22 23:44:51 +00:00
|
|
|
{
|
2023-03-23 18:08:36 +00:00
|
|
|
use PeopleBackendUtils;
|
|
|
|
|
|
|
|
protected TimelineQuery $timelineQuery;
|
|
|
|
|
|
|
|
public function __construct(
|
2023-03-23 20:49:26 +00:00
|
|
|
TimelineQuery $timelineQuery
|
2023-03-23 18:08:36 +00:00
|
|
|
) {
|
|
|
|
$this->timelineQuery = $timelineQuery;
|
|
|
|
}
|
2023-03-22 23:44:51 +00:00
|
|
|
|
2023-03-23 18:08:36 +00:00
|
|
|
public function appName(): string
|
2023-03-22 23:44:51 +00:00
|
|
|
{
|
|
|
|
return 'Recognize';
|
|
|
|
}
|
|
|
|
|
2023-03-23 18:08:36 +00:00
|
|
|
public function isEnabled(): bool
|
2023-03-22 23:44:51 +00:00
|
|
|
{
|
2023-03-23 20:49:26 +00:00
|
|
|
return Util::recognizeIsEnabled();
|
2023-03-22 23:44:51 +00:00
|
|
|
}
|
|
|
|
|
2023-03-23 18:08:36 +00:00
|
|
|
public function getClusters(): array
|
2023-03-22 23:44:51 +00:00
|
|
|
{
|
2023-03-23 21:45:56 +00:00
|
|
|
return $this->timelineQuery->getPeopleRecognize(Util::getUID());
|
2023-03-22 23:44:51 +00:00
|
|
|
}
|
|
|
|
|
2023-03-23 18:08:36 +00:00
|
|
|
public function getPhotos(string $name, ?int $limit = null): array
|
2023-03-22 23:44:51 +00:00
|
|
|
{
|
2023-03-23 21:45:56 +00:00
|
|
|
return $this->timelineQuery->getPeopleRecognizePhotos((int) $name, $limit) ?? [];
|
2023-03-22 23:44:51 +00:00
|
|
|
}
|
|
|
|
|
2023-03-23 18:08:36 +00:00
|
|
|
public function sortPhotosForPreview(array &$photos)
|
2023-03-22 23:44:51 +00:00
|
|
|
{
|
2023-03-22 23:55:20 +00:00
|
|
|
$this->sortByScores($photos);
|
2023-03-22 23:44:51 +00:00
|
|
|
}
|
|
|
|
|
2023-03-23 18:08:36 +00:00
|
|
|
public function getPreviewBlob($file, $photo): array
|
2023-03-22 23:44:51 +00:00
|
|
|
{
|
2023-03-22 23:55:20 +00:00
|
|
|
return $this->cropFace($file, $photo, 1.5);
|
2023-03-22 23:44:51 +00:00
|
|
|
}
|
2023-03-23 18:08:36 +00:00
|
|
|
|
|
|
|
public function getPreviewQuality(): int
|
|
|
|
{
|
|
|
|
return 2048;
|
|
|
|
}
|
2023-03-22 23:44:51 +00:00
|
|
|
}
|