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.

Forbidden.php 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  6. * @author Joas Schilling <coding@schilljs.com>
  7. *
  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 OCA\DAV\Connector\Sabre\Exception;
  24. class Forbidden extends \Sabre\DAV\Exception\Forbidden {
  25. public const NS_OWNCLOUD = 'http://owncloud.org/ns';
  26. /**
  27. * @var bool
  28. */
  29. private $retry;
  30. /**
  31. * @param string $message
  32. * @param bool $retry
  33. * @param \Exception $previous
  34. */
  35. public function __construct($message, $retry = false, \Exception $previous = null) {
  36. parent::__construct($message, 0, $previous);
  37. $this->retry = $retry;
  38. }
  39. /**
  40. * This method allows the exception to include additional information
  41. * into the WebDAV error response
  42. *
  43. * @param \Sabre\DAV\Server $server
  44. * @param \DOMElement $errorNode
  45. * @return void
  46. */
  47. public function serialize(\Sabre\DAV\Server $server, \DOMElement $errorNode) {
  48. // set ownCloud namespace
  49. $errorNode->setAttribute('xmlns:o', self::NS_OWNCLOUD);
  50. // adding the retry node
  51. $error = $errorNode->ownerDocument->createElementNS('o:', 'o:retry', var_export($this->retry, true));
  52. $errorNode->appendChild($error);
  53. // adding the message node
  54. $error = $errorNode->ownerDocument->createElementNS('o:', 'o:reason', $this->getMessage());
  55. $errorNode->appendChild($error);
  56. }
  57. }