2018-11-02 16:19:27 -04:00
|
|
|
<?php
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2018-11-02 16:19:27 -04:00
|
|
|
declare(strict_types=1);
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2018-11-02 16:19:27 -04:00
|
|
|
/**
|
2024-05-27 11:39:07 -04:00
|
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2018-11-02 16:19:27 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCA\DAV\Upload;
|
|
|
|
|
|
|
|
|
|
use OCA\DAV\BackgroundJob\UploadCleanup;
|
|
|
|
|
use OCP\BackgroundJob\IJobList;
|
|
|
|
|
use OCP\IUserSession;
|
|
|
|
|
|
|
|
|
|
class CleanupService {
|
|
|
|
|
/** @var IUserSession */
|
|
|
|
|
private $userSession;
|
|
|
|
|
/** @var IJobList */
|
|
|
|
|
private $jobList;
|
|
|
|
|
|
|
|
|
|
public function __construct(IUserSession $userSession, IJobList $jobList) {
|
|
|
|
|
$this->userSession = $userSession;
|
|
|
|
|
$this->jobList = $jobList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function addJob(string $folder) {
|
|
|
|
|
$this->jobList->add(UploadCleanup::class, ['uid' => $this->userSession->getUser()->getUID(), 'folder' => $folder]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function removeJob(string $folder) {
|
|
|
|
|
$this->jobList->remove(UploadCleanup::class, ['uid' => $this->userSession->getUser()->getUID(), 'folder' => $folder]);
|
|
|
|
|
}
|
|
|
|
|
}
|