18c2e8227SGreg Roach<?php 28c2e8227SGreg Roach/** 38c2e8227SGreg Roach * webtrees: online genealogy 48fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team 58c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify 68c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by 78c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or 88c2e8227SGreg Roach * (at your option) any later version. 98c2e8227SGreg Roach * This program is distributed in the hope that it will be useful, 108c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 118c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 128c2e8227SGreg Roach * GNU General Public License for more details. 138c2e8227SGreg Roach * You should have received a copy of the GNU General Public License 148c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 158c2e8227SGreg Roach */ 16e7f56f2aSGreg Roachdeclare(strict_types=1); 17e7f56f2aSGreg Roach 1876692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module; 1976692c8bSGreg Roach 200e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth; 21e5a6b4d4SGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface; 220bc54ba3SGreg Roachuse Fisharebest\Webtrees\Exceptions\FamilyNotFoundException; 230bc54ba3SGreg Roachuse Fisharebest\Webtrees\Exceptions\IndividualNotFoundException; 240bc54ba3SGreg Roachuse Fisharebest\Webtrees\Exceptions\MediaNotFoundException; 250bc54ba3SGreg Roachuse Fisharebest\Webtrees\Exceptions\NoteNotFoundException; 260bc54ba3SGreg Roachuse Fisharebest\Webtrees\Exceptions\RepositoryNotFoundException; 270bc54ba3SGreg Roachuse Fisharebest\Webtrees\Exceptions\SourceNotFoundException; 280e62c4b8SGreg Roachuse Fisharebest\Webtrees\Family; 295a78cd34SGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsExport; 305a78cd34SGreg Roachuse Fisharebest\Webtrees\Gedcom; 310e62c4b8SGreg Roachuse Fisharebest\Webtrees\GedcomRecord; 320e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N; 330e62c4b8SGreg Roachuse Fisharebest\Webtrees\Individual; 345a78cd34SGreg Roachuse Fisharebest\Webtrees\Media; 350e62c4b8SGreg Roachuse Fisharebest\Webtrees\Menu; 365a78cd34SGreg Roachuse Fisharebest\Webtrees\Note; 375a78cd34SGreg Roachuse Fisharebest\Webtrees\Repository; 38e5a6b4d4SGreg Roachuse Fisharebest\Webtrees\Services\UserService; 390e62c4b8SGreg Roachuse Fisharebest\Webtrees\Session; 405a78cd34SGreg Roachuse Fisharebest\Webtrees\Source; 41aee13b6dSGreg Roachuse Fisharebest\Webtrees\Tree; 425a78cd34SGreg Roachuse League\Flysystem\Filesystem; 435a78cd34SGreg Roachuse League\Flysystem\ZipArchive\ZipArchiveAdapter; 446ccdf4f0SGreg Roachuse Psr\Http\Message\ResponseInterface; 456ccdf4f0SGreg Roachuse Psr\Http\Message\ServerRequestInterface; 466ccdf4f0SGreg Roachuse Psr\Http\Message\StreamFactoryInterface; 47*eb235819SGreg Roachuse function app; 48e5a6b4d4SGreg Roachuse function str_replace; 498c2e8227SGreg Roach 508c2e8227SGreg Roach/** 518c2e8227SGreg Roach * Class ClippingsCartModule 528c2e8227SGreg Roach */ 5337eb8894SGreg Roachclass ClippingsCartModule extends AbstractModule implements ModuleMenuInterface 54c1010edaSGreg Roach{ 5549a243cbSGreg Roach use ModuleMenuTrait; 5649a243cbSGreg Roach 575a78cd34SGreg Roach // Routes that have a record which can be added to the clipboard 5816d6367aSGreg Roach private const ROUTES_WITH_RECORDS = [ 59c1010edaSGreg Roach 'family', 60c1010edaSGreg Roach 'individual', 61c1010edaSGreg Roach 'media', 62c1010edaSGreg Roach 'note', 63c1010edaSGreg Roach 'repository', 64c1010edaSGreg Roach 'source', 65c1010edaSGreg Roach ]; 665a78cd34SGreg Roach 6749a243cbSGreg Roach /** @var int The default access level for this module. It can be changed in the control panel. */ 6849a243cbSGreg Roach protected $access_level = Auth::PRIV_USER; 6949a243cbSGreg Roach 70961ec755SGreg Roach /** 71e5a6b4d4SGreg Roach * @var UserService 72e5a6b4d4SGreg Roach */ 73e5a6b4d4SGreg Roach private $user_service; 74e5a6b4d4SGreg Roach 75e5a6b4d4SGreg Roach /** 76e5a6b4d4SGreg Roach * ClippingsCartModule constructor. 77e5a6b4d4SGreg Roach * 78e5a6b4d4SGreg Roach * @param UserService $user_service 79e5a6b4d4SGreg Roach */ 80e5a6b4d4SGreg Roach public function __construct(UserService $user_service) 81e5a6b4d4SGreg Roach { 82e5a6b4d4SGreg Roach $this->user_service = $user_service; 83e5a6b4d4SGreg Roach } 84e5a6b4d4SGreg Roach 85e5a6b4d4SGreg Roach /** 860cfd6963SGreg Roach * How should this module be identified in the control panel, etc.? 87961ec755SGreg Roach * 88961ec755SGreg Roach * @return string 89961ec755SGreg Roach */ 9049a243cbSGreg Roach public function title(): string 91c1010edaSGreg Roach { 92bbb76c12SGreg Roach /* I18N: Name of a module */ 93bbb76c12SGreg Roach return I18N::translate('Clippings cart'); 948c2e8227SGreg Roach } 958c2e8227SGreg Roach 96961ec755SGreg Roach /** 97961ec755SGreg Roach * A sentence describing what this module does. 98961ec755SGreg Roach * 99961ec755SGreg Roach * @return string 100961ec755SGreg Roach */ 10149a243cbSGreg Roach public function description(): string 102c1010edaSGreg Roach { 103bbb76c12SGreg Roach /* I18N: Description of the “Clippings cart” module */ 104bbb76c12SGreg Roach return I18N::translate('Select records from your family tree and save them as a GEDCOM file.'); 1058c2e8227SGreg Roach } 1068c2e8227SGreg Roach 1070ee13198SGreg Roach /** 10849a243cbSGreg Roach * The default position for this menu. It can be changed in the control panel. 1090ee13198SGreg Roach * 1100ee13198SGreg Roach * @return int 1110ee13198SGreg Roach */ 1128f53f488SRico Sonntag public function defaultMenuOrder(): int 113c1010edaSGreg Roach { 114353b36abSGreg Roach return 6; 1158c2e8227SGreg Roach } 1168c2e8227SGreg Roach 1170ee13198SGreg Roach /** 1180ee13198SGreg Roach * A menu, to be added to the main application menu. 1190ee13198SGreg Roach * 120aee13b6dSGreg Roach * @param Tree $tree 121aee13b6dSGreg Roach * 1220ee13198SGreg Roach * @return Menu|null 1230ee13198SGreg Roach */ 12446295629SGreg Roach public function getMenu(Tree $tree): ?Menu 125c1010edaSGreg Roach { 126*eb235819SGreg Roach /** @var ServerRequestInterface $request */ 1276ccdf4f0SGreg Roach $request = app(ServerRequestInterface::class); 1288c2e8227SGreg Roach 129*eb235819SGreg Roach $route = $request->getQueryParams()['route'] ?? ''; 1305a78cd34SGreg Roach 1315a78cd34SGreg Roach $submenus = [ 13249a243cbSGreg Roach new Menu($this->title(), route('module', [ 13326684e68SGreg Roach 'module' => $this->name(), 134c1010edaSGreg Roach 'action' => 'Show', 135aa6f03bbSGreg Roach 'ged' => $tree->name(), 136c1010edaSGreg Roach ]), 'menu-clippings-cart', ['rel' => 'nofollow']), 1375a78cd34SGreg Roach ]; 1385a78cd34SGreg Roach 13922d65e5aSGreg Roach if (in_array($route, self::ROUTES_WITH_RECORDS, true)) { 140*eb235819SGreg Roach $xref = $route = $request->getQueryParams()['xref'] ?? ''; 1415a78cd34SGreg Roach $action = 'Add' . ucfirst($route); 142c1010edaSGreg Roach $add_route = route('module', [ 14326684e68SGreg Roach 'module' => $this->name(), 144c1010edaSGreg Roach 'action' => $action, 145c1010edaSGreg Roach 'xref' => $xref, 146aa6f03bbSGreg Roach 'ged' => $tree->name(), 147c1010edaSGreg Roach ]); 1485a78cd34SGreg Roach 14925b2dde3SGreg Roach $submenus[] = new Menu(I18N::translate('Add to the clippings cart'), $add_route, 'menu-clippings-add', ['rel' => 'nofollow']); 1508c2e8227SGreg Roach } 151cbc1590aSGreg Roach 1525a78cd34SGreg Roach if (!$this->isCartEmpty($tree)) { 153c1010edaSGreg Roach $submenus[] = new Menu(I18N::translate('Empty the clippings cart'), route('module', [ 15426684e68SGreg Roach 'module' => $this->name(), 155c1010edaSGreg Roach 'action' => 'Empty', 156aa6f03bbSGreg Roach 'ged' => $tree->name(), 157c1010edaSGreg Roach ]), 'menu-clippings-empty', ['rel' => 'nofollow']); 158c1010edaSGreg Roach $submenus[] = new Menu(I18N::translate('Download'), route('module', [ 15926684e68SGreg Roach 'module' => $this->name(), 160c1010edaSGreg Roach 'action' => 'DownloadForm', 161aa6f03bbSGreg Roach 'ged' => $tree->name(), 162c1010edaSGreg Roach ]), 'menu-clippings-download', ['rel' => 'nofollow']); 1635a78cd34SGreg Roach } 1645a78cd34SGreg Roach 16549a243cbSGreg Roach return new Menu($this->title(), '#', 'menu-clippings', ['rel' => 'nofollow'], $submenus); 1668c2e8227SGreg Roach } 1678c2e8227SGreg Roach 16876692c8bSGreg Roach /** 1696ccdf4f0SGreg Roach * @param ServerRequestInterface $request 170b6db7c1fSGreg Roach * @param Tree $tree 17176692c8bSGreg Roach * 1726ccdf4f0SGreg Roach * @return ResponseInterface 17376692c8bSGreg Roach */ 1746ccdf4f0SGreg Roach public function getDownloadAction(ServerRequestInterface $request, Tree $tree): ResponseInterface 175c1010edaSGreg Roach { 1769e648e55SGreg Roach $privatize_export = $request->get('privatize_export', ''); 1775a78cd34SGreg Roach $convert = (bool) $request->get('convert'); 1788c2e8227SGreg Roach 17913abd6f3SGreg Roach $cart = Session::get('cart', []); 1808c2e8227SGreg Roach 181aa6f03bbSGreg Roach $xrefs = array_keys($cart[$tree->name()] ?? []); 1825a78cd34SGreg Roach 1835a78cd34SGreg Roach // Create a new/empty .ZIP file 1845a78cd34SGreg Roach $temp_zip_file = tempnam(sys_get_temp_dir(), 'webtrees-zip-'); 1855a78cd34SGreg Roach $zip_filesystem = new Filesystem(new ZipArchiveAdapter($temp_zip_file)); 1865a78cd34SGreg Roach 1875a78cd34SGreg Roach // Media file prefix 1885a78cd34SGreg Roach $path = $tree->getPreference('MEDIA_DIRECTORY'); 1895a78cd34SGreg Roach 1905a78cd34SGreg Roach // GEDCOM file header 191a3d8780cSGreg Roach $filetext = FunctionsExport::gedcomHeader($tree, $convert ? 'ANSI' : 'UTF-8'); 1925a78cd34SGreg Roach 1935a78cd34SGreg Roach switch ($privatize_export) { 1945a78cd34SGreg Roach case 'gedadmin': 1955a78cd34SGreg Roach $access_level = Auth::PRIV_NONE; 1965a78cd34SGreg Roach break; 1975a78cd34SGreg Roach case 'user': 1985a78cd34SGreg Roach $access_level = Auth::PRIV_USER; 1995a78cd34SGreg Roach break; 2005a78cd34SGreg Roach case 'visitor': 2015a78cd34SGreg Roach $access_level = Auth::PRIV_PRIVATE; 2025a78cd34SGreg Roach break; 2035a78cd34SGreg Roach case 'none': 2045a78cd34SGreg Roach default: 2055a78cd34SGreg Roach $access_level = Auth::PRIV_HIDE; 2065a78cd34SGreg Roach break; 2075a78cd34SGreg Roach } 2085a78cd34SGreg Roach 2095a78cd34SGreg Roach foreach ($xrefs as $xref) { 2105a78cd34SGreg Roach $object = GedcomRecord::getInstance($xref, $tree); 2115a78cd34SGreg Roach // The object may have been deleted since we added it to the cart.... 2125a78cd34SGreg Roach if ($object) { 2135a78cd34SGreg Roach $record = $object->privatizeGedcom($access_level); 2145a78cd34SGreg Roach // Remove links to objects that aren't in the cart 2158d0ebef0SGreg Roach preg_match_all('/\n1 ' . Gedcom::REGEX_TAG . ' @(' . Gedcom::REGEX_XREF . ')@(\n[2-9].*)*/', $record, $matches, PREG_SET_ORDER); 2165a78cd34SGreg Roach foreach ($matches as $match) { 2175a78cd34SGreg Roach if (!array_key_exists($match[1], $xrefs)) { 2185a78cd34SGreg Roach $record = str_replace($match[0], '', $record); 2195a78cd34SGreg Roach } 2205a78cd34SGreg Roach } 2218d0ebef0SGreg Roach preg_match_all('/\n2 ' . Gedcom::REGEX_TAG . ' @(' . Gedcom::REGEX_XREF . ')@(\n[3-9].*)*/', $record, $matches, PREG_SET_ORDER); 2225a78cd34SGreg Roach foreach ($matches as $match) { 2235a78cd34SGreg Roach if (!array_key_exists($match[1], $xrefs)) { 2245a78cd34SGreg Roach $record = str_replace($match[0], '', $record); 2255a78cd34SGreg Roach } 2265a78cd34SGreg Roach } 2278d0ebef0SGreg Roach preg_match_all('/\n3 ' . Gedcom::REGEX_TAG . ' @(' . Gedcom::REGEX_XREF . ')@(\n[4-9].*)*/', $record, $matches, PREG_SET_ORDER); 2285a78cd34SGreg Roach foreach ($matches as $match) { 2295a78cd34SGreg Roach if (!array_key_exists($match[1], $xrefs)) { 2305a78cd34SGreg Roach $record = str_replace($match[0], '', $record); 2315a78cd34SGreg Roach } 2325a78cd34SGreg Roach } 2335a78cd34SGreg Roach 23455167344SGreg Roach if ($object instanceof Individual || $object instanceof Family) { 2355a78cd34SGreg Roach $filetext .= $record . "\n"; 2365a78cd34SGreg Roach $filetext .= "1 SOUR @WEBTREES@\n"; 2371f273236SGreg Roach $filetext .= '2 PAGE ' . $object->url() . "\n"; 23855167344SGreg Roach } elseif ($object instanceof Source) { 2395a78cd34SGreg Roach $filetext .= $record . "\n"; 2401f273236SGreg Roach $filetext .= '1 NOTE ' . $object->url() . "\n"; 24155167344SGreg Roach } elseif ($object instanceof Media) { 24255167344SGreg Roach // Add the media files to the archive 2435a78cd34SGreg Roach foreach ($object->mediaFiles() as $media_file) { 2445a78cd34SGreg Roach if (file_exists($media_file->getServerFilename())) { 245e364afe4SGreg Roach $fp = fopen($media_file->getServerFilename(), 'rb'); 2465a78cd34SGreg Roach $zip_filesystem->writeStream($path . $media_file->filename(), $fp); 2475a78cd34SGreg Roach fclose($fp); 2485a78cd34SGreg Roach } 2495a78cd34SGreg Roach } 2505a78cd34SGreg Roach $filetext .= $record . "\n"; 25155167344SGreg Roach } else { 2525a78cd34SGreg Roach $filetext .= $record . "\n"; 2538c2e8227SGreg Roach } 2548c2e8227SGreg Roach } 2558c2e8227SGreg Roach } 2568c2e8227SGreg Roach 2575a78cd34SGreg Roach // Create a source, to indicate the source of the data. 2585a78cd34SGreg Roach $filetext .= "0 @WEBTREES@ SOUR\n1 TITL " . WT_BASE_URL . "\n"; 259e5a6b4d4SGreg Roach $author = $this->user_service->find((int) $tree->getPreference('CONTACT_USER_ID')); 2605a78cd34SGreg Roach if ($author !== null) { 261e5a6b4d4SGreg Roach $filetext .= '1 AUTH ' . $author->realName() . "\n"; 2625a78cd34SGreg Roach } 2635a78cd34SGreg Roach $filetext .= "0 TRLR\n"; 2645a78cd34SGreg Roach 2655a78cd34SGreg Roach // Make sure the preferred line endings are used 266a3d8780cSGreg Roach $filetext = str_replace('\n', Gedcom::EOL, $filetext); 2675a78cd34SGreg Roach 26855167344SGreg Roach if ($convert) { 2695a78cd34SGreg Roach $filetext = utf8_decode($filetext); 2708c2e8227SGreg Roach } 271cbc1590aSGreg Roach 2725a78cd34SGreg Roach // Finally add the GEDCOM file to the .ZIP file. 2735a78cd34SGreg Roach $zip_filesystem->write('clippings.ged', $filetext); 2745a78cd34SGreg Roach 2755a78cd34SGreg Roach // Need to force-close the filesystem 27602a92f80SGreg Roach unset($zip_filesystem); 2775a78cd34SGreg Roach 2786ccdf4f0SGreg Roach // Use a stream, so that we do not have to load the entire file into memory. 2796ccdf4f0SGreg Roach $stream = app(StreamFactoryInterface::class)->createStreamFromFile($temp_zip_file); 2805a78cd34SGreg Roach 2816ccdf4f0SGreg Roach return response() 2826ccdf4f0SGreg Roach ->withBody($stream) 2831b3d4731SGreg Roach ->withHeader('Content-Type', 'application/zip') 2841b3d4731SGreg Roach ->withHeader('Content-Tisposition', 'attachment; filename="clippings.zip'); 2858c2e8227SGreg Roach } 2868c2e8227SGreg Roach 2878c2e8227SGreg Roach /** 288b6db7c1fSGreg Roach * @param Tree $tree 289e5a6b4d4SGreg Roach * @param UserInterface $user 29076692c8bSGreg Roach * 2916ccdf4f0SGreg Roach * @return ResponseInterface 2928c2e8227SGreg Roach */ 2936ccdf4f0SGreg Roach public function getDownloadFormAction(Tree $tree, UserInterface $user): ResponseInterface 294c1010edaSGreg Roach { 2955a78cd34SGreg Roach $title = I18N::translate('Family tree clippings cart') . ' — ' . I18N::translate('Download'); 2968c2e8227SGreg Roach 2975a78cd34SGreg Roach return $this->viewResponse('modules/clippings/download', [ 2985a78cd34SGreg Roach 'is_manager' => Auth::isManager($tree, $user), 2995a78cd34SGreg Roach 'is_member' => Auth::isMember($tree, $user), 3005a78cd34SGreg Roach 'title' => $title, 3015a78cd34SGreg Roach ]); 3028c2e8227SGreg Roach } 3038c2e8227SGreg Roach 3045a78cd34SGreg Roach /** 305b6db7c1fSGreg Roach * @param Tree $tree 3065a78cd34SGreg Roach * 3076ccdf4f0SGreg Roach * @return ResponseInterface 3085a78cd34SGreg Roach */ 3096ccdf4f0SGreg Roach public function getEmptyAction(Tree $tree): ResponseInterface 310c1010edaSGreg Roach { 3115a78cd34SGreg Roach $cart = Session::get('cart', []); 312aa6f03bbSGreg Roach $cart[$tree->name()] = []; 3135a78cd34SGreg Roach Session::put('cart', $cart); 3148c2e8227SGreg Roach 315c1010edaSGreg Roach $url = route('module', [ 31626684e68SGreg Roach 'module' => $this->name(), 317c1010edaSGreg Roach 'action' => 'Show', 318aa6f03bbSGreg Roach 'ged' => $tree->name(), 319c1010edaSGreg Roach ]); 3205a78cd34SGreg Roach 3216ccdf4f0SGreg Roach return redirect($url); 3225a78cd34SGreg Roach } 3235a78cd34SGreg Roach 3245a78cd34SGreg Roach /** 3256ccdf4f0SGreg Roach * @param ServerRequestInterface $request 326b6db7c1fSGreg Roach * @param Tree $tree 3275a78cd34SGreg Roach * 3286ccdf4f0SGreg Roach * @return ResponseInterface 3295a78cd34SGreg Roach */ 3306ccdf4f0SGreg Roach public function postRemoveAction(ServerRequestInterface $request, Tree $tree): ResponseInterface 331c1010edaSGreg Roach { 3329e648e55SGreg Roach $xref = $request->get('xref', ''); 3335a78cd34SGreg Roach 3345a78cd34SGreg Roach $cart = Session::get('cart', []); 335aa6f03bbSGreg Roach unset($cart[$tree->name()][$xref]); 3365a78cd34SGreg Roach Session::put('cart', $cart); 3375a78cd34SGreg Roach 338c1010edaSGreg Roach $url = route('module', [ 33926684e68SGreg Roach 'module' => $this->name(), 340c1010edaSGreg Roach 'action' => 'Show', 341aa6f03bbSGreg Roach 'ged' => $tree->name(), 342c1010edaSGreg Roach ]); 3435a78cd34SGreg Roach 3446ccdf4f0SGreg Roach return redirect($url); 3455a78cd34SGreg Roach } 3465a78cd34SGreg Roach 3475a78cd34SGreg Roach /** 348b6db7c1fSGreg Roach * @param Tree $tree 3495a78cd34SGreg Roach * 3506ccdf4f0SGreg Roach * @return ResponseInterface 3515a78cd34SGreg Roach */ 3526ccdf4f0SGreg Roach public function getShowAction(Tree $tree): ResponseInterface 353c1010edaSGreg Roach { 3545a78cd34SGreg Roach return $this->viewResponse('modules/clippings/show', [ 3555a78cd34SGreg Roach 'records' => $this->allRecordsInCart($tree), 3565a78cd34SGreg Roach 'title' => I18N::translate('Family tree clippings cart'), 3575a78cd34SGreg Roach 'tree' => $tree, 3585a78cd34SGreg Roach ]); 3595a78cd34SGreg Roach } 3605a78cd34SGreg Roach 3615a78cd34SGreg Roach /** 3626ccdf4f0SGreg Roach * @param ServerRequestInterface $request 363b6db7c1fSGreg Roach * @param Tree $tree 3645a78cd34SGreg Roach * 3656ccdf4f0SGreg Roach * @return ResponseInterface 3665a78cd34SGreg Roach */ 3676ccdf4f0SGreg Roach public function getAddFamilyAction(ServerRequestInterface $request, Tree $tree): ResponseInterface 368c1010edaSGreg Roach { 3699e648e55SGreg Roach $xref = $request->get('xref', ''); 3705a78cd34SGreg Roach 3715a78cd34SGreg Roach $family = Family::getInstance($xref, $tree); 3725a78cd34SGreg Roach 3735a78cd34SGreg Roach if ($family === null) { 37459f2f229SGreg Roach throw new FamilyNotFoundException(); 3755a78cd34SGreg Roach } 3765a78cd34SGreg Roach 3775a78cd34SGreg Roach $options = $this->familyOptions($family); 3785a78cd34SGreg Roach 37939ca88baSGreg Roach $title = I18N::translate('Add %s to the clippings cart', $family->fullName()); 3805a78cd34SGreg Roach 3815a78cd34SGreg Roach return $this->viewResponse('modules/clippings/add-options', [ 3825a78cd34SGreg Roach 'options' => $options, 3835a78cd34SGreg Roach 'default' => key($options), 3845a78cd34SGreg Roach 'record' => $family, 3855a78cd34SGreg Roach 'title' => $title, 3865a78cd34SGreg Roach 'tree' => $tree, 3875a78cd34SGreg Roach ]); 3885a78cd34SGreg Roach } 3895a78cd34SGreg Roach 3905a78cd34SGreg Roach /** 3915a78cd34SGreg Roach * @param Family $family 3925a78cd34SGreg Roach * 3935a78cd34SGreg Roach * @return string[] 3945a78cd34SGreg Roach */ 395c1010edaSGreg Roach private function familyOptions(Family $family): array 396c1010edaSGreg Roach { 39739ca88baSGreg Roach $name = strip_tags($family->fullName()); 3985a78cd34SGreg Roach 3995a78cd34SGreg Roach return [ 4005a78cd34SGreg Roach 'parents' => $name, 401bbb76c12SGreg Roach /* I18N: %s is a family (husband + wife) */ 402bbb76c12SGreg Roach 'members' => I18N::translate('%s and their children', $name), 403bbb76c12SGreg Roach /* I18N: %s is a family (husband + wife) */ 404bbb76c12SGreg Roach 'descendants' => I18N::translate('%s and their descendants', $name), 4055a78cd34SGreg Roach ]; 4065a78cd34SGreg Roach } 4075a78cd34SGreg Roach 4085a78cd34SGreg Roach /** 4096ccdf4f0SGreg Roach * @param ServerRequestInterface $request 410b6db7c1fSGreg Roach * @param Tree $tree 4115a78cd34SGreg Roach * 4126ccdf4f0SGreg Roach * @return ResponseInterface 4135a78cd34SGreg Roach */ 4146ccdf4f0SGreg Roach public function postAddFamilyAction(ServerRequestInterface $request, Tree $tree): ResponseInterface 415c1010edaSGreg Roach { 4169e648e55SGreg Roach $xref = $request->get('xref', ''); 4179e648e55SGreg Roach $option = $request->get('option', ''); 4185a78cd34SGreg Roach 4195a78cd34SGreg Roach $family = Family::getInstance($xref, $tree); 4205a78cd34SGreg Roach 4215a78cd34SGreg Roach if ($family === null) { 42259f2f229SGreg Roach throw new FamilyNotFoundException(); 4235a78cd34SGreg Roach } 4245a78cd34SGreg Roach 4255a78cd34SGreg Roach switch ($option) { 4265a78cd34SGreg Roach case 'parents': 4275a78cd34SGreg Roach $this->addFamilyToCart($family); 4285a78cd34SGreg Roach break; 4295a78cd34SGreg Roach 4305a78cd34SGreg Roach case 'members': 4315a78cd34SGreg Roach $this->addFamilyAndChildrenToCart($family); 4325a78cd34SGreg Roach break; 4335a78cd34SGreg Roach 4345a78cd34SGreg Roach case 'descendants': 4355a78cd34SGreg Roach $this->addFamilyAndDescendantsToCart($family); 4365a78cd34SGreg Roach break; 4375a78cd34SGreg Roach } 4385a78cd34SGreg Roach 4396ccdf4f0SGreg Roach return redirect($family->url()); 4405a78cd34SGreg Roach } 4415a78cd34SGreg Roach 4425a78cd34SGreg Roach /** 4435a78cd34SGreg Roach * @param Family $family 44418d7a90dSGreg Roach * 44518d7a90dSGreg Roach * @return void 4465a78cd34SGreg Roach */ 447e364afe4SGreg Roach private function addFamilyToCart(Family $family): void 448c1010edaSGreg Roach { 4495a78cd34SGreg Roach $this->addRecordToCart($family); 4505a78cd34SGreg Roach 45139ca88baSGreg Roach foreach ($family->spouses() as $spouse) { 4525a78cd34SGreg Roach $this->addRecordToCart($spouse); 4535a78cd34SGreg Roach } 4545a78cd34SGreg Roach } 4555a78cd34SGreg Roach 4565a78cd34SGreg Roach /** 4575a78cd34SGreg Roach * @param Family $family 45818d7a90dSGreg Roach * 45918d7a90dSGreg Roach * @return void 4605a78cd34SGreg Roach */ 461e364afe4SGreg Roach private function addFamilyAndChildrenToCart(Family $family): void 462c1010edaSGreg Roach { 4635a78cd34SGreg Roach $this->addRecordToCart($family); 4645a78cd34SGreg Roach 46539ca88baSGreg Roach foreach ($family->spouses() as $spouse) { 4665a78cd34SGreg Roach $this->addRecordToCart($spouse); 4675a78cd34SGreg Roach } 46839ca88baSGreg Roach foreach ($family->children() as $child) { 4695a78cd34SGreg Roach $this->addRecordToCart($child); 4705a78cd34SGreg Roach } 4715a78cd34SGreg Roach } 4725a78cd34SGreg Roach 4735a78cd34SGreg Roach /** 4745a78cd34SGreg Roach * @param Family $family 47518d7a90dSGreg Roach * 47618d7a90dSGreg Roach * @return void 4775a78cd34SGreg Roach */ 478e364afe4SGreg Roach private function addFamilyAndDescendantsToCart(Family $family): void 479c1010edaSGreg Roach { 4805a78cd34SGreg Roach $this->addRecordToCart($family); 4815a78cd34SGreg Roach 48239ca88baSGreg Roach foreach ($family->spouses() as $spouse) { 4835a78cd34SGreg Roach $this->addRecordToCart($spouse); 4845a78cd34SGreg Roach } 48539ca88baSGreg Roach foreach ($family->children() as $child) { 4865a78cd34SGreg Roach $this->addRecordToCart($child); 48739ca88baSGreg Roach foreach ($child->spouseFamilies() as $child_family) { 4885a78cd34SGreg Roach $this->addFamilyAndDescendantsToCart($child_family); 4895a78cd34SGreg Roach } 4905a78cd34SGreg Roach } 4915a78cd34SGreg Roach } 4925a78cd34SGreg Roach 4935a78cd34SGreg Roach /** 4946ccdf4f0SGreg Roach * @param ServerRequestInterface $request 495b6db7c1fSGreg Roach * @param Tree $tree 4965a78cd34SGreg Roach * 4976ccdf4f0SGreg Roach * @return ResponseInterface 4985a78cd34SGreg Roach */ 4996ccdf4f0SGreg Roach public function getAddIndividualAction(ServerRequestInterface $request, Tree $tree): ResponseInterface 500c1010edaSGreg Roach { 5019e648e55SGreg Roach $xref = $request->get('xref', ''); 5025a78cd34SGreg Roach 5035a78cd34SGreg Roach $individual = Individual::getInstance($xref, $tree); 5045a78cd34SGreg Roach 5055a78cd34SGreg Roach if ($individual === null) { 50659f2f229SGreg Roach throw new IndividualNotFoundException(); 5075a78cd34SGreg Roach } 5085a78cd34SGreg Roach 5095a78cd34SGreg Roach $options = $this->individualOptions($individual); 5105a78cd34SGreg Roach 51139ca88baSGreg Roach $title = I18N::translate('Add %s to the clippings cart', $individual->fullName()); 5125a78cd34SGreg Roach 5135a78cd34SGreg Roach return $this->viewResponse('modules/clippings/add-options', [ 5145a78cd34SGreg Roach 'options' => $options, 5155a78cd34SGreg Roach 'default' => key($options), 5165a78cd34SGreg Roach 'record' => $individual, 5175a78cd34SGreg Roach 'title' => $title, 5185a78cd34SGreg Roach 'tree' => $tree, 5195a78cd34SGreg Roach ]); 5205a78cd34SGreg Roach } 5215a78cd34SGreg Roach 5225a78cd34SGreg Roach /** 5235a78cd34SGreg Roach * @param Individual $individual 5245a78cd34SGreg Roach * 5255a78cd34SGreg Roach * @return string[] 5265a78cd34SGreg Roach */ 527c1010edaSGreg Roach private function individualOptions(Individual $individual): array 528c1010edaSGreg Roach { 52939ca88baSGreg Roach $name = strip_tags($individual->fullName()); 5305a78cd34SGreg Roach 53139ca88baSGreg Roach if ($individual->sex() === 'F') { 5325a78cd34SGreg Roach return [ 5335a78cd34SGreg Roach 'self' => $name, 5345a78cd34SGreg Roach 'parents' => I18N::translate('%s, her parents and siblings', $name), 5355a78cd34SGreg Roach 'spouses' => I18N::translate('%s, her spouses and children', $name), 5365a78cd34SGreg Roach 'ancestors' => I18N::translate('%s and her ancestors', $name), 5375a78cd34SGreg Roach 'ancestor_families' => I18N::translate('%s, her ancestors and their families', $name), 5385a78cd34SGreg Roach 'descendants' => I18N::translate('%s, her spouses and descendants', $name), 5395a78cd34SGreg Roach ]; 540b2ce94c6SRico Sonntag } 541b2ce94c6SRico Sonntag 5425a78cd34SGreg Roach return [ 5435a78cd34SGreg Roach 'self' => $name, 5445a78cd34SGreg Roach 'parents' => I18N::translate('%s, his parents and siblings', $name), 5455a78cd34SGreg Roach 'spouses' => I18N::translate('%s, his spouses and children', $name), 5465a78cd34SGreg Roach 'ancestors' => I18N::translate('%s and his ancestors', $name), 5475a78cd34SGreg Roach 'ancestor_families' => I18N::translate('%s, his ancestors and their families', $name), 5485a78cd34SGreg Roach 'descendants' => I18N::translate('%s, his spouses and descendants', $name), 5495a78cd34SGreg Roach ]; 5505a78cd34SGreg Roach } 5515a78cd34SGreg Roach 5525a78cd34SGreg Roach /** 5536ccdf4f0SGreg Roach * @param ServerRequestInterface $request 554b6db7c1fSGreg Roach * @param Tree $tree 5555a78cd34SGreg Roach * 5566ccdf4f0SGreg Roach * @return ResponseInterface 5575a78cd34SGreg Roach */ 5586ccdf4f0SGreg Roach public function postAddIndividualAction(ServerRequestInterface $request, Tree $tree): ResponseInterface 559c1010edaSGreg Roach { 5609e648e55SGreg Roach $xref = $request->get('xref', ''); 5619e648e55SGreg Roach $option = $request->get('option', ''); 5625a78cd34SGreg Roach 5635a78cd34SGreg Roach $individual = Individual::getInstance($xref, $tree); 5645a78cd34SGreg Roach 5655a78cd34SGreg Roach if ($individual === null) { 56659f2f229SGreg Roach throw new IndividualNotFoundException(); 5675a78cd34SGreg Roach } 5685a78cd34SGreg Roach 5695a78cd34SGreg Roach switch ($option) { 5705a78cd34SGreg Roach case 'self': 5715a78cd34SGreg Roach $this->addRecordToCart($individual); 5725a78cd34SGreg Roach break; 5735a78cd34SGreg Roach 5745a78cd34SGreg Roach case 'parents': 57539ca88baSGreg Roach foreach ($individual->childFamilies() as $family) { 5765a78cd34SGreg Roach $this->addFamilyAndChildrenToCart($family); 5775a78cd34SGreg Roach } 5785a78cd34SGreg Roach break; 5795a78cd34SGreg Roach 5805a78cd34SGreg Roach case 'spouses': 58139ca88baSGreg Roach foreach ($individual->spouseFamilies() as $family) { 5825a78cd34SGreg Roach $this->addFamilyAndChildrenToCart($family); 5835a78cd34SGreg Roach } 5845a78cd34SGreg Roach break; 5855a78cd34SGreg Roach 5865a78cd34SGreg Roach case 'ancestors': 5875a78cd34SGreg Roach $this->addAncestorsToCart($individual); 5885a78cd34SGreg Roach break; 5895a78cd34SGreg Roach 5905a78cd34SGreg Roach case 'ancestor_families': 5915a78cd34SGreg Roach $this->addAncestorFamiliesToCart($individual); 5925a78cd34SGreg Roach break; 5935a78cd34SGreg Roach 5945a78cd34SGreg Roach case 'descendants': 59539ca88baSGreg Roach foreach ($individual->spouseFamilies() as $family) { 5965a78cd34SGreg Roach $this->addFamilyAndDescendantsToCart($family); 5975a78cd34SGreg Roach } 5985a78cd34SGreg Roach break; 5995a78cd34SGreg Roach } 6005a78cd34SGreg Roach 6016ccdf4f0SGreg Roach return redirect($individual->url()); 6025a78cd34SGreg Roach } 6035a78cd34SGreg Roach 6045a78cd34SGreg Roach /** 6055a78cd34SGreg Roach * @param Individual $individual 60618d7a90dSGreg Roach * 60718d7a90dSGreg Roach * @return void 6085a78cd34SGreg Roach */ 609e364afe4SGreg Roach private function addAncestorsToCart(Individual $individual): void 610c1010edaSGreg Roach { 6115a78cd34SGreg Roach $this->addRecordToCart($individual); 6125a78cd34SGreg Roach 61339ca88baSGreg Roach foreach ($individual->childFamilies() as $family) { 61439ca88baSGreg Roach foreach ($family->spouses() as $parent) { 6155a78cd34SGreg Roach $this->addAncestorsToCart($parent); 6165a78cd34SGreg Roach } 6175a78cd34SGreg Roach } 6185a78cd34SGreg Roach } 6195a78cd34SGreg Roach 6205a78cd34SGreg Roach /** 6215a78cd34SGreg Roach * @param Individual $individual 62218d7a90dSGreg Roach * 62318d7a90dSGreg Roach * @return void 6245a78cd34SGreg Roach */ 625e364afe4SGreg Roach private function addAncestorFamiliesToCart(Individual $individual): void 626c1010edaSGreg Roach { 62739ca88baSGreg Roach foreach ($individual->childFamilies() as $family) { 6285a78cd34SGreg Roach $this->addFamilyAndChildrenToCart($family); 62939ca88baSGreg Roach foreach ($family->spouses() as $parent) { 6305a78cd34SGreg Roach $this->addAncestorsToCart($parent); 6315a78cd34SGreg Roach } 6325a78cd34SGreg Roach } 6335a78cd34SGreg Roach } 6345a78cd34SGreg Roach 6355a78cd34SGreg Roach /** 6366ccdf4f0SGreg Roach * @param ServerRequestInterface $request 637b6db7c1fSGreg Roach * @param Tree $tree 6385a78cd34SGreg Roach * 6396ccdf4f0SGreg Roach * @return ResponseInterface 6405a78cd34SGreg Roach */ 6416ccdf4f0SGreg Roach public function getAddMediaAction(ServerRequestInterface $request, Tree $tree): ResponseInterface 642c1010edaSGreg Roach { 6439e648e55SGreg Roach $xref = $request->get('xref', ''); 6445a78cd34SGreg Roach 6455a78cd34SGreg Roach $media = Media::getInstance($xref, $tree); 6465a78cd34SGreg Roach 6475a78cd34SGreg Roach if ($media === null) { 64859f2f229SGreg Roach throw new MediaNotFoundException(); 6495a78cd34SGreg Roach } 6505a78cd34SGreg Roach 6515a78cd34SGreg Roach $options = $this->mediaOptions($media); 6525a78cd34SGreg Roach 65339ca88baSGreg Roach $title = I18N::translate('Add %s to the clippings cart', $media->fullName()); 6545a78cd34SGreg Roach 6555a78cd34SGreg Roach return $this->viewResponse('modules/clippings/add-options', [ 6565a78cd34SGreg Roach 'options' => $options, 6575a78cd34SGreg Roach 'default' => key($options), 6585a78cd34SGreg Roach 'record' => $media, 6595a78cd34SGreg Roach 'title' => $title, 6605a78cd34SGreg Roach 'tree' => $tree, 6615a78cd34SGreg Roach ]); 6625a78cd34SGreg Roach } 6635a78cd34SGreg Roach 6645a78cd34SGreg Roach /** 6655a78cd34SGreg Roach * @param Media $media 6665a78cd34SGreg Roach * 6675a78cd34SGreg Roach * @return string[] 6685a78cd34SGreg Roach */ 669c1010edaSGreg Roach private function mediaOptions(Media $media): array 670c1010edaSGreg Roach { 67139ca88baSGreg Roach $name = strip_tags($media->fullName()); 6725a78cd34SGreg Roach 6735a78cd34SGreg Roach return [ 6745a78cd34SGreg Roach 'self' => $name, 6755a78cd34SGreg Roach ]; 6765a78cd34SGreg Roach } 6775a78cd34SGreg Roach 6785a78cd34SGreg Roach /** 6796ccdf4f0SGreg Roach * @param ServerRequestInterface $request 680b6db7c1fSGreg Roach * @param Tree $tree 6815a78cd34SGreg Roach * 6826ccdf4f0SGreg Roach * @return ResponseInterface 6835a78cd34SGreg Roach */ 6846ccdf4f0SGreg Roach public function postAddMediaAction(ServerRequestInterface $request, Tree $tree): ResponseInterface 685c1010edaSGreg Roach { 6869e648e55SGreg Roach $xref = $request->get('xref', ''); 6875a78cd34SGreg Roach 6885a78cd34SGreg Roach $media = Media::getInstance($xref, $tree); 6895a78cd34SGreg Roach 6905a78cd34SGreg Roach if ($media === null) { 69159f2f229SGreg Roach throw new MediaNotFoundException(); 6925a78cd34SGreg Roach } 6935a78cd34SGreg Roach 6945a78cd34SGreg Roach $this->addRecordToCart($media); 6955a78cd34SGreg Roach 6966ccdf4f0SGreg Roach return redirect($media->url()); 6975a78cd34SGreg Roach } 6985a78cd34SGreg Roach 6995a78cd34SGreg Roach /** 7006ccdf4f0SGreg Roach * @param ServerRequestInterface $request 701b6db7c1fSGreg Roach * @param Tree $tree 7025a78cd34SGreg Roach * 7036ccdf4f0SGreg Roach * @return ResponseInterface 7045a78cd34SGreg Roach */ 7056ccdf4f0SGreg Roach public function getAddNoteAction(ServerRequestInterface $request, Tree $tree): ResponseInterface 706c1010edaSGreg Roach { 7079e648e55SGreg Roach $xref = $request->get('xref', ''); 7085a78cd34SGreg Roach 7095a78cd34SGreg Roach $note = Note::getInstance($xref, $tree); 7105a78cd34SGreg Roach 7115a78cd34SGreg Roach if ($note === null) { 71259f2f229SGreg Roach throw new NoteNotFoundException(); 7135a78cd34SGreg Roach } 7145a78cd34SGreg Roach 7155a78cd34SGreg Roach $options = $this->noteOptions($note); 7165a78cd34SGreg Roach 71739ca88baSGreg Roach $title = I18N::translate('Add %s to the clippings cart', $note->fullName()); 7185a78cd34SGreg Roach 7195a78cd34SGreg Roach return $this->viewResponse('modules/clippings/add-options', [ 7205a78cd34SGreg Roach 'options' => $options, 7215a78cd34SGreg Roach 'default' => key($options), 7225a78cd34SGreg Roach 'record' => $note, 7235a78cd34SGreg Roach 'title' => $title, 7245a78cd34SGreg Roach 'tree' => $tree, 7255a78cd34SGreg Roach ]); 7265a78cd34SGreg Roach } 7275a78cd34SGreg Roach 7285a78cd34SGreg Roach /** 7295a78cd34SGreg Roach * @param Note $note 7305a78cd34SGreg Roach * 7315a78cd34SGreg Roach * @return string[] 7325a78cd34SGreg Roach */ 733c1010edaSGreg Roach private function noteOptions(Note $note): array 734c1010edaSGreg Roach { 73539ca88baSGreg Roach $name = strip_tags($note->fullName()); 7365a78cd34SGreg Roach 7375a78cd34SGreg Roach return [ 7385a78cd34SGreg Roach 'self' => $name, 7395a78cd34SGreg Roach ]; 7405a78cd34SGreg Roach } 7415a78cd34SGreg Roach 7425a78cd34SGreg Roach /** 7436ccdf4f0SGreg Roach * @param ServerRequestInterface $request 744b6db7c1fSGreg Roach * @param Tree $tree 7455a78cd34SGreg Roach * 7466ccdf4f0SGreg Roach * @return ResponseInterface 7475a78cd34SGreg Roach */ 7486ccdf4f0SGreg Roach public function postAddNoteAction(ServerRequestInterface $request, Tree $tree): ResponseInterface 749c1010edaSGreg Roach { 7509e648e55SGreg Roach $xref = $request->get('xref', ''); 7515a78cd34SGreg Roach 7525a78cd34SGreg Roach $note = Note::getInstance($xref, $tree); 7535a78cd34SGreg Roach 7545a78cd34SGreg Roach if ($note === null) { 75559f2f229SGreg Roach throw new NoteNotFoundException(); 7565a78cd34SGreg Roach } 7575a78cd34SGreg Roach 7585a78cd34SGreg Roach $this->addRecordToCart($note); 7595a78cd34SGreg Roach 7606ccdf4f0SGreg Roach return redirect($note->url()); 7615a78cd34SGreg Roach } 7625a78cd34SGreg Roach 7635a78cd34SGreg Roach /** 7646ccdf4f0SGreg Roach * @param ServerRequestInterface $request 765b6db7c1fSGreg Roach * @param Tree $tree 7665a78cd34SGreg Roach * 7676ccdf4f0SGreg Roach * @return ResponseInterface 7685a78cd34SGreg Roach */ 7696ccdf4f0SGreg Roach public function getAddRepositoryAction(ServerRequestInterface $request, Tree $tree): ResponseInterface 770c1010edaSGreg Roach { 7719e648e55SGreg Roach $xref = $request->get('xref', ''); 7725a78cd34SGreg Roach 7735a78cd34SGreg Roach $repository = Repository::getInstance($xref, $tree); 7745a78cd34SGreg Roach 7755a78cd34SGreg Roach if ($repository === null) { 77659f2f229SGreg Roach throw new RepositoryNotFoundException(); 7775a78cd34SGreg Roach } 7785a78cd34SGreg Roach 7795a78cd34SGreg Roach $options = $this->repositoryOptions($repository); 7805a78cd34SGreg Roach 78139ca88baSGreg Roach $title = I18N::translate('Add %s to the clippings cart', $repository->fullName()); 7825a78cd34SGreg Roach 7835a78cd34SGreg Roach return $this->viewResponse('modules/clippings/add-options', [ 7845a78cd34SGreg Roach 'options' => $options, 7855a78cd34SGreg Roach 'default' => key($options), 7865a78cd34SGreg Roach 'record' => $repository, 7875a78cd34SGreg Roach 'title' => $title, 7885a78cd34SGreg Roach 'tree' => $tree, 7895a78cd34SGreg Roach ]); 7905a78cd34SGreg Roach } 7915a78cd34SGreg Roach 7925a78cd34SGreg Roach /** 7935a78cd34SGreg Roach * @param Repository $repository 7945a78cd34SGreg Roach * 7955a78cd34SGreg Roach * @return string[] 7965a78cd34SGreg Roach */ 797c1010edaSGreg Roach private function repositoryOptions(Repository $repository): array 798c1010edaSGreg Roach { 79939ca88baSGreg Roach $name = strip_tags($repository->fullName()); 8005a78cd34SGreg Roach 8015a78cd34SGreg Roach return [ 8025a78cd34SGreg Roach 'self' => $name, 8035a78cd34SGreg Roach ]; 8045a78cd34SGreg Roach } 8055a78cd34SGreg Roach 8065a78cd34SGreg Roach /** 8076ccdf4f0SGreg Roach * @param ServerRequestInterface $request 808b6db7c1fSGreg Roach * @param Tree $tree 8095a78cd34SGreg Roach * 8106ccdf4f0SGreg Roach * @return ResponseInterface 8115a78cd34SGreg Roach */ 8126ccdf4f0SGreg Roach public function postAddRepositoryAction(ServerRequestInterface $request, Tree $tree): ResponseInterface 813c1010edaSGreg Roach { 8149e648e55SGreg Roach $xref = $request->get('xref', ''); 8155a78cd34SGreg Roach 8165a78cd34SGreg Roach $repository = Repository::getInstance($xref, $tree); 8175a78cd34SGreg Roach 8185a78cd34SGreg Roach if ($repository === null) { 81959f2f229SGreg Roach throw new RepositoryNotFoundException(); 8205a78cd34SGreg Roach } 8215a78cd34SGreg Roach 8225a78cd34SGreg Roach $this->addRecordToCart($repository); 8235a78cd34SGreg Roach 8246ccdf4f0SGreg Roach return redirect($repository->url()); 8255a78cd34SGreg Roach } 8265a78cd34SGreg Roach 8275a78cd34SGreg Roach /** 8286ccdf4f0SGreg Roach * @param ServerRequestInterface $request 829b6db7c1fSGreg Roach * @param Tree $tree 8305a78cd34SGreg Roach * 8316ccdf4f0SGreg Roach * @return ResponseInterface 8325a78cd34SGreg Roach */ 8336ccdf4f0SGreg Roach public function getAddSourceAction(ServerRequestInterface $request, Tree $tree): ResponseInterface 834c1010edaSGreg Roach { 8359e648e55SGreg Roach $xref = $request->get('xref', ''); 8365a78cd34SGreg Roach 8375a78cd34SGreg Roach $source = Source::getInstance($xref, $tree); 8385a78cd34SGreg Roach 8395a78cd34SGreg Roach if ($source === null) { 84059f2f229SGreg Roach throw new SourceNotFoundException(); 8415a78cd34SGreg Roach } 8425a78cd34SGreg Roach 8435a78cd34SGreg Roach $options = $this->sourceOptions($source); 8445a78cd34SGreg Roach 84539ca88baSGreg Roach $title = I18N::translate('Add %s to the clippings cart', $source->fullName()); 8465a78cd34SGreg Roach 8475a78cd34SGreg Roach return $this->viewResponse('modules/clippings/add-options', [ 8485a78cd34SGreg Roach 'options' => $options, 8495a78cd34SGreg Roach 'default' => key($options), 8505a78cd34SGreg Roach 'record' => $source, 8515a78cd34SGreg Roach 'title' => $title, 8525a78cd34SGreg Roach 'tree' => $tree, 8535a78cd34SGreg Roach ]); 8545a78cd34SGreg Roach } 8555a78cd34SGreg Roach 8565a78cd34SGreg Roach /** 8575a78cd34SGreg Roach * @param Source $source 8585a78cd34SGreg Roach * 8595a78cd34SGreg Roach * @return string[] 8605a78cd34SGreg Roach */ 861c1010edaSGreg Roach private function sourceOptions(Source $source): array 862c1010edaSGreg Roach { 86339ca88baSGreg Roach $name = strip_tags($source->fullName()); 8645a78cd34SGreg Roach 8655a78cd34SGreg Roach return [ 86639ca88baSGreg Roach 'only' => strip_tags($source->fullName()), 8675a78cd34SGreg Roach 'linked' => I18N::translate('%s and the individuals that reference it.', $name), 8685a78cd34SGreg Roach ]; 8695a78cd34SGreg Roach } 8705a78cd34SGreg Roach 8715a78cd34SGreg Roach /** 8726ccdf4f0SGreg Roach * @param ServerRequestInterface $request 873b6db7c1fSGreg Roach * @param Tree $tree 8745a78cd34SGreg Roach * 8756ccdf4f0SGreg Roach * @return ResponseInterface 8765a78cd34SGreg Roach */ 8776ccdf4f0SGreg Roach public function postAddSourceAction(ServerRequestInterface $request, Tree $tree): ResponseInterface 878c1010edaSGreg Roach { 8799e648e55SGreg Roach $xref = $request->get('xref', ''); 8809e648e55SGreg Roach $option = $request->get('option', ''); 8815a78cd34SGreg Roach 8825a78cd34SGreg Roach $source = Source::getInstance($xref, $tree); 8835a78cd34SGreg Roach 8845a78cd34SGreg Roach if ($source === null) { 88559f2f229SGreg Roach throw new SourceNotFoundException(); 8865a78cd34SGreg Roach } 8875a78cd34SGreg Roach 8885a78cd34SGreg Roach $this->addRecordToCart($source); 8895a78cd34SGreg Roach 8905a78cd34SGreg Roach if ($option === 'linked') { 8915a78cd34SGreg Roach foreach ($source->linkedIndividuals('SOUR') as $individual) { 8925a78cd34SGreg Roach $this->addRecordToCart($individual); 8935a78cd34SGreg Roach } 8945a78cd34SGreg Roach foreach ($source->linkedFamilies('SOUR') as $family) { 8955a78cd34SGreg Roach $this->addRecordToCart($family); 8965a78cd34SGreg Roach } 8975a78cd34SGreg Roach } 8985a78cd34SGreg Roach 8996ccdf4f0SGreg Roach return redirect($source->url()); 9005a78cd34SGreg Roach } 9015a78cd34SGreg Roach 9025a78cd34SGreg Roach /** 9035a78cd34SGreg Roach * Get all the records in the cart. 9045a78cd34SGreg Roach * 9055a78cd34SGreg Roach * @param Tree $tree 9065a78cd34SGreg Roach * 9075a78cd34SGreg Roach * @return GedcomRecord[] 9085a78cd34SGreg Roach */ 909c1010edaSGreg Roach private function allRecordsInCart(Tree $tree): array 910c1010edaSGreg Roach { 9115a78cd34SGreg Roach $cart = Session::get('cart', []); 9125a78cd34SGreg Roach 913aa6f03bbSGreg Roach $xrefs = array_keys($cart[$tree->name()] ?? []); 9145a78cd34SGreg Roach 9155a78cd34SGreg Roach // Fetch all the records in the cart. 9160b5fd0a6SGreg Roach $records = array_map(static function (string $xref) use ($tree): GedcomRecord { 9175a78cd34SGreg Roach return GedcomRecord::getInstance($xref, $tree); 9185a78cd34SGreg Roach }, $xrefs); 9195a78cd34SGreg Roach 9205a78cd34SGreg Roach // Some records may have been deleted after they were added to the cart. 9215a78cd34SGreg Roach $records = array_filter($records); 9225a78cd34SGreg Roach 9235a78cd34SGreg Roach // Group and sort. 9240b5fd0a6SGreg Roach uasort($records, static function (GedcomRecord $x, GedcomRecord $y): int { 925c156e8f5SGreg Roach return $x::RECORD_TYPE <=> $y::RECORD_TYPE ?: GedcomRecord::nameComparator()($x, $y); 9265a78cd34SGreg Roach }); 9275a78cd34SGreg Roach 9285a78cd34SGreg Roach return $records; 9295a78cd34SGreg Roach } 9305a78cd34SGreg Roach 9315a78cd34SGreg Roach /** 9325a78cd34SGreg Roach * Add a record (and direclty linked sources, notes, etc. to the cart. 9335a78cd34SGreg Roach * 9345a78cd34SGreg Roach * @param GedcomRecord $record 93518d7a90dSGreg Roach * 93618d7a90dSGreg Roach * @return void 9375a78cd34SGreg Roach */ 938e364afe4SGreg Roach private function addRecordToCart(GedcomRecord $record): void 939c1010edaSGreg Roach { 9405a78cd34SGreg Roach $cart = Session::get('cart', []); 9415a78cd34SGreg Roach 942f4afa648SGreg Roach $tree_name = $record->tree()->name(); 9435a78cd34SGreg Roach 9445a78cd34SGreg Roach // Add this record 945c0935879SGreg Roach $cart[$tree_name][$record->xref()] = true; 9465a78cd34SGreg Roach 9475a78cd34SGreg Roach // Add directly linked media, notes, repositories and sources. 9488d0ebef0SGreg Roach preg_match_all('/\n\d (?:OBJE|NOTE|SOUR|REPO) @(' . Gedcom::REGEX_XREF . ')@/', $record->gedcom(), $matches); 9495a78cd34SGreg Roach 9505a78cd34SGreg Roach foreach ($matches[1] as $match) { 9515a78cd34SGreg Roach $cart[$tree_name][$match] = true; 9525a78cd34SGreg Roach } 9535a78cd34SGreg Roach 9545a78cd34SGreg Roach Session::put('cart', $cart); 9555a78cd34SGreg Roach } 9565a78cd34SGreg Roach 9575a78cd34SGreg Roach /** 9585a78cd34SGreg Roach * @param Tree $tree 9595a78cd34SGreg Roach * 9605a78cd34SGreg Roach * @return bool 9615a78cd34SGreg Roach */ 962c1010edaSGreg Roach private function isCartEmpty(Tree $tree): bool 963c1010edaSGreg Roach { 9645a78cd34SGreg Roach $cart = Session::get('cart', []); 9655a78cd34SGreg Roach 966aa6f03bbSGreg Roach return empty($cart[$tree->name()]); 9675a78cd34SGreg Roach } 9688c2e8227SGreg Roach} 969