18e0e1b25SGreg Roach<?php 28e0e1b25SGreg Roach 38e0e1b25SGreg Roach/** 48e0e1b25SGreg Roach * webtrees: online genealogy 5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 68e0e1b25SGreg Roach * This program is free software: you can redistribute it and/or modify 78e0e1b25SGreg Roach * it under the terms of the GNU General Public License as published by 88e0e1b25SGreg Roach * the Free Software Foundation, either version 3 of the License, or 98e0e1b25SGreg Roach * (at your option) any later version. 108e0e1b25SGreg Roach * This program is distributed in the hope that it will be useful, 118e0e1b25SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 128e0e1b25SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 138e0e1b25SGreg Roach * GNU General Public License for more details. 148e0e1b25SGreg 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/>. 168e0e1b25SGreg Roach */ 178e0e1b25SGreg Roach 188e0e1b25SGreg Roachdeclare(strict_types=1); 198e0e1b25SGreg Roach 208e0e1b25SGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers; 218e0e1b25SGreg Roach 228e0e1b25SGreg Roachuse Fisharebest\Webtrees\Module\ModuleBlockInterface; 238e0e1b25SGreg Roachuse Fisharebest\Webtrees\Services\HomePageService; 248e0e1b25SGreg Roachuse Fisharebest\Webtrees\Tree; 25b55cbc6bSGreg Roachuse Fisharebest\Webtrees\Validator; 268e0e1b25SGreg Roachuse Illuminate\Support\Collection; 278e0e1b25SGreg Roachuse Psr\Http\Message\ResponseInterface; 288e0e1b25SGreg Roachuse Psr\Http\Message\ServerRequestInterface; 298e0e1b25SGreg Roachuse Psr\Http\Server\RequestHandlerInterface; 308e0e1b25SGreg Roach 318e0e1b25SGreg Roachuse function redirect; 328e0e1b25SGreg Roachuse function route; 338e0e1b25SGreg Roach 348e0e1b25SGreg Roach/** 357893c81aSGreg Roach * Save updated blocks on a tree's page. 368e0e1b25SGreg Roach */ 378e0e1b25SGreg Roachclass TreePageUpdate implements RequestHandlerInterface 388e0e1b25SGreg Roach{ 39c4943cffSGreg Roach private HomePageService $home_page_service; 408e0e1b25SGreg Roach 418e0e1b25SGreg Roach /** 428e0e1b25SGreg Roach * @param HomePageService $home_page_service 438e0e1b25SGreg Roach */ 448e0e1b25SGreg Roach public function __construct(HomePageService $home_page_service) 458e0e1b25SGreg Roach { 468e0e1b25SGreg Roach $this->home_page_service = $home_page_service; 478e0e1b25SGreg Roach } 488e0e1b25SGreg Roach 498e0e1b25SGreg Roach /** 508e0e1b25SGreg Roach * @param ServerRequestInterface $request 518e0e1b25SGreg Roach * 528e0e1b25SGreg Roach * @return ResponseInterface 538e0e1b25SGreg Roach */ 548e0e1b25SGreg Roach public function handle(ServerRequestInterface $request): ResponseInterface 558e0e1b25SGreg Roach { 56b55cbc6bSGreg Roach $tree = Validator::attributes($request)->tree(); 57b55cbc6bSGreg Roach $user = Validator::attributes($request)->user(); 58748dbe15SGreg Roach $defaults = Validator::parsedBody($request)->boolean('defaults', false); 598e0e1b25SGreg Roach 608e0e1b25SGreg Roach if ($defaults) { 61f6924bc8SGreg Roach $default_tree = new Tree(-1, 'DEFAULT', 'DEFAULT'); 62f6924bc8SGreg Roach 63f6924bc8SGreg Roach $main_blocks = $this->home_page_service->treeBlocks($default_tree, $user, ModuleBlockInterface::MAIN_BLOCKS) 64*f25fc0f9SGreg Roach ->map(static fn(ModuleBlockInterface $block) => $block->name()); 65f6924bc8SGreg Roach $side_blocks = $this->home_page_service->treeBlocks($default_tree, $user, ModuleBlockInterface::SIDE_BLOCKS) 66*f25fc0f9SGreg Roach ->map(static fn(ModuleBlockInterface $block) => $block->name()); 678e0e1b25SGreg Roach } else { 68748dbe15SGreg Roach $main_blocks = new Collection(Validator::parsedBody($request)->array(ModuleBlockInterface::MAIN_BLOCKS)); 69748dbe15SGreg Roach $side_blocks = new Collection(Validator::parsedBody($request)->array(ModuleBlockInterface::SIDE_BLOCKS)); 708e0e1b25SGreg Roach } 718e0e1b25SGreg Roach 728e0e1b25SGreg Roach $this->home_page_service->updateTreeBlocks($tree->id(), $main_blocks, $side_blocks); 738e0e1b25SGreg Roach 748e0e1b25SGreg Roach return redirect(route(TreePage::class, ['tree' => $tree->name()])); 758e0e1b25SGreg Roach } 768e0e1b25SGreg Roach} 77