51 lines
1.4 KiB
PHP
51 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2022 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Photos\Service;
|
|
|
|
use OCA\Photos\DB\Place\PlaceMapper;
|
|
use OCA\Photos\Listener\ExifMetadataProvider;
|
|
use OCP\FilesMetadata\IFilesMetadataManager;
|
|
use OCP\FilesMetadata\Model\IFilesMetadata;
|
|
|
|
class MediaPlaceManager {
|
|
public function __construct(
|
|
private readonly IFilesMetadataManager $filesMetadataManager,
|
|
private readonly ReverseGeoCoderService $rgcService,
|
|
private readonly PlaceMapper $placeMapper,
|
|
) {
|
|
}
|
|
|
|
public function setPlaceForFile(int $fileId): void {
|
|
$metadata = $this->filesMetadataManager->getMetadata($fileId, true);
|
|
$place = $this->getPlaceForMetadata($metadata);
|
|
|
|
if ($place === null) {
|
|
return;
|
|
}
|
|
|
|
$metadata->setString('gps', $place, true);
|
|
}
|
|
|
|
public function getPlaceForMetadata(IFilesMetadata $metadata): ?string {
|
|
if (!$this->rgcService->arePlacesEnabled() || !$metadata->hasKey(ExifMetadataProvider::METADATA_KEY_GPS)) {
|
|
return null;
|
|
}
|
|
|
|
$coordinate = $metadata->getArray(ExifMetadataProvider::METADATA_KEY_GPS);
|
|
|
|
$latitude = $coordinate['latitude'] ?? null;
|
|
$longitude = $coordinate['longitude'] ?? null;
|
|
if ($latitude === null || $longitude === null) {
|
|
return null;
|
|
}
|
|
|
|
return $this->rgcService->getPlaceForCoordinates((float)$latitude, (float)$longitude);
|
|
}
|
|
}
|