-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Louis Chemineau <[email protected]>
- Loading branch information
Showing
1 changed file
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
/** | ||
* @copyright Copyright (c) 2022 Louis Chemineau <[email protected]> | ||
* | ||
* @author Louis Chemineau <[email protected]> | ||
* | ||
* @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\Photos\Jobs; | ||
|
||
use OCA\Photos\AppInfo\Application; | ||
use OCP\AppFramework\Utility\ITimeFactory; | ||
use OCP\BackgroundJob\TimedJob; | ||
use OCP\FilesMetadata\IFilesMetadataManager; | ||
use OCP\IConfig; | ||
use OCP\IDBConnection; | ||
|
||
class MigrateMetadataJob extends TimedJob { | ||
public function __construct( | ||
ITimeFactory $time, | ||
private IConfig $config, | ||
private IFilesMetadataManager $filesMetadataManager, | ||
private IDBConnection $connection, | ||
) { | ||
parent::__construct($time); | ||
|
||
$this->setTimeSensitivity(\OCP\BackgroundJob\IJob::TIME_INSENSITIVE); | ||
$this->setInterval(24 * 3600); | ||
} | ||
|
||
protected function run($argument) { | ||
$metadataMigrationDone = $this->config->getAppValue(Application::APP_ID, 'lastPlaceMappingDone', 'false'); | ||
|
||
if ($metadataMigrationDone === 'true') { | ||
return; | ||
} | ||
|
||
$startTime = time(); | ||
$handledRowCount = 0; | ||
|
||
$selectQuery = $this->connection->getQueryBuilder() | ||
->select('*') | ||
->from('file_metadata') | ||
->setMaxResults(20); | ||
|
||
$deleteQuery = $this->connection->getQueryBuilder(); | ||
$deleteQuery->delete() | ||
->from('file_metadata') | ||
->where($deleteQuery->expr()->eq('id', $deleteQuery->createParameter('id'))) | ||
->where($deleteQuery->expr()->eq('group_name', $deleteQuery->createParameter('group_name'))) | ||
->where($deleteQuery->expr()->eq('value', $deleteQuery->createParameter('value'))); | ||
|
||
while ($handledRowCount % 20 === 0) { | ||
$results = $selectQuery | ||
->setFirstResult($handledRowCount) | ||
->executeQuery(); | ||
|
||
while ($row = $results->fetch()) { | ||
$handledRowCount++; | ||
$metadata = $this->filesMetadataManager->getMetadata($row['id'], true); | ||
|
||
switch ($row['group_name']) { | ||
case 'size': | ||
$metadata->setArray('photos-size', json_decode($row['value'], true)); | ||
break; | ||
case 'gps': | ||
$metadata->setArray('photos-gps', json_decode($row['value'], true)); | ||
break; | ||
case 'photos_place': | ||
$metadata->setString('photos-place', $row['value'], true); | ||
break; | ||
} | ||
|
||
$this->filesMetadataManager->saveMetadata($metadata); | ||
$deleteQuery->setParameter('id', $row['id']); | ||
$deleteQuery->setParameter('group_name', $row['group_name']); | ||
$deleteQuery->setParameter('value', $row['value']); | ||
$deleteQuery->executeStatement(); | ||
} | ||
|
||
$results->closeCursor(); | ||
|
||
// Stop if execution time is more than one hour. | ||
if (time() - $startTime > 60 * 60) { | ||
return; | ||
} | ||
} | ||
|
||
$this->config->setAppValue(Application::APP_ID, 'metadataMigrationDone', 'true'); | ||
} | ||
} |