2018-10-03 19:24:42 +03:00
|
|
|
<?php
|
2018-10-03 21:26:00 +03:00
|
|
|
declare(strict_types=1);
|
2018-10-03 19:24:42 +03:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2018 Daniel Kesselberg <mail@danielkesselberg.de>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* 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\WorkflowEngine\Check;
|
|
|
|
|
2019-09-05 16:52:11 +03:00
|
|
|
use OCA\WorkflowEngine\Entity\File;
|
2018-10-03 19:24:42 +03:00
|
|
|
use OCP\IL10N;
|
|
|
|
use OCP\IRequest;
|
2019-09-09 15:27:10 +03:00
|
|
|
use OCP\WorkflowEngine\IFileCheck;
|
2018-10-03 19:24:42 +03:00
|
|
|
|
2019-09-09 15:27:10 +03:00
|
|
|
class FileName extends AbstractStringCheck implements IFileCheck {
|
2019-09-09 17:04:12 +03:00
|
|
|
use TFileCheck;
|
2018-10-03 19:24:42 +03:00
|
|
|
|
|
|
|
/** @var IRequest */
|
|
|
|
protected $request;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param IL10N $l
|
|
|
|
* @param IRequest $request
|
|
|
|
*/
|
|
|
|
public function __construct(IL10N $l, IRequest $request) {
|
|
|
|
parent::__construct($l);
|
|
|
|
$this->request = $request;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-10-03 21:26:00 +03:00
|
|
|
protected function getActualValue(): string {
|
2019-10-01 18:30:52 +03:00
|
|
|
return $this->path === null ? '' : basename($this->path);
|
2018-10-03 19:24:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $operator
|
2018-10-05 18:54:48 +03:00
|
|
|
* @param string $checkValue
|
|
|
|
* @param string $actualValue
|
2018-10-03 19:24:42 +03:00
|
|
|
* @return bool
|
|
|
|
*/
|
2018-10-05 18:54:48 +03:00
|
|
|
protected function executeStringCheck($operator, $checkValue, $actualValue): bool {
|
|
|
|
if ($operator === 'is' || $operator === '!is') {
|
|
|
|
$checkValue = mb_strtolower($checkValue);
|
|
|
|
$actualValue = mb_strtolower($actualValue);
|
|
|
|
}
|
|
|
|
return parent::executeStringCheck($operator, $checkValue, $actualValue);
|
2018-10-03 19:24:42 +03:00
|
|
|
}
|
2019-09-05 16:52:11 +03:00
|
|
|
|
|
|
|
public function supportedEntities(): array {
|
|
|
|
return [ File::class ];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isAvailableForScope(int $scope): bool {
|
|
|
|
return true;
|
|
|
|
}
|
2018-10-03 19:24:42 +03:00
|
|
|
}
|