xref: /webtrees/app/Module/ClippingsCartModule.php (revision bed27cedea507c28d3a20c0fce49bfb8580f832f)
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;
44*bed27cedSGreg Roachuse Psr\Http\Message\ResponseFactoryInterface;
456ccdf4f0SGreg Roachuse Psr\Http\Message\ResponseInterface;
466ccdf4f0SGreg Roachuse Psr\Http\Message\ServerRequestInterface;
476ccdf4f0SGreg Roachuse Psr\Http\Message\StreamFactoryInterface;
48eb235819SGreg Roachuse function app;
49e5a6b4d4SGreg Roachuse function str_replace;
508c2e8227SGreg Roach
518c2e8227SGreg Roach/**
528c2e8227SGreg Roach * Class ClippingsCartModule
538c2e8227SGreg Roach */
5437eb8894SGreg Roachclass ClippingsCartModule extends AbstractModule implements ModuleMenuInterface
55c1010edaSGreg Roach{
5649a243cbSGreg Roach    use ModuleMenuTrait;
5749a243cbSGreg Roach
585a78cd34SGreg Roach    // Routes that have a record which can be added to the clipboard
5916d6367aSGreg Roach    private const ROUTES_WITH_RECORDS = [
60c1010edaSGreg Roach        'family',
61c1010edaSGreg Roach        'individual',
62c1010edaSGreg Roach        'media',
63c1010edaSGreg Roach        'note',
64c1010edaSGreg Roach        'repository',
65c1010edaSGreg Roach        'source',
66c1010edaSGreg Roach    ];
675a78cd34SGreg Roach
6849a243cbSGreg Roach    /** @var int The default access level for this module.  It can be changed in the control panel. */
6949a243cbSGreg Roach    protected $access_level = Auth::PRIV_USER;
7049a243cbSGreg Roach
71961ec755SGreg Roach    /**
72e5a6b4d4SGreg Roach     * @var UserService
73e5a6b4d4SGreg Roach     */
74e5a6b4d4SGreg Roach    private $user_service;
75e5a6b4d4SGreg Roach
76e5a6b4d4SGreg Roach    /**
77e5a6b4d4SGreg Roach     * ClippingsCartModule constructor.
78e5a6b4d4SGreg Roach     *
79e5a6b4d4SGreg Roach     * @param UserService $user_service
80e5a6b4d4SGreg Roach     */
81e5a6b4d4SGreg Roach    public function __construct(UserService $user_service)
82e5a6b4d4SGreg Roach    {
83e5a6b4d4SGreg Roach        $this->user_service = $user_service;
84e5a6b4d4SGreg Roach    }
85e5a6b4d4SGreg Roach
86e5a6b4d4SGreg Roach    /**
870cfd6963SGreg Roach     * How should this module be identified in the control panel, etc.?
88961ec755SGreg Roach     *
89961ec755SGreg Roach     * @return string
90961ec755SGreg Roach     */
9149a243cbSGreg Roach    public function title(): string
92c1010edaSGreg Roach    {
93bbb76c12SGreg Roach        /* I18N: Name of a module */
94bbb76c12SGreg Roach        return I18N::translate('Clippings cart');
958c2e8227SGreg Roach    }
968c2e8227SGreg Roach
97961ec755SGreg Roach    /**
98961ec755SGreg Roach     * A sentence describing what this module does.
99961ec755SGreg Roach     *
100961ec755SGreg Roach     * @return string
101961ec755SGreg Roach     */
10249a243cbSGreg Roach    public function description(): string
103c1010edaSGreg Roach    {
104bbb76c12SGreg Roach        /* I18N: Description of the “Clippings cart” module */
105bbb76c12SGreg Roach        return I18N::translate('Select records from your family tree and save them as a GEDCOM file.');
1068c2e8227SGreg Roach    }
1078c2e8227SGreg Roach
1080ee13198SGreg Roach    /**
10949a243cbSGreg Roach     * The default position for this menu.  It can be changed in the control panel.
1100ee13198SGreg Roach     *
1110ee13198SGreg Roach     * @return int
1120ee13198SGreg Roach     */
1138f53f488SRico Sonntag    public function defaultMenuOrder(): int
114c1010edaSGreg Roach    {
115353b36abSGreg Roach        return 6;
1168c2e8227SGreg Roach    }
1178c2e8227SGreg Roach
1180ee13198SGreg Roach    /**
1190ee13198SGreg Roach     * A menu, to be added to the main application menu.
1200ee13198SGreg Roach     *
121aee13b6dSGreg Roach     * @param Tree $tree
122aee13b6dSGreg Roach     *
1230ee13198SGreg Roach     * @return Menu|null
1240ee13198SGreg Roach     */
12546295629SGreg Roach    public function getMenu(Tree $tree): ?Menu
126c1010edaSGreg Roach    {
127eb235819SGreg Roach        /** @var ServerRequestInterface $request */
1286ccdf4f0SGreg Roach        $request = app(ServerRequestInterface::class);
1298c2e8227SGreg Roach
130eb235819SGreg Roach        $route = $request->getQueryParams()['route'] ?? '';
1315a78cd34SGreg Roach
1325a78cd34SGreg Roach        $submenus = [
13349a243cbSGreg Roach            new Menu($this->title(), route('module', [
13426684e68SGreg Roach                'module' => $this->name(),
135c1010edaSGreg Roach                'action' => 'Show',
136aa6f03bbSGreg Roach                'ged'    => $tree->name(),
137c1010edaSGreg Roach            ]), 'menu-clippings-cart', ['rel' => 'nofollow']),
1385a78cd34SGreg Roach        ];
1395a78cd34SGreg Roach
14022d65e5aSGreg Roach        if (in_array($route, self::ROUTES_WITH_RECORDS, true)) {
141*bed27cedSGreg Roach            $xref      = $request->getQueryParams()['xref'] ?? '';
1425a78cd34SGreg Roach            $action    = 'Add' . ucfirst($route);
143c1010edaSGreg Roach            $add_route = route('module', [
14426684e68SGreg Roach                'module' => $this->name(),
145c1010edaSGreg Roach                'action' => $action,
146c1010edaSGreg Roach                'xref'   => $xref,
147aa6f03bbSGreg Roach                'ged'    => $tree->name(),
148c1010edaSGreg Roach            ]);
1495a78cd34SGreg Roach
15025b2dde3SGreg Roach            $submenus[] = new Menu(I18N::translate('Add to the clippings cart'), $add_route, 'menu-clippings-add', ['rel' => 'nofollow']);
1518c2e8227SGreg Roach        }
152cbc1590aSGreg Roach
1535a78cd34SGreg Roach        if (!$this->isCartEmpty($tree)) {
154c1010edaSGreg Roach            $submenus[] = new Menu(I18N::translate('Empty the clippings cart'), route('module', [
15526684e68SGreg Roach                'module' => $this->name(),
156c1010edaSGreg Roach                'action' => 'Empty',
157aa6f03bbSGreg Roach                'ged'    => $tree->name(),
158c1010edaSGreg Roach            ]), 'menu-clippings-empty', ['rel' => 'nofollow']);
159c1010edaSGreg Roach            $submenus[] = new Menu(I18N::translate('Download'), route('module', [
16026684e68SGreg Roach                'module' => $this->name(),
161c1010edaSGreg Roach                'action' => 'DownloadForm',
162aa6f03bbSGreg Roach                'ged'    => $tree->name(),
163c1010edaSGreg Roach            ]), 'menu-clippings-download', ['rel' => 'nofollow']);
1645a78cd34SGreg Roach        }
1655a78cd34SGreg Roach
16649a243cbSGreg Roach        return new Menu($this->title(), '#', 'menu-clippings', ['rel' => 'nofollow'], $submenus);
1678c2e8227SGreg Roach    }
1688c2e8227SGreg Roach
16976692c8bSGreg Roach    /**
1706ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
171b6db7c1fSGreg Roach     * @param Tree                   $tree
17276692c8bSGreg Roach     *
1736ccdf4f0SGreg Roach     * @return ResponseInterface
17476692c8bSGreg Roach     */
1756ccdf4f0SGreg Roach    public function getDownloadAction(ServerRequestInterface $request, Tree $tree): ResponseInterface
176c1010edaSGreg Roach    {
177*bed27cedSGreg Roach        $params = $request->getQueryParams();
178*bed27cedSGreg Roach
179*bed27cedSGreg Roach        $privatize_export = $params['privatize_export'];
180*bed27cedSGreg Roach        $convert          = (bool) ($params['convert'] ?? false);
1818c2e8227SGreg Roach
18213abd6f3SGreg Roach        $cart = Session::get('cart', []);
1838c2e8227SGreg Roach
184aa6f03bbSGreg Roach        $xrefs = array_keys($cart[$tree->name()] ?? []);
1855a78cd34SGreg Roach
1865a78cd34SGreg Roach        // Create a new/empty .ZIP file
1875a78cd34SGreg Roach        $temp_zip_file  = tempnam(sys_get_temp_dir(), 'webtrees-zip-');
1885a78cd34SGreg Roach        $zip_filesystem = new Filesystem(new ZipArchiveAdapter($temp_zip_file));
1895a78cd34SGreg Roach
1905a78cd34SGreg Roach        // Media file prefix
1915a78cd34SGreg Roach        $path = $tree->getPreference('MEDIA_DIRECTORY');
1925a78cd34SGreg Roach
1935a78cd34SGreg Roach        // GEDCOM file header
194a3d8780cSGreg Roach        $filetext = FunctionsExport::gedcomHeader($tree, $convert ? 'ANSI' : 'UTF-8');
1955a78cd34SGreg Roach
1965a78cd34SGreg Roach        switch ($privatize_export) {
1975a78cd34SGreg Roach            case 'gedadmin':
1985a78cd34SGreg Roach                $access_level = Auth::PRIV_NONE;
1995a78cd34SGreg Roach                break;
2005a78cd34SGreg Roach            case 'user':
2015a78cd34SGreg Roach                $access_level = Auth::PRIV_USER;
2025a78cd34SGreg Roach                break;
2035a78cd34SGreg Roach            case 'visitor':
2045a78cd34SGreg Roach                $access_level = Auth::PRIV_PRIVATE;
2055a78cd34SGreg Roach                break;
2065a78cd34SGreg Roach            case 'none':
2075a78cd34SGreg Roach            default:
2085a78cd34SGreg Roach                $access_level = Auth::PRIV_HIDE;
2095a78cd34SGreg Roach                break;
2105a78cd34SGreg Roach        }
2115a78cd34SGreg Roach
2125a78cd34SGreg Roach        foreach ($xrefs as $xref) {
2135a78cd34SGreg Roach            $object = GedcomRecord::getInstance($xref, $tree);
2145a78cd34SGreg Roach            // The object may have been deleted since we added it to the cart....
215*bed27cedSGreg Roach            if ($object instanceof  GedcomRecord) {
2165a78cd34SGreg Roach                $record = $object->privatizeGedcom($access_level);
2175a78cd34SGreg Roach                // Remove links to objects that aren't in the cart
2188d0ebef0SGreg Roach                preg_match_all('/\n1 ' . Gedcom::REGEX_TAG . ' @(' . Gedcom::REGEX_XREF . ')@(\n[2-9].*)*/', $record, $matches, PREG_SET_ORDER);
2195a78cd34SGreg Roach                foreach ($matches as $match) {
2205a78cd34SGreg Roach                    if (!array_key_exists($match[1], $xrefs)) {
2215a78cd34SGreg Roach                        $record = str_replace($match[0], '', $record);
2225a78cd34SGreg Roach                    }
2235a78cd34SGreg Roach                }
2248d0ebef0SGreg Roach                preg_match_all('/\n2 ' . Gedcom::REGEX_TAG . ' @(' . Gedcom::REGEX_XREF . ')@(\n[3-9].*)*/', $record, $matches, PREG_SET_ORDER);
2255a78cd34SGreg Roach                foreach ($matches as $match) {
2265a78cd34SGreg Roach                    if (!array_key_exists($match[1], $xrefs)) {
2275a78cd34SGreg Roach                        $record = str_replace($match[0], '', $record);
2285a78cd34SGreg Roach                    }
2295a78cd34SGreg Roach                }
2308d0ebef0SGreg Roach                preg_match_all('/\n3 ' . Gedcom::REGEX_TAG . ' @(' . Gedcom::REGEX_XREF . ')@(\n[4-9].*)*/', $record, $matches, PREG_SET_ORDER);
2315a78cd34SGreg Roach                foreach ($matches as $match) {
2325a78cd34SGreg Roach                    if (!array_key_exists($match[1], $xrefs)) {
2335a78cd34SGreg Roach                        $record = str_replace($match[0], '', $record);
2345a78cd34SGreg Roach                    }
2355a78cd34SGreg Roach                }
2365a78cd34SGreg Roach
23755167344SGreg Roach                if ($object instanceof Individual || $object instanceof Family) {
2385a78cd34SGreg Roach                    $filetext .= $record . "\n";
2395a78cd34SGreg Roach                    $filetext .= "1 SOUR @WEBTREES@\n";
2401f273236SGreg Roach                    $filetext .= '2 PAGE ' . $object->url() . "\n";
24155167344SGreg Roach                } elseif ($object instanceof Source) {
2425a78cd34SGreg Roach                    $filetext .= $record . "\n";
2431f273236SGreg Roach                    $filetext .= '1 NOTE ' . $object->url() . "\n";
24455167344SGreg Roach                } elseif ($object instanceof Media) {
24555167344SGreg Roach                    // Add the media files to the archive
2465a78cd34SGreg Roach                    foreach ($object->mediaFiles() as $media_file) {
2475a78cd34SGreg Roach                        if (file_exists($media_file->getServerFilename())) {
248e364afe4SGreg Roach                            $fp = fopen($media_file->getServerFilename(), 'rb');
2495a78cd34SGreg Roach                            $zip_filesystem->writeStream($path . $media_file->filename(), $fp);
2505a78cd34SGreg Roach                            fclose($fp);
2515a78cd34SGreg Roach                        }
2525a78cd34SGreg Roach                    }
2535a78cd34SGreg Roach                    $filetext .= $record . "\n";
25455167344SGreg Roach                } else {
2555a78cd34SGreg Roach                    $filetext .= $record . "\n";
2568c2e8227SGreg Roach                }
2578c2e8227SGreg Roach            }
2588c2e8227SGreg Roach        }
2598c2e8227SGreg Roach
2605a78cd34SGreg Roach        // Create a source, to indicate the source of the data.
2615a78cd34SGreg Roach        $filetext .= "0 @WEBTREES@ SOUR\n1 TITL " . WT_BASE_URL . "\n";
262e5a6b4d4SGreg Roach        $author   = $this->user_service->find((int) $tree->getPreference('CONTACT_USER_ID'));
2635a78cd34SGreg Roach        if ($author !== null) {
264e5a6b4d4SGreg Roach            $filetext .= '1 AUTH ' . $author->realName() . "\n";
2655a78cd34SGreg Roach        }
2665a78cd34SGreg Roach        $filetext .= "0 TRLR\n";
2675a78cd34SGreg Roach
2685a78cd34SGreg Roach        // Make sure the preferred line endings are used
269a3d8780cSGreg Roach        $filetext = str_replace('\n', Gedcom::EOL, $filetext);
2705a78cd34SGreg Roach
27155167344SGreg Roach        if ($convert) {
2725a78cd34SGreg Roach            $filetext = utf8_decode($filetext);
2738c2e8227SGreg Roach        }
274cbc1590aSGreg Roach
2755a78cd34SGreg Roach        // Finally add the GEDCOM file to the .ZIP file.
2765a78cd34SGreg Roach        $zip_filesystem->write('clippings.ged', $filetext);
2775a78cd34SGreg Roach
2785a78cd34SGreg Roach        // Need to force-close the filesystem
27902a92f80SGreg Roach        unset($zip_filesystem);
2805a78cd34SGreg Roach
2816ccdf4f0SGreg Roach        // Use a stream, so that we do not have to load the entire file into memory.
2826ccdf4f0SGreg Roach        $stream = app(StreamFactoryInterface::class)->createStreamFromFile($temp_zip_file);
2835a78cd34SGreg Roach
284*bed27cedSGreg Roach        /** @var ResponseFactoryInterface $response_factory */
285*bed27cedSGreg Roach        $response_factory = app(ResponseFactoryInterface::class);
286*bed27cedSGreg Roach
287*bed27cedSGreg Roach        return $response_factory->createResponse()
2886ccdf4f0SGreg Roach            ->withBody($stream)
2891b3d4731SGreg Roach            ->withHeader('Content-Type', 'application/zip')
290*bed27cedSGreg Roach            ->withHeader('Content-Disposition', 'attachment; filename="clippings.zip');
2918c2e8227SGreg Roach    }
2928c2e8227SGreg Roach
2938c2e8227SGreg Roach    /**
294b6db7c1fSGreg Roach     * @param Tree          $tree
295e5a6b4d4SGreg Roach     * @param UserInterface $user
29676692c8bSGreg Roach     *
2976ccdf4f0SGreg Roach     * @return ResponseInterface
2988c2e8227SGreg Roach     */
2996ccdf4f0SGreg Roach    public function getDownloadFormAction(Tree $tree, UserInterface $user): ResponseInterface
300c1010edaSGreg Roach    {
3015a78cd34SGreg Roach        $title = I18N::translate('Family tree clippings cart') . ' — ' . I18N::translate('Download');
3028c2e8227SGreg Roach
3035a78cd34SGreg Roach        return $this->viewResponse('modules/clippings/download', [
3045a78cd34SGreg Roach            'is_manager' => Auth::isManager($tree, $user),
3055a78cd34SGreg Roach            'is_member'  => Auth::isMember($tree, $user),
3065a78cd34SGreg Roach            'title'      => $title,
3075a78cd34SGreg Roach        ]);
3088c2e8227SGreg Roach    }
3098c2e8227SGreg Roach
3105a78cd34SGreg Roach    /**
311b6db7c1fSGreg Roach     * @param Tree $tree
3125a78cd34SGreg Roach     *
3136ccdf4f0SGreg Roach     * @return ResponseInterface
3145a78cd34SGreg Roach     */
3156ccdf4f0SGreg Roach    public function getEmptyAction(Tree $tree): ResponseInterface
316c1010edaSGreg Roach    {
3175a78cd34SGreg Roach        $cart                = Session::get('cart', []);
318aa6f03bbSGreg Roach        $cart[$tree->name()] = [];
3195a78cd34SGreg Roach        Session::put('cart', $cart);
3208c2e8227SGreg Roach
321c1010edaSGreg Roach        $url = route('module', [
32226684e68SGreg Roach            'module' => $this->name(),
323c1010edaSGreg Roach            'action' => 'Show',
324aa6f03bbSGreg Roach            'ged'    => $tree->name(),
325c1010edaSGreg Roach        ]);
3265a78cd34SGreg Roach
3276ccdf4f0SGreg Roach        return redirect($url);
3285a78cd34SGreg Roach    }
3295a78cd34SGreg Roach
3305a78cd34SGreg Roach    /**
3316ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
332b6db7c1fSGreg Roach     * @param Tree                   $tree
3335a78cd34SGreg Roach     *
3346ccdf4f0SGreg Roach     * @return ResponseInterface
3355a78cd34SGreg Roach     */
3366ccdf4f0SGreg Roach    public function postRemoveAction(ServerRequestInterface $request, Tree $tree): ResponseInterface
337c1010edaSGreg Roach    {
338*bed27cedSGreg Roach        $xref = $request->getQueryParams()['xref'];
3395a78cd34SGreg Roach
3405a78cd34SGreg Roach        $cart = Session::get('cart', []);
341aa6f03bbSGreg Roach        unset($cart[$tree->name()][$xref]);
3425a78cd34SGreg Roach        Session::put('cart', $cart);
3435a78cd34SGreg Roach
344c1010edaSGreg Roach        $url = route('module', [
34526684e68SGreg Roach            'module' => $this->name(),
346c1010edaSGreg Roach            'action' => 'Show',
347aa6f03bbSGreg Roach            'ged'    => $tree->name(),
348c1010edaSGreg Roach        ]);
3495a78cd34SGreg Roach
3506ccdf4f0SGreg Roach        return redirect($url);
3515a78cd34SGreg Roach    }
3525a78cd34SGreg Roach
3535a78cd34SGreg Roach    /**
354b6db7c1fSGreg Roach     * @param Tree $tree
3555a78cd34SGreg Roach     *
3566ccdf4f0SGreg Roach     * @return ResponseInterface
3575a78cd34SGreg Roach     */
3586ccdf4f0SGreg Roach    public function getShowAction(Tree $tree): ResponseInterface
359c1010edaSGreg Roach    {
3605a78cd34SGreg Roach        return $this->viewResponse('modules/clippings/show', [
3615a78cd34SGreg Roach            'records' => $this->allRecordsInCart($tree),
3625a78cd34SGreg Roach            'title'   => I18N::translate('Family tree clippings cart'),
3635a78cd34SGreg Roach            'tree'    => $tree,
3645a78cd34SGreg Roach        ]);
3655a78cd34SGreg Roach    }
3665a78cd34SGreg Roach
3675a78cd34SGreg Roach    /**
3686ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
369b6db7c1fSGreg Roach     * @param Tree                   $tree
3705a78cd34SGreg Roach     *
3716ccdf4f0SGreg Roach     * @return ResponseInterface
3725a78cd34SGreg Roach     */
3736ccdf4f0SGreg Roach    public function getAddFamilyAction(ServerRequestInterface $request, Tree $tree): ResponseInterface
374c1010edaSGreg Roach    {
375*bed27cedSGreg Roach        $xref = $request->getQueryParams()['xref'];
3765a78cd34SGreg Roach
3775a78cd34SGreg Roach        $family = Family::getInstance($xref, $tree);
3785a78cd34SGreg Roach
3795a78cd34SGreg Roach        if ($family === null) {
38059f2f229SGreg Roach            throw new FamilyNotFoundException();
3815a78cd34SGreg Roach        }
3825a78cd34SGreg Roach
3835a78cd34SGreg Roach        $options = $this->familyOptions($family);
3845a78cd34SGreg Roach
38539ca88baSGreg Roach        $title = I18N::translate('Add %s to the clippings cart', $family->fullName());
3865a78cd34SGreg Roach
3875a78cd34SGreg Roach        return $this->viewResponse('modules/clippings/add-options', [
3885a78cd34SGreg Roach            'options' => $options,
3895a78cd34SGreg Roach            'default' => key($options),
3905a78cd34SGreg Roach            'record'  => $family,
3915a78cd34SGreg Roach            'title'   => $title,
3925a78cd34SGreg Roach            'tree'    => $tree,
3935a78cd34SGreg Roach        ]);
3945a78cd34SGreg Roach    }
3955a78cd34SGreg Roach
3965a78cd34SGreg Roach    /**
3975a78cd34SGreg Roach     * @param Family $family
3985a78cd34SGreg Roach     *
3995a78cd34SGreg Roach     * @return string[]
4005a78cd34SGreg Roach     */
401c1010edaSGreg Roach    private function familyOptions(Family $family): array
402c1010edaSGreg Roach    {
40339ca88baSGreg Roach        $name = strip_tags($family->fullName());
4045a78cd34SGreg Roach
4055a78cd34SGreg Roach        return [
4065a78cd34SGreg Roach            'parents'     => $name,
407bbb76c12SGreg Roach            /* I18N: %s is a family (husband + wife) */
408bbb76c12SGreg Roach            'members'     => I18N::translate('%s and their children', $name),
409bbb76c12SGreg Roach            /* I18N: %s is a family (husband + wife) */
410bbb76c12SGreg Roach            'descendants' => I18N::translate('%s and their descendants', $name),
4115a78cd34SGreg Roach        ];
4125a78cd34SGreg Roach    }
4135a78cd34SGreg Roach
4145a78cd34SGreg Roach    /**
4156ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
416b6db7c1fSGreg Roach     * @param Tree                   $tree
4175a78cd34SGreg Roach     *
4186ccdf4f0SGreg Roach     * @return ResponseInterface
4195a78cd34SGreg Roach     */
4206ccdf4f0SGreg Roach    public function postAddFamilyAction(ServerRequestInterface $request, Tree $tree): ResponseInterface
421c1010edaSGreg Roach    {
422*bed27cedSGreg Roach        $xref   = $request->getQueryParams()['xref'];
423*bed27cedSGreg Roach        $option = $request->getParsedBody()['option'];
4245a78cd34SGreg Roach
4255a78cd34SGreg Roach        $family = Family::getInstance($xref, $tree);
4265a78cd34SGreg Roach
4275a78cd34SGreg Roach        if ($family === null) {
42859f2f229SGreg Roach            throw new FamilyNotFoundException();
4295a78cd34SGreg Roach        }
4305a78cd34SGreg Roach
4315a78cd34SGreg Roach        switch ($option) {
4325a78cd34SGreg Roach            case 'parents':
4335a78cd34SGreg Roach                $this->addFamilyToCart($family);
4345a78cd34SGreg Roach                break;
4355a78cd34SGreg Roach
4365a78cd34SGreg Roach            case 'members':
4375a78cd34SGreg Roach                $this->addFamilyAndChildrenToCart($family);
4385a78cd34SGreg Roach                break;
4395a78cd34SGreg Roach
4405a78cd34SGreg Roach            case 'descendants':
4415a78cd34SGreg Roach                $this->addFamilyAndDescendantsToCart($family);
4425a78cd34SGreg Roach                break;
4435a78cd34SGreg Roach        }
4445a78cd34SGreg Roach
4456ccdf4f0SGreg Roach        return redirect($family->url());
4465a78cd34SGreg Roach    }
4475a78cd34SGreg Roach
4485a78cd34SGreg Roach    /**
4495a78cd34SGreg Roach     * @param Family $family
45018d7a90dSGreg Roach     *
45118d7a90dSGreg Roach     * @return void
4525a78cd34SGreg Roach     */
453e364afe4SGreg Roach    private function addFamilyToCart(Family $family): void
454c1010edaSGreg Roach    {
4555a78cd34SGreg Roach        $this->addRecordToCart($family);
4565a78cd34SGreg Roach
45739ca88baSGreg Roach        foreach ($family->spouses() as $spouse) {
4585a78cd34SGreg Roach            $this->addRecordToCart($spouse);
4595a78cd34SGreg Roach        }
4605a78cd34SGreg Roach    }
4615a78cd34SGreg Roach
4625a78cd34SGreg Roach    /**
4635a78cd34SGreg Roach     * @param Family $family
46418d7a90dSGreg Roach     *
46518d7a90dSGreg Roach     * @return void
4665a78cd34SGreg Roach     */
467e364afe4SGreg Roach    private function addFamilyAndChildrenToCart(Family $family): void
468c1010edaSGreg Roach    {
4695a78cd34SGreg Roach        $this->addRecordToCart($family);
4705a78cd34SGreg Roach
47139ca88baSGreg Roach        foreach ($family->spouses() as $spouse) {
4725a78cd34SGreg Roach            $this->addRecordToCart($spouse);
4735a78cd34SGreg Roach        }
47439ca88baSGreg Roach        foreach ($family->children() as $child) {
4755a78cd34SGreg Roach            $this->addRecordToCart($child);
4765a78cd34SGreg Roach        }
4775a78cd34SGreg Roach    }
4785a78cd34SGreg Roach
4795a78cd34SGreg Roach    /**
4805a78cd34SGreg Roach     * @param Family $family
48118d7a90dSGreg Roach     *
48218d7a90dSGreg Roach     * @return void
4835a78cd34SGreg Roach     */
484e364afe4SGreg Roach    private function addFamilyAndDescendantsToCart(Family $family): void
485c1010edaSGreg Roach    {
4865a78cd34SGreg Roach        $this->addRecordToCart($family);
4875a78cd34SGreg Roach
48839ca88baSGreg Roach        foreach ($family->spouses() as $spouse) {
4895a78cd34SGreg Roach            $this->addRecordToCart($spouse);
4905a78cd34SGreg Roach        }
49139ca88baSGreg Roach        foreach ($family->children() as $child) {
4925a78cd34SGreg Roach            $this->addRecordToCart($child);
49339ca88baSGreg Roach            foreach ($child->spouseFamilies() as $child_family) {
4945a78cd34SGreg Roach                $this->addFamilyAndDescendantsToCart($child_family);
4955a78cd34SGreg Roach            }
4965a78cd34SGreg Roach        }
4975a78cd34SGreg Roach    }
4985a78cd34SGreg Roach
4995a78cd34SGreg Roach    /**
5006ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
501b6db7c1fSGreg Roach     * @param Tree                   $tree
5025a78cd34SGreg Roach     *
5036ccdf4f0SGreg Roach     * @return ResponseInterface
5045a78cd34SGreg Roach     */
5056ccdf4f0SGreg Roach    public function getAddIndividualAction(ServerRequestInterface $request, Tree $tree): ResponseInterface
506c1010edaSGreg Roach    {
507*bed27cedSGreg Roach        $xref = $request->getQueryParams()['xref'];
5085a78cd34SGreg Roach
5095a78cd34SGreg Roach        $individual = Individual::getInstance($xref, $tree);
5105a78cd34SGreg Roach
5115a78cd34SGreg Roach        if ($individual === null) {
51259f2f229SGreg Roach            throw new IndividualNotFoundException();
5135a78cd34SGreg Roach        }
5145a78cd34SGreg Roach
5155a78cd34SGreg Roach        $options = $this->individualOptions($individual);
5165a78cd34SGreg Roach
51739ca88baSGreg Roach        $title = I18N::translate('Add %s to the clippings cart', $individual->fullName());
5185a78cd34SGreg Roach
5195a78cd34SGreg Roach        return $this->viewResponse('modules/clippings/add-options', [
5205a78cd34SGreg Roach            'options' => $options,
5215a78cd34SGreg Roach            'default' => key($options),
5225a78cd34SGreg Roach            'record'  => $individual,
5235a78cd34SGreg Roach            'title'   => $title,
5245a78cd34SGreg Roach            'tree'    => $tree,
5255a78cd34SGreg Roach        ]);
5265a78cd34SGreg Roach    }
5275a78cd34SGreg Roach
5285a78cd34SGreg Roach    /**
5295a78cd34SGreg Roach     * @param Individual $individual
5305a78cd34SGreg Roach     *
5315a78cd34SGreg Roach     * @return string[]
5325a78cd34SGreg Roach     */
533c1010edaSGreg Roach    private function individualOptions(Individual $individual): array
534c1010edaSGreg Roach    {
53539ca88baSGreg Roach        $name = strip_tags($individual->fullName());
5365a78cd34SGreg Roach
53739ca88baSGreg Roach        if ($individual->sex() === 'F') {
5385a78cd34SGreg Roach            return [
5395a78cd34SGreg Roach                'self'              => $name,
5405a78cd34SGreg Roach                'parents'           => I18N::translate('%s, her parents and siblings', $name),
5415a78cd34SGreg Roach                'spouses'           => I18N::translate('%s, her spouses and children', $name),
5425a78cd34SGreg Roach                'ancestors'         => I18N::translate('%s and her ancestors', $name),
5435a78cd34SGreg Roach                'ancestor_families' => I18N::translate('%s, her ancestors and their families', $name),
5445a78cd34SGreg Roach                'descendants'       => I18N::translate('%s, her spouses and descendants', $name),
5455a78cd34SGreg Roach            ];
546b2ce94c6SRico Sonntag        }
547b2ce94c6SRico Sonntag
5485a78cd34SGreg Roach        return [
5495a78cd34SGreg Roach            'self'              => $name,
5505a78cd34SGreg Roach            'parents'           => I18N::translate('%s, his parents and siblings', $name),
5515a78cd34SGreg Roach            'spouses'           => I18N::translate('%s, his spouses and children', $name),
5525a78cd34SGreg Roach            'ancestors'         => I18N::translate('%s and his ancestors', $name),
5535a78cd34SGreg Roach            'ancestor_families' => I18N::translate('%s, his ancestors and their families', $name),
5545a78cd34SGreg Roach            'descendants'       => I18N::translate('%s, his spouses and descendants', $name),
5555a78cd34SGreg Roach        ];
5565a78cd34SGreg Roach    }
5575a78cd34SGreg Roach
5585a78cd34SGreg Roach    /**
5596ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
560b6db7c1fSGreg Roach     * @param Tree                   $tree
5615a78cd34SGreg Roach     *
5626ccdf4f0SGreg Roach     * @return ResponseInterface
5635a78cd34SGreg Roach     */
5646ccdf4f0SGreg Roach    public function postAddIndividualAction(ServerRequestInterface $request, Tree $tree): ResponseInterface
565c1010edaSGreg Roach    {
566*bed27cedSGreg Roach        $xref   = $request->getQueryParams()['xref'];
567*bed27cedSGreg Roach        $option = $request->getParsedBody()['option'];
5685a78cd34SGreg Roach
5695a78cd34SGreg Roach        $individual = Individual::getInstance($xref, $tree);
5705a78cd34SGreg Roach
5715a78cd34SGreg Roach        if ($individual === null) {
57259f2f229SGreg Roach            throw new IndividualNotFoundException();
5735a78cd34SGreg Roach        }
5745a78cd34SGreg Roach
5755a78cd34SGreg Roach        switch ($option) {
5765a78cd34SGreg Roach            case 'self':
5775a78cd34SGreg Roach                $this->addRecordToCart($individual);
5785a78cd34SGreg Roach                break;
5795a78cd34SGreg Roach
5805a78cd34SGreg Roach            case 'parents':
58139ca88baSGreg Roach                foreach ($individual->childFamilies() as $family) {
5825a78cd34SGreg Roach                    $this->addFamilyAndChildrenToCart($family);
5835a78cd34SGreg Roach                }
5845a78cd34SGreg Roach                break;
5855a78cd34SGreg Roach
5865a78cd34SGreg Roach            case 'spouses':
58739ca88baSGreg Roach                foreach ($individual->spouseFamilies() as $family) {
5885a78cd34SGreg Roach                    $this->addFamilyAndChildrenToCart($family);
5895a78cd34SGreg Roach                }
5905a78cd34SGreg Roach                break;
5915a78cd34SGreg Roach
5925a78cd34SGreg Roach            case 'ancestors':
5935a78cd34SGreg Roach                $this->addAncestorsToCart($individual);
5945a78cd34SGreg Roach                break;
5955a78cd34SGreg Roach
5965a78cd34SGreg Roach            case 'ancestor_families':
5975a78cd34SGreg Roach                $this->addAncestorFamiliesToCart($individual);
5985a78cd34SGreg Roach                break;
5995a78cd34SGreg Roach
6005a78cd34SGreg Roach            case 'descendants':
60139ca88baSGreg Roach                foreach ($individual->spouseFamilies() as $family) {
6025a78cd34SGreg Roach                    $this->addFamilyAndDescendantsToCart($family);
6035a78cd34SGreg Roach                }
6045a78cd34SGreg Roach                break;
6055a78cd34SGreg Roach        }
6065a78cd34SGreg Roach
6076ccdf4f0SGreg Roach        return redirect($individual->url());
6085a78cd34SGreg Roach    }
6095a78cd34SGreg Roach
6105a78cd34SGreg Roach    /**
6115a78cd34SGreg Roach     * @param Individual $individual
61218d7a90dSGreg Roach     *
61318d7a90dSGreg Roach     * @return void
6145a78cd34SGreg Roach     */
615e364afe4SGreg Roach    private function addAncestorsToCart(Individual $individual): void
616c1010edaSGreg Roach    {
6175a78cd34SGreg Roach        $this->addRecordToCart($individual);
6185a78cd34SGreg Roach
61939ca88baSGreg Roach        foreach ($individual->childFamilies() as $family) {
62039ca88baSGreg Roach            foreach ($family->spouses() as $parent) {
6215a78cd34SGreg Roach                $this->addAncestorsToCart($parent);
6225a78cd34SGreg Roach            }
6235a78cd34SGreg Roach        }
6245a78cd34SGreg Roach    }
6255a78cd34SGreg Roach
6265a78cd34SGreg Roach    /**
6275a78cd34SGreg Roach     * @param Individual $individual
62818d7a90dSGreg Roach     *
62918d7a90dSGreg Roach     * @return void
6305a78cd34SGreg Roach     */
631e364afe4SGreg Roach    private function addAncestorFamiliesToCart(Individual $individual): void
632c1010edaSGreg Roach    {
63339ca88baSGreg Roach        foreach ($individual->childFamilies() as $family) {
6345a78cd34SGreg Roach            $this->addFamilyAndChildrenToCart($family);
63539ca88baSGreg Roach            foreach ($family->spouses() as $parent) {
6365a78cd34SGreg Roach                $this->addAncestorsToCart($parent);
6375a78cd34SGreg Roach            }
6385a78cd34SGreg Roach        }
6395a78cd34SGreg Roach    }
6405a78cd34SGreg Roach
6415a78cd34SGreg Roach    /**
6426ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
643b6db7c1fSGreg Roach     * @param Tree                   $tree
6445a78cd34SGreg Roach     *
6456ccdf4f0SGreg Roach     * @return ResponseInterface
6465a78cd34SGreg Roach     */
6476ccdf4f0SGreg Roach    public function getAddMediaAction(ServerRequestInterface $request, Tree $tree): ResponseInterface
648c1010edaSGreg Roach    {
649*bed27cedSGreg Roach        $xref = $request->getQueryParams()['xref'];
6505a78cd34SGreg Roach
6515a78cd34SGreg Roach        $media = Media::getInstance($xref, $tree);
6525a78cd34SGreg Roach
6535a78cd34SGreg Roach        if ($media === null) {
65459f2f229SGreg Roach            throw new MediaNotFoundException();
6555a78cd34SGreg Roach        }
6565a78cd34SGreg Roach
6575a78cd34SGreg Roach        $options = $this->mediaOptions($media);
6585a78cd34SGreg Roach
65939ca88baSGreg Roach        $title = I18N::translate('Add %s to the clippings cart', $media->fullName());
6605a78cd34SGreg Roach
6615a78cd34SGreg Roach        return $this->viewResponse('modules/clippings/add-options', [
6625a78cd34SGreg Roach            'options' => $options,
6635a78cd34SGreg Roach            'default' => key($options),
6645a78cd34SGreg Roach            'record'  => $media,
6655a78cd34SGreg Roach            'title'   => $title,
6665a78cd34SGreg Roach            'tree'    => $tree,
6675a78cd34SGreg Roach        ]);
6685a78cd34SGreg Roach    }
6695a78cd34SGreg Roach
6705a78cd34SGreg Roach    /**
6715a78cd34SGreg Roach     * @param Media $media
6725a78cd34SGreg Roach     *
6735a78cd34SGreg Roach     * @return string[]
6745a78cd34SGreg Roach     */
675c1010edaSGreg Roach    private function mediaOptions(Media $media): array
676c1010edaSGreg Roach    {
67739ca88baSGreg Roach        $name = strip_tags($media->fullName());
6785a78cd34SGreg Roach
6795a78cd34SGreg Roach        return [
6805a78cd34SGreg Roach            'self' => $name,
6815a78cd34SGreg Roach        ];
6825a78cd34SGreg Roach    }
6835a78cd34SGreg Roach
6845a78cd34SGreg Roach    /**
6856ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
686b6db7c1fSGreg Roach     * @param Tree                   $tree
6875a78cd34SGreg Roach     *
6886ccdf4f0SGreg Roach     * @return ResponseInterface
6895a78cd34SGreg Roach     */
6906ccdf4f0SGreg Roach    public function postAddMediaAction(ServerRequestInterface $request, Tree $tree): ResponseInterface
691c1010edaSGreg Roach    {
692*bed27cedSGreg Roach        $xref = $request->getQueryParams()['xref'];
6935a78cd34SGreg Roach
6945a78cd34SGreg Roach        $media = Media::getInstance($xref, $tree);
6955a78cd34SGreg Roach
6965a78cd34SGreg Roach        if ($media === null) {
69759f2f229SGreg Roach            throw new MediaNotFoundException();
6985a78cd34SGreg Roach        }
6995a78cd34SGreg Roach
7005a78cd34SGreg Roach        $this->addRecordToCart($media);
7015a78cd34SGreg Roach
7026ccdf4f0SGreg Roach        return redirect($media->url());
7035a78cd34SGreg Roach    }
7045a78cd34SGreg Roach
7055a78cd34SGreg Roach    /**
7066ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
707b6db7c1fSGreg Roach     * @param Tree                   $tree
7085a78cd34SGreg Roach     *
7096ccdf4f0SGreg Roach     * @return ResponseInterface
7105a78cd34SGreg Roach     */
7116ccdf4f0SGreg Roach    public function getAddNoteAction(ServerRequestInterface $request, Tree $tree): ResponseInterface
712c1010edaSGreg Roach    {
713*bed27cedSGreg Roach        $xref = $request->getQueryParams()['xref'];
7145a78cd34SGreg Roach
7155a78cd34SGreg Roach        $note = Note::getInstance($xref, $tree);
7165a78cd34SGreg Roach
7175a78cd34SGreg Roach        if ($note === null) {
71859f2f229SGreg Roach            throw new NoteNotFoundException();
7195a78cd34SGreg Roach        }
7205a78cd34SGreg Roach
7215a78cd34SGreg Roach        $options = $this->noteOptions($note);
7225a78cd34SGreg Roach
72339ca88baSGreg Roach        $title = I18N::translate('Add %s to the clippings cart', $note->fullName());
7245a78cd34SGreg Roach
7255a78cd34SGreg Roach        return $this->viewResponse('modules/clippings/add-options', [
7265a78cd34SGreg Roach            'options' => $options,
7275a78cd34SGreg Roach            'default' => key($options),
7285a78cd34SGreg Roach            'record'  => $note,
7295a78cd34SGreg Roach            'title'   => $title,
7305a78cd34SGreg Roach            'tree'    => $tree,
7315a78cd34SGreg Roach        ]);
7325a78cd34SGreg Roach    }
7335a78cd34SGreg Roach
7345a78cd34SGreg Roach    /**
7355a78cd34SGreg Roach     * @param Note $note
7365a78cd34SGreg Roach     *
7375a78cd34SGreg Roach     * @return string[]
7385a78cd34SGreg Roach     */
739c1010edaSGreg Roach    private function noteOptions(Note $note): array
740c1010edaSGreg Roach    {
74139ca88baSGreg Roach        $name = strip_tags($note->fullName());
7425a78cd34SGreg Roach
7435a78cd34SGreg Roach        return [
7445a78cd34SGreg Roach            'self' => $name,
7455a78cd34SGreg Roach        ];
7465a78cd34SGreg Roach    }
7475a78cd34SGreg Roach
7485a78cd34SGreg Roach    /**
7496ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
750b6db7c1fSGreg Roach     * @param Tree                   $tree
7515a78cd34SGreg Roach     *
7526ccdf4f0SGreg Roach     * @return ResponseInterface
7535a78cd34SGreg Roach     */
7546ccdf4f0SGreg Roach    public function postAddNoteAction(ServerRequestInterface $request, Tree $tree): ResponseInterface
755c1010edaSGreg Roach    {
756*bed27cedSGreg Roach        $xref = $request->getQueryParams()['xref'];
7575a78cd34SGreg Roach
7585a78cd34SGreg Roach        $note = Note::getInstance($xref, $tree);
7595a78cd34SGreg Roach
7605a78cd34SGreg Roach        if ($note === null) {
76159f2f229SGreg Roach            throw new NoteNotFoundException();
7625a78cd34SGreg Roach        }
7635a78cd34SGreg Roach
7645a78cd34SGreg Roach        $this->addRecordToCart($note);
7655a78cd34SGreg Roach
7666ccdf4f0SGreg Roach        return redirect($note->url());
7675a78cd34SGreg Roach    }
7685a78cd34SGreg Roach
7695a78cd34SGreg Roach    /**
7706ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
771b6db7c1fSGreg Roach     * @param Tree                   $tree
7725a78cd34SGreg Roach     *
7736ccdf4f0SGreg Roach     * @return ResponseInterface
7745a78cd34SGreg Roach     */
7756ccdf4f0SGreg Roach    public function getAddRepositoryAction(ServerRequestInterface $request, Tree $tree): ResponseInterface
776c1010edaSGreg Roach    {
777*bed27cedSGreg Roach        $xref = $request->getQueryParams()['xref'];
7785a78cd34SGreg Roach
7795a78cd34SGreg Roach        $repository = Repository::getInstance($xref, $tree);
7805a78cd34SGreg Roach
7815a78cd34SGreg Roach        if ($repository === null) {
78259f2f229SGreg Roach            throw new RepositoryNotFoundException();
7835a78cd34SGreg Roach        }
7845a78cd34SGreg Roach
7855a78cd34SGreg Roach        $options = $this->repositoryOptions($repository);
7865a78cd34SGreg Roach
78739ca88baSGreg Roach        $title = I18N::translate('Add %s to the clippings cart', $repository->fullName());
7885a78cd34SGreg Roach
7895a78cd34SGreg Roach        return $this->viewResponse('modules/clippings/add-options', [
7905a78cd34SGreg Roach            'options' => $options,
7915a78cd34SGreg Roach            'default' => key($options),
7925a78cd34SGreg Roach            'record'  => $repository,
7935a78cd34SGreg Roach            'title'   => $title,
7945a78cd34SGreg Roach            'tree'    => $tree,
7955a78cd34SGreg Roach        ]);
7965a78cd34SGreg Roach    }
7975a78cd34SGreg Roach
7985a78cd34SGreg Roach    /**
7995a78cd34SGreg Roach     * @param Repository $repository
8005a78cd34SGreg Roach     *
8015a78cd34SGreg Roach     * @return string[]
8025a78cd34SGreg Roach     */
803c1010edaSGreg Roach    private function repositoryOptions(Repository $repository): array
804c1010edaSGreg Roach    {
80539ca88baSGreg Roach        $name = strip_tags($repository->fullName());
8065a78cd34SGreg Roach
8075a78cd34SGreg Roach        return [
8085a78cd34SGreg Roach            'self' => $name,
8095a78cd34SGreg Roach        ];
8105a78cd34SGreg Roach    }
8115a78cd34SGreg Roach
8125a78cd34SGreg Roach    /**
8136ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
814b6db7c1fSGreg Roach     * @param Tree                   $tree
8155a78cd34SGreg Roach     *
8166ccdf4f0SGreg Roach     * @return ResponseInterface
8175a78cd34SGreg Roach     */
8186ccdf4f0SGreg Roach    public function postAddRepositoryAction(ServerRequestInterface $request, Tree $tree): ResponseInterface
819c1010edaSGreg Roach    {
820*bed27cedSGreg Roach        $xref = $request->getQueryParams()['xref'];
8215a78cd34SGreg Roach
8225a78cd34SGreg Roach        $repository = Repository::getInstance($xref, $tree);
8235a78cd34SGreg Roach
8245a78cd34SGreg Roach        if ($repository === null) {
82559f2f229SGreg Roach            throw new RepositoryNotFoundException();
8265a78cd34SGreg Roach        }
8275a78cd34SGreg Roach
8285a78cd34SGreg Roach        $this->addRecordToCart($repository);
8295a78cd34SGreg Roach
8306ccdf4f0SGreg Roach        return redirect($repository->url());
8315a78cd34SGreg Roach    }
8325a78cd34SGreg Roach
8335a78cd34SGreg Roach    /**
8346ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
835b6db7c1fSGreg Roach     * @param Tree                   $tree
8365a78cd34SGreg Roach     *
8376ccdf4f0SGreg Roach     * @return ResponseInterface
8385a78cd34SGreg Roach     */
8396ccdf4f0SGreg Roach    public function getAddSourceAction(ServerRequestInterface $request, Tree $tree): ResponseInterface
840c1010edaSGreg Roach    {
841*bed27cedSGreg Roach        $xref = $request->getQueryParams()['xref'];
8425a78cd34SGreg Roach
8435a78cd34SGreg Roach        $source = Source::getInstance($xref, $tree);
8445a78cd34SGreg Roach
8455a78cd34SGreg Roach        if ($source === null) {
84659f2f229SGreg Roach            throw new SourceNotFoundException();
8475a78cd34SGreg Roach        }
8485a78cd34SGreg Roach
8495a78cd34SGreg Roach        $options = $this->sourceOptions($source);
8505a78cd34SGreg Roach
85139ca88baSGreg Roach        $title = I18N::translate('Add %s to the clippings cart', $source->fullName());
8525a78cd34SGreg Roach
8535a78cd34SGreg Roach        return $this->viewResponse('modules/clippings/add-options', [
8545a78cd34SGreg Roach            'options' => $options,
8555a78cd34SGreg Roach            'default' => key($options),
8565a78cd34SGreg Roach            'record'  => $source,
8575a78cd34SGreg Roach            'title'   => $title,
8585a78cd34SGreg Roach            'tree'    => $tree,
8595a78cd34SGreg Roach        ]);
8605a78cd34SGreg Roach    }
8615a78cd34SGreg Roach
8625a78cd34SGreg Roach    /**
8635a78cd34SGreg Roach     * @param Source $source
8645a78cd34SGreg Roach     *
8655a78cd34SGreg Roach     * @return string[]
8665a78cd34SGreg Roach     */
867c1010edaSGreg Roach    private function sourceOptions(Source $source): array
868c1010edaSGreg Roach    {
86939ca88baSGreg Roach        $name = strip_tags($source->fullName());
8705a78cd34SGreg Roach
8715a78cd34SGreg Roach        return [
87239ca88baSGreg Roach            'only'   => strip_tags($source->fullName()),
8735a78cd34SGreg Roach            'linked' => I18N::translate('%s and the individuals that reference it.', $name),
8745a78cd34SGreg Roach        ];
8755a78cd34SGreg Roach    }
8765a78cd34SGreg Roach
8775a78cd34SGreg Roach    /**
8786ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
879b6db7c1fSGreg Roach     * @param Tree                   $tree
8805a78cd34SGreg Roach     *
8816ccdf4f0SGreg Roach     * @return ResponseInterface
8825a78cd34SGreg Roach     */
8836ccdf4f0SGreg Roach    public function postAddSourceAction(ServerRequestInterface $request, Tree $tree): ResponseInterface
884c1010edaSGreg Roach    {
885*bed27cedSGreg Roach        $xref   = $request->getQueryParams()['xref'];
886*bed27cedSGreg Roach        $option = $request->getParsedBody()['option'];
8875a78cd34SGreg Roach
8885a78cd34SGreg Roach        $source = Source::getInstance($xref, $tree);
8895a78cd34SGreg Roach
8905a78cd34SGreg Roach        if ($source === null) {
89159f2f229SGreg Roach            throw new SourceNotFoundException();
8925a78cd34SGreg Roach        }
8935a78cd34SGreg Roach
8945a78cd34SGreg Roach        $this->addRecordToCart($source);
8955a78cd34SGreg Roach
8965a78cd34SGreg Roach        if ($option === 'linked') {
8975a78cd34SGreg Roach            foreach ($source->linkedIndividuals('SOUR') as $individual) {
8985a78cd34SGreg Roach                $this->addRecordToCart($individual);
8995a78cd34SGreg Roach            }
9005a78cd34SGreg Roach            foreach ($source->linkedFamilies('SOUR') as $family) {
9015a78cd34SGreg Roach                $this->addRecordToCart($family);
9025a78cd34SGreg Roach            }
9035a78cd34SGreg Roach        }
9045a78cd34SGreg Roach
9056ccdf4f0SGreg Roach        return redirect($source->url());
9065a78cd34SGreg Roach    }
9075a78cd34SGreg Roach
9085a78cd34SGreg Roach    /**
9095a78cd34SGreg Roach     * Get all the records in the cart.
9105a78cd34SGreg Roach     *
9115a78cd34SGreg Roach     * @param Tree $tree
9125a78cd34SGreg Roach     *
9135a78cd34SGreg Roach     * @return GedcomRecord[]
9145a78cd34SGreg Roach     */
915c1010edaSGreg Roach    private function allRecordsInCart(Tree $tree): array
916c1010edaSGreg Roach    {
9175a78cd34SGreg Roach        $cart = Session::get('cart', []);
9185a78cd34SGreg Roach
919aa6f03bbSGreg Roach        $xrefs = array_keys($cart[$tree->name()] ?? []);
9205a78cd34SGreg Roach
9215a78cd34SGreg Roach        // Fetch all the records in the cart.
922*bed27cedSGreg Roach        $records = array_map(static function (string $xref) use ($tree): ?GedcomRecord {
9235a78cd34SGreg Roach            return GedcomRecord::getInstance($xref, $tree);
9245a78cd34SGreg Roach        }, $xrefs);
9255a78cd34SGreg Roach
9265a78cd34SGreg Roach        // Some records may have been deleted after they were added to the cart.
9275a78cd34SGreg Roach        $records = array_filter($records);
9285a78cd34SGreg Roach
9295a78cd34SGreg Roach        // Group and sort.
9300b5fd0a6SGreg Roach        uasort($records, static function (GedcomRecord $x, GedcomRecord $y): int {
931c156e8f5SGreg Roach            return $x::RECORD_TYPE <=> $y::RECORD_TYPE ?: GedcomRecord::nameComparator()($x, $y);
9325a78cd34SGreg Roach        });
9335a78cd34SGreg Roach
9345a78cd34SGreg Roach        return $records;
9355a78cd34SGreg Roach    }
9365a78cd34SGreg Roach
9375a78cd34SGreg Roach    /**
9385a78cd34SGreg Roach     * Add a record (and direclty linked sources, notes, etc. to the cart.
9395a78cd34SGreg Roach     *
9405a78cd34SGreg Roach     * @param GedcomRecord $record
94118d7a90dSGreg Roach     *
94218d7a90dSGreg Roach     * @return void
9435a78cd34SGreg Roach     */
944e364afe4SGreg Roach    private function addRecordToCart(GedcomRecord $record): void
945c1010edaSGreg Roach    {
9465a78cd34SGreg Roach        $cart = Session::get('cart', []);
9475a78cd34SGreg Roach
948f4afa648SGreg Roach        $tree_name = $record->tree()->name();
9495a78cd34SGreg Roach
9505a78cd34SGreg Roach        // Add this record
951c0935879SGreg Roach        $cart[$tree_name][$record->xref()] = true;
9525a78cd34SGreg Roach
9535a78cd34SGreg Roach        // Add directly linked media, notes, repositories and sources.
9548d0ebef0SGreg Roach        preg_match_all('/\n\d (?:OBJE|NOTE|SOUR|REPO) @(' . Gedcom::REGEX_XREF . ')@/', $record->gedcom(), $matches);
9555a78cd34SGreg Roach
9565a78cd34SGreg Roach        foreach ($matches[1] as $match) {
9575a78cd34SGreg Roach            $cart[$tree_name][$match] = true;
9585a78cd34SGreg Roach        }
9595a78cd34SGreg Roach
9605a78cd34SGreg Roach        Session::put('cart', $cart);
9615a78cd34SGreg Roach    }
9625a78cd34SGreg Roach
9635a78cd34SGreg Roach    /**
9645a78cd34SGreg Roach     * @param Tree $tree
9655a78cd34SGreg Roach     *
9665a78cd34SGreg Roach     * @return bool
9675a78cd34SGreg Roach     */
968c1010edaSGreg Roach    private function isCartEmpty(Tree $tree): bool
969c1010edaSGreg Roach    {
9705a78cd34SGreg Roach        $cart = Session::get('cart', []);
9715a78cd34SGreg Roach
972aa6f03bbSGreg Roach        return empty($cart[$tree->name()]);
9735a78cd34SGreg Roach    }
9748c2e8227SGreg Roach}
975