You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Constants.php 2.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Björn Schießle <bjoern@schiessle.org>
  6. * @author Christopher Schäpers <kondou@ts.unde.re>
  7. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  8. * @author Daniel Calviño Sánchez <danxuliu@gmail.com>
  9. * @author Joas Schilling <coding@schilljs.com>
  10. * @author Julius Härtl <jus@bitgrid.net>
  11. *
  12. * @license AGPL-3.0
  13. *
  14. * This code is free software: you can redistribute it and/or modify
  15. * it under the terms of the GNU Affero General Public License, version 3,
  16. * as published by the Free Software Foundation.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU Affero General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU Affero General Public License, version 3,
  24. * along with this program. If not, see <http://www.gnu.org/licenses/>
  25. *
  26. */
  27. namespace OC\Share;
  28. use OCP\Share\IShare;
  29. class Constants {
  30. /**
  31. * @deprecated 17.0.0 - use IShare::TYPE_USER instead
  32. */
  33. public const SHARE_TYPE_USER = 0;
  34. /**
  35. * @deprecated 17.0.0 - use IShare::TYPE_GROUP instead
  36. */
  37. public const SHARE_TYPE_GROUP = 1;
  38. // const SHARE_TYPE_USERGROUP = 2; // Internal type used by DefaultShareProvider
  39. /**
  40. * @deprecated 17.0.0 - use IShare::TYPE_LINK instead
  41. */
  42. public const SHARE_TYPE_LINK = 3;
  43. /**
  44. * @deprecated 17.0.0 - use IShare::TYPE_EMAIL instead
  45. */
  46. public const SHARE_TYPE_EMAIL = 4;
  47. public const SHARE_TYPE_CONTACT = 5; // ToDo Check if it is still in use otherwise remove it
  48. /**
  49. * @deprecated 17.0.0 - use IShare::TYPE_REMOTE instead
  50. */
  51. public const SHARE_TYPE_REMOTE = 6;
  52. /**
  53. * @deprecated 17.0.0 - use IShare::TYPE_CIRCLE instead
  54. */
  55. public const SHARE_TYPE_CIRCLE = 7;
  56. /**
  57. * @deprecated 17.0.0 - use IShare::TYPE_GUEST instead
  58. */
  59. public const SHARE_TYPE_GUEST = 8;
  60. /**
  61. * @deprecated 17.0.0 - use IShare::REMOTE_GROUP instead
  62. */
  63. public const SHARE_TYPE_REMOTE_GROUP = 9;
  64. /**
  65. * @deprecated 17.0.0 - use IShare::TYPE_ROOM instead
  66. */
  67. public const SHARE_TYPE_ROOM = 10;
  68. // const SHARE_TYPE_USERROOM = 11; // Internal type used by RoomShareProvider
  69. /**
  70. * @deprecated 21.0.0 - use IShare::TYPE_DECK instead
  71. */
  72. public const SHARE_TYPE_DECK = 12;
  73. // const SHARE_TYPE_DECK_USER = 13; // Internal type used by DeckShareProvider
  74. public const FORMAT_NONE = -1;
  75. public const FORMAT_STATUSES = -2;
  76. public const FORMAT_SOURCES = -3; // ToDo Check if it is still in use otherwise remove it
  77. public const RESPONSE_FORMAT = 'json'; // default response format for ocs calls
  78. public const TOKEN_LENGTH = 15; // old (oc7) length is 32, keep token length in db at least that for compatibility
  79. protected static $shareTypeUserAndGroups = -1;
  80. protected static $shareTypeGroupUserUnique = 2;
  81. protected static $backends = [];
  82. protected static $backendTypes = [];
  83. protected static $isResharingAllowed;
  84. }