Browse Source
Move the validation into one place only
Move the validation into one place only
Signed-off-by: Joas Schilling <coding@schilljs.com>pull/1972/head
committed by
Roeland Jago Douma
No known key found for this signature in database
GPG Key ID: F941078878347C0C
6 changed files with 106 additions and 42 deletions
-
19lib/private/Files/Cache/Scanner.php
-
25lib/private/Files/Storage/Common.php
-
40lib/private/Files/View.php
-
31lib/public/Files/EmptyFileNameException.php
-
31lib/public/Files/InvalidDirectoryException.php
-
2tests/lib/Files/PathVerificationTest.php
@ -0,0 +1,31 @@ |
|||
<?php |
|||
/** |
|||
* @copyright Copyright (c) 2016 Joas Schilling <coding@schilljs.com> |
|||
* |
|||
* @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 OCP\Files; |
|||
|
|||
/** |
|||
* Class EmptyFileNameException |
|||
* |
|||
* @package OCP\Files |
|||
* @since 9.2.0 |
|||
*/ |
|||
class EmptyFileNameException extends InvalidPathException { |
|||
} |
|||
@ -0,0 +1,31 @@ |
|||
<?php |
|||
/** |
|||
* @copyright Copyright (c) 2016 Joas Schilling <coding@schilljs.com> |
|||
* |
|||
* @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 OCP\Files; |
|||
|
|||
/** |
|||
* Class InvalidDirectoryException |
|||
* |
|||
* @package OCP\Files |
|||
* @since 9.2.0 |
|||
*/ |
|||
class InvalidDirectoryException extends InvalidPathException { |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue