AppleProvisioningNode.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?php
  2. /**
  3. * @copyright 2018, Georg Ehrke <oc.list@georgehrke.com>
  4. *
  5. * @author Georg Ehrke <oc.list@georgehrke.com>
  6. *
  7. * @license GNU AGPL version 3 or any later version
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as
  11. * published by the Free Software Foundation, either version 3 of the
  12. * License, or (at your option) any later version.
  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
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. */
  23. namespace OCA\DAV\Provisioning\Apple;
  24. use OCP\AppFramework\Utility\ITimeFactory;
  25. use Sabre\DAV\Exception\Forbidden;
  26. use Sabre\DAV\INode;
  27. use Sabre\DAV\IProperties;
  28. use Sabre\DAV\PropPatch;
  29. class AppleProvisioningNode implements INode, IProperties {
  30. const FILENAME = 'apple-provisioning.mobileconfig';
  31. protected $timeFactory;
  32. /**
  33. * @param ITimeFactory $timeFactory
  34. */
  35. public function __construct(ITimeFactory $timeFactory) {
  36. $this->timeFactory = $timeFactory;
  37. }
  38. /**
  39. * @return string
  40. */
  41. public function getName() {
  42. return self::FILENAME;
  43. }
  44. public function setName($name) {
  45. throw new Forbidden('Renaming ' . self::FILENAME . ' is forbidden');
  46. }
  47. /**
  48. * @return null
  49. */
  50. public function getLastModified() {
  51. return null;
  52. }
  53. /**
  54. * @throws Forbidden
  55. */
  56. public function delete() {
  57. throw new Forbidden(self::FILENAME . ' may not be deleted.');
  58. }
  59. /**
  60. * @param array $properties
  61. * @return array
  62. */
  63. public function getProperties($properties) {
  64. $datetime = $this->timeFactory->getDateTime();
  65. return [
  66. '{DAV:}getcontentlength' => 42,
  67. '{DAV:}getlastmodified' => $datetime->format(\DateTime::RFC2822),
  68. ];
  69. }
  70. /**
  71. * @param PropPatch $propPatch
  72. * @throws Forbidden
  73. */
  74. public function propPatch(PropPatch $propPatch) {
  75. throw new Forbidden(self::FILENAME . '\'s properties may not be altered.');
  76. }
  77. }