2023-02-08 03:59:04 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Memories\Controller;
|
|
|
|
|
|
|
|
use OCP\AppFramework\Http;
|
|
|
|
use OCP\AppFramework\Http\JSONResponse;
|
|
|
|
|
2023-02-08 22:13:13 +00:00
|
|
|
class MapController extends ApiBase
|
2023-02-08 03:59:04 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
*
|
|
|
|
* @NoCSRFRequired
|
|
|
|
*/
|
|
|
|
public function clusters(): JSONResponse
|
|
|
|
{
|
|
|
|
// Get the folder to show
|
|
|
|
$root = null;
|
2023-02-08 21:53:38 +00:00
|
|
|
|
2023-02-08 03:59:04 +00:00
|
|
|
try {
|
|
|
|
$root = $this->getRequestRoot();
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
return new JSONResponse(['message' => $e->getMessage()], Http::STATUS_NOT_FOUND);
|
|
|
|
}
|
|
|
|
|
2023-02-08 21:53:38 +00:00
|
|
|
// Make sure we have bounds and zoom level
|
2023-02-08 18:52:53 +00:00
|
|
|
// Zoom level is used to determine the grid length
|
2023-02-08 21:53:38 +00:00
|
|
|
$bounds = $this->request->getParam('bounds');
|
2023-02-08 03:59:04 +00:00
|
|
|
$zoomLevel = $this->request->getParam('zoom');
|
2023-02-08 21:53:38 +00:00
|
|
|
if (!$bounds || !$zoomLevel || !is_numeric($zoomLevel)) {
|
|
|
|
return new JSONResponse(['message' => 'Invalid parameters'], Http::STATUS_PRECONDITION_FAILED);
|
2023-02-08 03:59:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// A tweakable parameter to determine the number of boxes in the map
|
2023-02-09 07:55:54 +00:00
|
|
|
$clusterDensity = 1;
|
2023-02-08 21:53:38 +00:00
|
|
|
$gridLen = 180.0 / (2 ** $zoomLevel * $clusterDensity);
|
2023-02-08 03:59:04 +00:00
|
|
|
|
|
|
|
try {
|
2023-02-08 21:53:38 +00:00
|
|
|
$clusters = $this->timelineQuery->getMapClusters($gridLen, $bounds, $root);
|
2023-02-08 03:59:04 +00:00
|
|
|
return new JSONResponse($clusters);
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
return new JSONResponse(['message' => $e->getMessage()], Http::STATUS_INTERNAL_SERVER_ERROR);
|
|
|
|
}
|
|
|
|
}
|
2023-02-08 18:52:53 +00:00
|
|
|
|
2023-02-09 05:55:12 +00:00
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
*
|
|
|
|
* @NoCSRFRequired
|
|
|
|
*
|
|
|
|
* Get preview for a cluster
|
|
|
|
*/
|
|
|
|
public function clusterPreview(int $id)
|
|
|
|
{
|
|
|
|
$user = $this->userSession->getUser();
|
|
|
|
if (null === $user) {
|
|
|
|
return new JSONResponse([], Http::STATUS_PRECONDITION_FAILED);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this isn't the timeline folder then things aren't going to work
|
|
|
|
$root = $this->getRequestRoot();
|
|
|
|
if ($root->isEmpty()) {
|
|
|
|
return new JSONResponse([], Http::STATUS_NOT_FOUND);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run actual query
|
|
|
|
$list = $this->timelineQuery->getMapClusterPreviews($id, $root);
|
|
|
|
if (null === $list || 0 === \count($list)) {
|
|
|
|
return new JSONResponse([], Http::STATUS_NOT_FOUND);
|
|
|
|
}
|
|
|
|
shuffle($list);
|
|
|
|
|
|
|
|
// Get preview from image list
|
|
|
|
return $this->getPreviewFromImageList(array_map(static function (&$item) {
|
|
|
|
return (int) $item['fileid'];
|
|
|
|
}, $list), 256);
|
|
|
|
}
|
2023-02-08 03:59:04 +00:00
|
|
|
}
|