constants.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. /**
  3. * @author Björn Schießle <schiessle@owncloud.com>
  4. * @author Christopher Schäpers <kondou@ts.unde.re>
  5. * @author Morris Jobke <hey@morrisjobke.de>
  6. *
  7. * @copyright Copyright (c) 2015, ownCloud, Inc.
  8. * @license AGPL-3.0
  9. *
  10. * This code is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License, version 3,
  12. * as published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License, version 3,
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>
  21. *
  22. */
  23. namespace OC\Share;
  24. class Constants {
  25. const SHARE_TYPE_USER = 0;
  26. const SHARE_TYPE_GROUP = 1;
  27. const SHARE_TYPE_LINK = 3;
  28. const SHARE_TYPE_EMAIL = 4; // ToDo Check if it is still in use otherwise remove it
  29. const SHARE_TYPE_CONTACT = 5; // ToDo Check if it is still in use otherwise remove it
  30. const SHARE_TYPE_REMOTE = 6; // ToDo Check if it is still in use otherwise remove it
  31. const FORMAT_NONE = -1;
  32. const FORMAT_STATUSES = -2;
  33. const FORMAT_SOURCES = -3; // ToDo Check if it is still in use otherwise remove it
  34. const RESPONSE_FORMAT = 'json'; // default resonse format for ocs calls
  35. const TOKEN_LENGTH = 15; // old (oc7) length is 32, keep token length in db at least that for compatibility
  36. const BASE_PATH_TO_SHARE_API = '/ocs/v1.php/cloud/shares';
  37. protected static $shareTypeUserAndGroups = -1;
  38. protected static $shareTypeGroupUserUnique = 2;
  39. protected static $backends = array();
  40. protected static $backendTypes = array();
  41. protected static $isResharingAllowed;
  42. }