2018-05-08 15:44:49 +03:00
|
|
|
<?php
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2018-05-08 15:44:49 +03:00
|
|
|
declare(strict_types=1);
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2018-05-08 15:44:49 +03:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2018, Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
*
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @license GNU AGPL version 3 or any later version
|
2018-05-08 15:44:49 +03:00
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* 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.
|
2018-05-08 15:44:49 +03:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2019-12-03 21:57:53 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2018-05-08 15:44:49 +03:00
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* 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/>.
|
2018-05-08 15:44:49 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Preview;
|
|
|
|
|
|
|
|
use OC\BackgroundJob\TimedJob;
|
2020-01-30 13:37:01 +03:00
|
|
|
use OC\Preview\Storage\Root;
|
2018-05-09 23:09:40 +03:00
|
|
|
use OCP\DB\QueryBuilder\IQueryBuilder;
|
2020-01-30 13:37:01 +03:00
|
|
|
use OCP\Files\IMimeTypeLoader;
|
2018-05-08 15:44:49 +03:00
|
|
|
use OCP\Files\NotFoundException;
|
|
|
|
use OCP\Files\NotPermittedException;
|
|
|
|
use OCP\IDBConnection;
|
|
|
|
|
|
|
|
class BackgroundCleanupJob extends TimedJob {
|
|
|
|
|
|
|
|
/** @var IDBConnection */
|
|
|
|
private $connection;
|
|
|
|
|
2020-01-30 13:37:01 +03:00
|
|
|
/** @var Root */
|
|
|
|
private $previewFolder;
|
2018-05-08 15:44:49 +03:00
|
|
|
|
|
|
|
/** @var bool */
|
|
|
|
private $isCLI;
|
|
|
|
|
2020-01-30 13:37:01 +03:00
|
|
|
/** @var IMimeTypeLoader */
|
|
|
|
private $mimeTypeLoader;
|
|
|
|
|
2018-05-08 15:44:49 +03:00
|
|
|
public function __construct(IDBConnection $connection,
|
2020-01-30 13:37:01 +03:00
|
|
|
Root $previewFolder,
|
|
|
|
IMimeTypeLoader $mimeTypeLoader,
|
2018-05-08 15:44:49 +03:00
|
|
|
bool $isCLI) {
|
|
|
|
// Run at most once an hour
|
|
|
|
$this->setInterval(3600);
|
|
|
|
|
|
|
|
$this->connection = $connection;
|
2020-01-30 13:37:01 +03:00
|
|
|
$this->previewFolder = $previewFolder;
|
2018-05-08 15:44:49 +03:00
|
|
|
$this->isCLI = $isCLI;
|
2020-01-30 13:37:01 +03:00
|
|
|
$this->mimeTypeLoader = $mimeTypeLoader;
|
2018-05-08 15:44:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public function run($argument) {
|
2020-01-30 13:37:01 +03:00
|
|
|
foreach ($this->getDeletedFiles() as $fileId) {
|
|
|
|
try {
|
|
|
|
$preview = $this->previewFolder->getFolder((string)$fileId);
|
|
|
|
$preview->delete();
|
|
|
|
} catch (NotFoundException $e) {
|
|
|
|
// continue
|
|
|
|
} catch (NotPermittedException $e) {
|
|
|
|
// continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-08 15:44:49 +03:00
|
|
|
|
2020-01-30 13:37:01 +03:00
|
|
|
private function getDeletedFiles(): \Iterator {
|
|
|
|
yield from $this->getOldPreviewLocations();
|
|
|
|
yield from $this->getNewPreviewLocations();
|
|
|
|
}
|
2018-05-08 15:44:49 +03:00
|
|
|
|
2020-01-30 13:37:01 +03:00
|
|
|
private function getOldPreviewLocations(): \Iterator {
|
2018-05-08 15:44:49 +03:00
|
|
|
$qb = $this->connection->getQueryBuilder();
|
2018-05-09 23:09:40 +03:00
|
|
|
$qb->select('a.name')
|
|
|
|
->from('filecache', 'a')
|
|
|
|
->leftJoin('a', 'filecache', 'b', $qb->expr()->eq(
|
|
|
|
$qb->expr()->castColumn('a.name', IQueryBuilder::PARAM_INT), 'b.fileid'
|
|
|
|
))
|
2018-05-08 15:44:49 +03:00
|
|
|
->where(
|
2018-05-09 23:09:40 +03:00
|
|
|
$qb->expr()->isNull('b.fileid')
|
2018-05-08 15:44:49 +03:00
|
|
|
)->andWhere(
|
2020-01-30 13:37:01 +03:00
|
|
|
$qb->expr()->eq('a.parent', $qb->createNamedParameter($this->previewFolder->getId()))
|
|
|
|
)->andWhere(
|
|
|
|
$qb->expr()->like('a.name', $qb->createNamedParameter('__%'))
|
2018-05-08 15:44:49 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
if (!$this->isCLI) {
|
|
|
|
$qb->setMaxResults(10);
|
|
|
|
}
|
|
|
|
|
|
|
|
$cursor = $qb->execute();
|
|
|
|
|
|
|
|
while ($row = $cursor->fetch()) {
|
2020-01-30 13:37:01 +03:00
|
|
|
yield $row['name'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$cursor->closeCursor();
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getNewPreviewLocations(): \Iterator {
|
|
|
|
$qb = $this->connection->getQueryBuilder();
|
|
|
|
$qb->select('path', 'mimetype')
|
|
|
|
->from('filecache')
|
|
|
|
->where($qb->expr()->eq('fileid', $qb->createNamedParameter($this->previewFolder->getId())));
|
|
|
|
$cursor = $qb->execute();
|
|
|
|
$data = $cursor->fetch();
|
|
|
|
$cursor->closeCursor();
|
|
|
|
|
|
|
|
if ($data === null) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This lovely like is the result of the way the new previews are stored
|
|
|
|
* We take the md5 of the name (fileid) and split the first 7 chars. That way
|
|
|
|
* there are not a gazillion files in the root of the preview appdata.
|
|
|
|
*/
|
|
|
|
$like = $this->connection->escapeLikeParameter($data['path']) . '/_/_/_/_/_/_/_/%';
|
|
|
|
|
|
|
|
$qb = $this->connection->getQueryBuilder();
|
|
|
|
$qb->select('a.name')
|
|
|
|
->from('filecache', 'a')
|
|
|
|
->leftJoin('a', 'filecache', 'b', $qb->expr()->eq(
|
|
|
|
$qb->expr()->castColumn('a.name', IQueryBuilder::PARAM_INT), 'b.fileid'
|
|
|
|
))
|
|
|
|
->where(
|
|
|
|
$qb->expr()->andX(
|
|
|
|
$qb->expr()->isNull('b.fileid'),
|
|
|
|
$qb->expr()->like('a.path', $qb->createNamedParameter($like)),
|
|
|
|
$qb->expr()->eq('a.mimetype', $qb->createNamedParameter($this->mimeTypeLoader->getId('httpd/unix-directory')))
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!$this->isCLI) {
|
|
|
|
$qb->setMaxResults(10);
|
|
|
|
}
|
|
|
|
|
|
|
|
$cursor = $qb->execute();
|
|
|
|
|
|
|
|
while ($row = $cursor->fetch()) {
|
|
|
|
yield $row['name'];
|
2018-05-08 15:44:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$cursor->closeCursor();
|
|
|
|
}
|
|
|
|
}
|