mirror of
https://github.com/nextcloud/server.git
synced 2025-02-06 01:20:16 +00:00
381077028a
Signed-off-by: provokateurin <kate@provokateurin.de>
31 lines
729 B
PHP
31 lines
729 B
PHP
<?php
|
|
|
|
declare(strict_types = 1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\DAV\Profiler;
|
|
|
|
use OCP\IRequest;
|
|
use Sabre\DAV\Server;
|
|
use Sabre\HTTP\RequestInterface;
|
|
use Sabre\HTTP\ResponseInterface;
|
|
|
|
class ProfilerPlugin extends \Sabre\DAV\ServerPlugin {
|
|
public function __construct(
|
|
private IRequest $request,
|
|
) {
|
|
}
|
|
|
|
/** @return void */
|
|
public function initialize(Server $server) {
|
|
$server->on('afterMethod:*', [$this, 'afterMethod']);
|
|
}
|
|
|
|
/** @return void */
|
|
public function afterMethod(RequestInterface $request, ResponseInterface $response) {
|
|
$response->addHeader('X-Debug-Token', $this->request->getId());
|
|
}
|
|
}
|