2023-02-05 21:43:25 +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-02-05 21:43:25 +00:00
|
|
|
|
2023-03-23 18:08:36 +00:00
|
|
|
use OCA\Memories\Db\TimelineQuery;
|
|
|
|
use OCA\Memories\Db\TimelineRoot;
|
2023-03-23 20:49:26 +00:00
|
|
|
use OCA\Memories\Util;
|
2023-03-23 18:08:36 +00:00
|
|
|
|
|
|
|
class PlacesBackend extends Backend
|
2023-02-05 21:43:25 +00:00
|
|
|
{
|
2023-03-23 18:08:36 +00:00
|
|
|
public TimelineRoot $root;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function appName(): string
|
2023-02-05 21:43:25 +00:00
|
|
|
{
|
2023-03-22 19:54:03 +00:00
|
|
|
return 'Places';
|
2023-02-05 21:43:25 +00:00
|
|
|
}
|
|
|
|
|
2023-03-23 18:08:36 +00:00
|
|
|
public function isEnabled(): bool
|
2023-02-05 21:43:25 +00:00
|
|
|
{
|
2023-03-23 20:49:26 +00:00
|
|
|
return Util::placesGISType() > 0;
|
2023-03-22 19:54:03 +00:00
|
|
|
}
|
2023-02-05 21:43:25 +00:00
|
|
|
|
2023-03-23 18:08:36 +00:00
|
|
|
public function getClusters(): array
|
2023-03-22 19:54:03 +00:00
|
|
|
{
|
|
|
|
return $this->timelineQuery->getPlaces($this->root);
|
|
|
|
}
|
2023-02-05 21:43:25 +00:00
|
|
|
|
2023-03-23 18:08:36 +00:00
|
|
|
public function getPhotos(string $name, ?int $limit = null): array
|
2023-03-22 19:54:03 +00:00
|
|
|
{
|
2023-03-22 23:55:20 +00:00
|
|
|
return $this->timelineQuery->getPlacePhotos((int) $name, $this->root, $limit) ?? [];
|
2023-02-05 21:43:25 +00:00
|
|
|
}
|
|
|
|
}
|