2012-11-11 18:52:23 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Tanghus <thomas@tanghus.net>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2012-11-11 18:52:23 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2012-11-11 18:52:23 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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.
|
2012-11-11 18:52:23 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2012-11-11 18:52:23 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2012-11-11 18:52:23 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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/>
|
2012-11-11 18:52:23 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This file defines common constants used in ownCloud
|
|
|
|
*/
|
|
|
|
|
2012-11-11 18:52:23 +04:00
|
|
|
namespace OCP;
|
|
|
|
|
2015-04-19 02:04:59 +03:00
|
|
|
/** @deprecated 8.0.0 Use \OCP\Constants::PERMISSION_CREATE instead */
|
2012-11-11 18:52:23 +04:00
|
|
|
const PERMISSION_CREATE = 4;
|
2014-11-25 18:27:27 +03:00
|
|
|
|
2015-04-19 02:04:59 +03:00
|
|
|
/** @deprecated 8.0.0 Use \OCP\Constants::PERMISSION_READ instead */
|
2012-11-11 18:52:23 +04:00
|
|
|
const PERMISSION_READ = 1;
|
2014-11-25 18:27:27 +03:00
|
|
|
|
2015-04-19 02:04:59 +03:00
|
|
|
/** @deprecated 8.0.0 Use \OCP\Constants::PERMISSION_UPDATE instead */
|
2012-11-11 18:52:23 +04:00
|
|
|
const PERMISSION_UPDATE = 2;
|
2014-11-25 18:27:27 +03:00
|
|
|
|
2015-04-19 02:04:59 +03:00
|
|
|
/** @deprecated 8.0.0 Use \OCP\Constants::PERMISSION_DELETE instead */
|
2012-11-11 18:52:23 +04:00
|
|
|
const PERMISSION_DELETE = 8;
|
2014-11-25 18:27:27 +03:00
|
|
|
|
2015-04-19 02:04:59 +03:00
|
|
|
/** @deprecated 8.0.0 Use \OCP\Constants::PERMISSION_SHARE instead */
|
2012-11-11 18:52:23 +04:00
|
|
|
const PERMISSION_SHARE = 16;
|
2014-11-25 18:27:27 +03:00
|
|
|
|
2015-04-19 02:04:59 +03:00
|
|
|
/** @deprecated 8.0.0 Use \OCP\Constants::PERMISSION_ALL instead */
|
2012-11-11 18:52:23 +04:00
|
|
|
const PERMISSION_ALL = 31;
|
2014-01-10 19:14:37 +04:00
|
|
|
|
2015-04-19 02:04:59 +03:00
|
|
|
/** @deprecated 8.0.0 Use \OCP\Constants::FILENAME_INVALID_CHARS instead */
|
2014-01-10 19:14:37 +04:00
|
|
|
const FILENAME_INVALID_CHARS = "\\/<>:\"|?*\n";
|
|
|
|
|
2015-04-16 18:00:08 +03:00
|
|
|
/**
|
|
|
|
* Class Constants
|
|
|
|
*
|
|
|
|
* @package OCP
|
|
|
|
* @since 8.0.0
|
|
|
|
*/
|
2014-11-25 18:27:27 +03:00
|
|
|
class Constants {
|
|
|
|
/**
|
|
|
|
* CRUDS permissions.
|
2015-04-19 02:04:59 +03:00
|
|
|
* @since 8.0.0
|
2014-11-25 18:27:27 +03:00
|
|
|
*/
|
|
|
|
const PERMISSION_CREATE = 4;
|
|
|
|
const PERMISSION_READ = 1;
|
|
|
|
const PERMISSION_UPDATE = 2;
|
|
|
|
const PERMISSION_DELETE = 8;
|
|
|
|
const PERMISSION_SHARE = 16;
|
|
|
|
const PERMISSION_ALL = 31;
|
|
|
|
|
2015-04-19 02:04:59 +03:00
|
|
|
/**
|
2016-02-11 23:45:25 +03:00
|
|
|
* @since 8.0.0 - Updated in 9.0.0 to allow all POSIX chars since we no
|
|
|
|
* longer support windows as server platform.
|
2015-04-19 02:04:59 +03:00
|
|
|
*/
|
2016-02-11 23:45:25 +03:00
|
|
|
const FILENAME_INVALID_CHARS = "\\/";
|
2014-11-25 18:27:27 +03:00
|
|
|
}
|