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;
|
|
|
|
|
2023-03-23 20:32:23 +00:00
|
|
|
use OCA\Memories\Exceptions;
|
|
|
|
use OCA\Memories\Util;
|
2023-03-19 03:38:37 +00:00
|
|
|
use OCP\AppFramework\Http;
|
2023-02-08 03:59:04 +00:00
|
|
|
use OCP\AppFramework\Http\JSONResponse;
|
|
|
|
|
2023-03-22 18:40:56 +00:00
|
|
|
class MapController extends GenericApiController
|
2023-02-08 03:59:04 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
*/
|
2023-03-24 00:56:41 +00:00
|
|
|
public function clusters(string $bounds, string $zoom): Http\Response
|
2023-02-08 03:59:04 +00:00
|
|
|
{
|
2023-03-24 00:56:41 +00:00
|
|
|
return Util::guardEx(function () use ($bounds, $zoom) {
|
2023-03-23 20:32:23 +00:00
|
|
|
// Make sure we have bounds and zoom level
|
|
|
|
// Zoom level is used to determine the grid length
|
2023-03-24 00:56:41 +00:00
|
|
|
if (!$bounds || !$zoom || !is_numeric($zoom)) {
|
2023-03-23 20:32:23 +00:00
|
|
|
throw Exceptions::MissingParameter('bounds or zoom');
|
|
|
|
}
|
2023-02-08 03:59:04 +00:00
|
|
|
|
2023-03-23 20:32:23 +00:00
|
|
|
// A tweakable parameter to determine the number of boxes in the map
|
|
|
|
// Note: these parameters need to be changed in MapSplitMatter.vue as well
|
|
|
|
$clusterDensity = 1;
|
2023-03-24 00:56:41 +00:00
|
|
|
$gridLen = 180.0 / (2 ** $zoom * $clusterDensity);
|
2023-02-08 03:59:04 +00:00
|
|
|
|
2023-10-14 06:51:12 +00:00
|
|
|
$clusters = $this->tq->getMapClusters($gridLen, $bounds);
|
2023-02-09 08:35:35 +00:00
|
|
|
|
2023-02-10 01:27:03 +00:00
|
|
|
// Get previews for each cluster
|
2023-08-30 18:10:08 +00:00
|
|
|
$clusterIds = array_map(static fn ($cluster) => (int) $cluster['id'], $clusters);
|
2023-10-14 06:51:12 +00:00
|
|
|
$previews = $this->tq->getMapClusterPreviews($clusterIds);
|
2023-02-10 01:27:03 +00:00
|
|
|
|
|
|
|
// Merge the responses
|
|
|
|
$fileMap = [];
|
|
|
|
foreach ($previews as &$preview) {
|
|
|
|
$fileMap[$preview['mapcluster']] = $preview;
|
|
|
|
}
|
|
|
|
foreach ($clusters as &$cluster) {
|
|
|
|
$cluster['preview'] = $fileMap[$cluster['id']] ?? null;
|
|
|
|
}
|
|
|
|
|
2023-02-08 03:59:04 +00:00
|
|
|
return new JSONResponse($clusters);
|
2023-03-23 20:32:23 +00:00
|
|
|
});
|
2023-02-08 03:59:04 +00:00
|
|
|
}
|
2023-04-02 01:14:37 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @NoAdminRequired
|
|
|
|
*/
|
|
|
|
public function init(): Http\Response
|
|
|
|
{
|
|
|
|
return Util::guardEx(function () {
|
|
|
|
return new JSONResponse([
|
2023-10-14 06:51:12 +00:00
|
|
|
'pos' => $this->tq->getMapInitialPosition(),
|
2023-04-02 01:14:37 +00:00
|
|
|
]);
|
|
|
|
});
|
|
|
|
}
|
2023-02-08 03:59:04 +00:00
|
|
|
}
|