122e73debSGreg Roach<?php 222e73debSGreg Roach 322e73debSGreg Roach/** 422e73debSGreg Roach * webtrees: online genealogy 5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 622e73debSGreg Roach * This program is free software: you can redistribute it and/or modify 722e73debSGreg Roach * it under the terms of the GNU General Public License as published by 822e73debSGreg Roach * the Free Software Foundation, either version 3 of the License, or 922e73debSGreg Roach * (at your option) any later version. 1022e73debSGreg Roach * This program is distributed in the hope that it will be useful, 1122e73debSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 1222e73debSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1322e73debSGreg Roach * GNU General Public License for more details. 1422e73debSGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 1622e73debSGreg Roach */ 1722e73debSGreg Roach 1822e73debSGreg Roachdeclare(strict_types=1); 1922e73debSGreg Roach 2022e73debSGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers; 2122e73debSGreg Roach 2222e73debSGreg Roachuse Fisharebest\Webtrees\Services\PendingChangesService; 23b55cbc6bSGreg Roachuse Fisharebest\Webtrees\Validator; 2422e73debSGreg Roachuse Psr\Http\Message\ResponseInterface; 2522e73debSGreg Roachuse Psr\Http\Message\ServerRequestInterface; 2622e73debSGreg Roachuse Psr\Http\Server\RequestHandlerInterface; 2722e73debSGreg Roach 2822e73debSGreg Roachuse function response; 2922e73debSGreg Roach 3022e73debSGreg Roach/** 3122e73debSGreg Roach * Delete pending changes. 3222e73debSGreg Roach */ 3322e73debSGreg Roachclass PendingChangesLogDelete implements RequestHandlerInterface 3422e73debSGreg Roach{ 35c4943cffSGreg Roach private PendingChangesService $pending_changes_service; 3622e73debSGreg Roach 3722e73debSGreg Roach /** 3822e73debSGreg Roach * @param PendingChangesService $pending_changes_service 3922e73debSGreg Roach */ 4022e73debSGreg Roach public function __construct(PendingChangesService $pending_changes_service) 4122e73debSGreg Roach { 4222e73debSGreg Roach $this->pending_changes_service = $pending_changes_service; 4322e73debSGreg Roach } 4422e73debSGreg Roach 4522e73debSGreg Roach /** 4622e73debSGreg Roach * @param ServerRequestInterface $request 4722e73debSGreg Roach * 4822e73debSGreg Roach * @return ResponseInterface 4922e73debSGreg Roach */ 5022e73debSGreg Roach public function handle(ServerRequestInterface $request): ResponseInterface 5122e73debSGreg Roach { 52b55cbc6bSGreg Roach $tree = Validator::attributes($request)->tree(); 5357bfa969SGreg Roach $params = $request->getQueryParams(); 5457bfa969SGreg Roach $params['tree'] = $tree->name(); 5557bfa969SGreg Roach 5657bfa969SGreg Roach $this->pending_changes_service->changesQuery($params)->delete(); 5722e73debSGreg Roach 5822e73debSGreg Roach return response(); 5922e73debSGreg Roach } 6022e73debSGreg Roach} 61