2014-02-18 18:07:03 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Björn Schießle <schiessle@owncloud.com>
|
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2014-02-18 18:07:03 +04:00
|
|
|
*
|
2016-01-12 17:02:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2014-02-18 18:07:03 +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.
|
2014-02-18 18:07:03 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2014-02-18 18:07:03 +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.
|
|
|
|
*
|
|
|
|
* 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/>
|
2014-02-18 18:07:03 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-02-18 18:07:03 +04:00
|
|
|
namespace OC\Share;
|
|
|
|
|
|
|
|
class Constants {
|
|
|
|
|
|
|
|
const SHARE_TYPE_USER = 0;
|
|
|
|
const SHARE_TYPE_GROUP = 1;
|
|
|
|
const SHARE_TYPE_LINK = 3;
|
2014-03-28 18:24:13 +04:00
|
|
|
const SHARE_TYPE_EMAIL = 4; // ToDo Check if it is still in use otherwise remove it
|
|
|
|
const SHARE_TYPE_CONTACT = 5; // ToDo Check if it is still in use otherwise remove it
|
|
|
|
const SHARE_TYPE_REMOTE = 6; // ToDo Check if it is still in use otherwise remove it
|
2014-02-18 18:07:03 +04:00
|
|
|
|
|
|
|
const FORMAT_NONE = -1;
|
|
|
|
const FORMAT_STATUSES = -2;
|
2014-03-28 18:24:13 +04:00
|
|
|
const FORMAT_SOURCES = -3; // ToDo Check if it is still in use otherwise remove it
|
2014-02-18 18:07:03 +04:00
|
|
|
|
2014-12-04 21:51:04 +03:00
|
|
|
const RESPONSE_FORMAT = 'json'; // default resonse format for ocs calls
|
|
|
|
|
2014-09-04 18:46:20 +04:00
|
|
|
const TOKEN_LENGTH = 15; // old (oc7) length is 32, keep token length in db at least that for compatibility
|
|
|
|
|
2014-12-04 21:51:04 +03:00
|
|
|
const BASE_PATH_TO_SHARE_API = '/ocs/v1.php/cloud/shares';
|
|
|
|
|
2014-02-18 18:07:03 +04:00
|
|
|
protected static $shareTypeUserAndGroups = -1;
|
|
|
|
protected static $shareTypeGroupUserUnique = 2;
|
|
|
|
protected static $backends = array();
|
|
|
|
protected static $backendTypes = array();
|
|
|
|
protected static $isResharingAllowed;
|
|
|
|
}
|