15229eadeSGreg Roach<?php 25229eadeSGreg Roach 35229eadeSGreg Roach/** 45229eadeSGreg Roach * webtrees: online genealogy 589f7189bSGreg Roach * Copyright (C) 2021 webtrees development team 65229eadeSGreg Roach * This program is free software: you can redistribute it and/or modify 75229eadeSGreg Roach * it under the terms of the GNU General Public License as published by 85229eadeSGreg Roach * the Free Software Foundation, either version 3 of the License, or 95229eadeSGreg Roach * (at your option) any later version. 105229eadeSGreg Roach * This program is distributed in the hope that it will be useful, 115229eadeSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 125229eadeSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 135229eadeSGreg Roach * GNU General Public License for more details. 145229eadeSGreg 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/>. 165229eadeSGreg Roach */ 17fcfa147eSGreg Roach 185229eadeSGreg Roachdeclare(strict_types=1); 195229eadeSGreg Roach 205229eadeSGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers; 215229eadeSGreg Roach 225229eadeSGreg Roachuse Fisharebest\Webtrees\Auth; 236b9cb339SGreg Roachuse Fisharebest\Webtrees\Registry; 24*b55cbc6bSGreg Roachuse Fisharebest\Webtrees\Validator; 255229eadeSGreg Roachuse Psr\Http\Message\ResponseInterface; 265229eadeSGreg Roachuse Psr\Http\Message\ServerRequestInterface; 275229eadeSGreg Roachuse Psr\Http\Server\RequestHandlerInterface; 285229eadeSGreg Roach 295229eadeSGreg Roachuse function array_merge; 305229eadeSGreg Roachuse function array_search; 315229eadeSGreg Roachuse function assert; 325229eadeSGreg Roachuse function implode; 335229eadeSGreg Roachuse function is_array; 345229eadeSGreg Roachuse function redirect; 355229eadeSGreg Roachuse function uksort; 365229eadeSGreg Roach 375229eadeSGreg Roach/** 385229eadeSGreg Roach * Reorder the media of an individual. 395229eadeSGreg Roach */ 405229eadeSGreg Roachclass ReorderMediaAction implements RequestHandlerInterface 415229eadeSGreg Roach{ 425229eadeSGreg Roach /** 435229eadeSGreg Roach * @param ServerRequestInterface $request 445229eadeSGreg Roach * 455229eadeSGreg Roach * @return ResponseInterface 465229eadeSGreg Roach */ 475229eadeSGreg Roach public function handle(ServerRequestInterface $request): ResponseInterface 485229eadeSGreg Roach { 49*b55cbc6bSGreg Roach $tree = Validator::attributes($request)->tree(); 50*b55cbc6bSGreg Roach $xref = Validator::attributes($request)->isXref()->string('xref'); 516b9cb339SGreg Roach $individual = Registry::individualFactory()->make($xref, $tree); 52ddeb3354SGreg Roach $individual = Auth::checkIndividualAccess($individual, true); 53b46c87bdSGreg Roach $params = (array) $request->getParsedBody(); 54b46c87bdSGreg Roach 55b46c87bdSGreg Roach $order = $params['order']; 5675964c75SGreg Roach assert(is_array($order)); 575229eadeSGreg Roach 581f244d77SGreg Roach $fake_facts = ['0 @' . $individual->xref() . '@ INDI']; 595229eadeSGreg Roach $sort_facts = []; 605229eadeSGreg Roach $keep_facts = []; 615229eadeSGreg Roach 625229eadeSGreg Roach // Split facts into OBJE and other 635229eadeSGreg Roach foreach ($individual->facts() as $fact) { 64d0889c63SGreg Roach if ($fact->tag() === 'INDI:OBJE') { 655229eadeSGreg Roach $sort_facts[$fact->id()] = $fact->gedcom(); 665229eadeSGreg Roach } else { 675229eadeSGreg Roach $keep_facts[] = $fact->gedcom(); 685229eadeSGreg Roach } 695229eadeSGreg Roach } 705229eadeSGreg Roach 715229eadeSGreg Roach // Sort the facts 724c78e066SGreg Roach $callback = static fn (string $x, string $y): int => array_search($x, $order, true) <=> array_search($y, $order, true); 734c78e066SGreg Roach uksort($sort_facts, $callback); 745229eadeSGreg Roach 755229eadeSGreg Roach // Merge the facts 761f244d77SGreg Roach $gedcom = implode("\n", array_merge($fake_facts, $sort_facts, $keep_facts)); 775229eadeSGreg Roach 785229eadeSGreg Roach $individual->updateRecord($gedcom, false); 795229eadeSGreg Roach 805229eadeSGreg Roach return redirect($individual->url()); 815229eadeSGreg Roach } 825229eadeSGreg Roach} 83