diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2023-07-10 20:53:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-10 20:53:15 +0200 |
commit | cdc51554b2ca79bae638476c1f95ec58391bd596 (patch) | |
tree | 4f474b9af6fe45bb9149e8a8e6ad3791f6ffb928 /apps/dav/lib/Connector/Sabre/Exception/TooManyRequests.php | |
parent | 6b79c81b34ff55d9a766b59161a04fdf28193ca7 (diff) | |
parent | ae691e0986ea243a8a431f6758a873bd4cf3771e (diff) | |
download | nextcloud-server-cdc51554b2ca79bae638476c1f95ec58391bd596.tar.gz nextcloud-server-cdc51554b2ca79bae638476c1f95ec58391bd596.zip |
Merge pull request #39253 from nextcloud/backport/38046/stable25
[stable25] fix(dav): Abort requests with 429 instead of waiting
Diffstat (limited to 'apps/dav/lib/Connector/Sabre/Exception/TooManyRequests.php')
-rw-r--r-- | apps/dav/lib/Connector/Sabre/Exception/TooManyRequests.php | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/apps/dav/lib/Connector/Sabre/Exception/TooManyRequests.php b/apps/dav/lib/Connector/Sabre/Exception/TooManyRequests.php new file mode 100644 index 00000000000..1110797aed4 --- /dev/null +++ b/apps/dav/lib/Connector/Sabre/Exception/TooManyRequests.php @@ -0,0 +1,55 @@ +<?php + +declare(strict_types=1); +/** + * @copyright Copyright (c) 2023 Joas Schilling <coding@schilljs.com> + * + * @author Joas Schilling <coding@schilljs.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * 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 + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OCA\DAV\Connector\Sabre\Exception; + +use DOMElement; +use Sabre\DAV\Exception\NotAuthenticated; +use Sabre\DAV\Server; + +class TooManyRequests extends NotAuthenticated { + public const NS_OWNCLOUD = 'http://owncloud.org/ns'; + + public function getHTTPCode() { + return 429; + } + + /** + * This method allows the exception to include additional information + * into the WebDAV error response + * + * @param Server $server + * @param DOMElement $errorNode + * @return void + */ + public function serialize(Server $server, DOMElement $errorNode) { + + // set ownCloud namespace + $errorNode->setAttribute('xmlns:o', self::NS_OWNCLOUD); + + $error = $errorNode->ownerDocument->createElementNS('o:', 'o:hint', 'too many requests'); + $errorNode->appendChild($error); + } +} |