2015-03-23 15:07:40 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2015-06-25 12:43:55 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2015-03-23 15:07:40 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\Files_Versions\Command;
|
|
|
|
|
|
|
|
use OC\Command\FileAccess;
|
|
|
|
use OCA\Files_Versions\Storage;
|
|
|
|
use OCP\Command\ICommand;
|
|
|
|
|
|
|
|
class Expire implements ICommand {
|
|
|
|
use FileAccess;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
private $fileName;
|
|
|
|
|
|
|
|
/**
|
2015-03-26 19:11:34 +03:00
|
|
|
* @var string
|
2015-03-24 12:19:54 +03:00
|
|
|
*/
|
|
|
|
private $user;
|
|
|
|
|
|
|
|
/**
|
2015-03-26 19:11:34 +03:00
|
|
|
* @param string $user
|
2015-03-23 15:07:40 +03:00
|
|
|
* @param string $fileName
|
|
|
|
*/
|
2015-12-10 13:21:28 +03:00
|
|
|
function __construct($user, $fileName) {
|
2015-03-24 12:19:54 +03:00
|
|
|
$this->user = $user;
|
2015-03-23 15:07:40 +03:00
|
|
|
$this->fileName = $fileName;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-03-24 12:19:54 +03:00
|
|
|
public function handle() {
|
2015-06-05 12:31:49 +03:00
|
|
|
$userManager = \OC::$server->getUserManager();
|
|
|
|
if (!$userManager->userExists($this->user)) {
|
|
|
|
// User has been deleted already
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-11-22 12:22:00 +03:00
|
|
|
Storage::expire($this->fileName, $this->user);
|
2015-03-23 15:07:40 +03:00
|
|
|
}
|
|
|
|
}
|