xref: /webtrees/app/Module/PedigreeChartModule.php (revision b62a8ecaef02a45d7e018fdb0f702d4575d8d0de)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2020 webtrees development team
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18declare(strict_types=1);
19
20namespace Fisharebest\Webtrees\Module;
21
22use Aura\Router\RouterContainer;
23use Fig\Http\Message\RequestMethodInterface;
24use Fisharebest\Webtrees\Auth;
25use Fisharebest\Webtrees\Registry;
26use Fisharebest\Webtrees\I18N;
27use Fisharebest\Webtrees\Individual;
28use Fisharebest\Webtrees\Menu;
29use Fisharebest\Webtrees\Services\ChartService;
30use Fisharebest\Webtrees\Tree;
31use Psr\Http\Message\ResponseInterface;
32use Psr\Http\Message\ServerRequestInterface;
33use Psr\Http\Server\RequestHandlerInterface;
34
35use function app;
36use function assert;
37use function is_string;
38use function max;
39use function min;
40use function route;
41use function view;
42
43/**
44 * Class PedigreeChartModule
45 */
46class PedigreeChartModule extends AbstractModule implements ModuleChartInterface, RequestHandlerInterface
47{
48    use ModuleChartTrait;
49
50    protected const ROUTE_URL  = '/tree/{tree}/pedigree-{style}-{generations}/{xref}';
51
52    // Chart styles
53    public const STYLE_LEFT  = 'left';
54    public const STYLE_RIGHT = 'right';
55    public const STYLE_UP    = 'up';
56    public const STYLE_DOWN  = 'down';
57
58    // Defaults
59    protected const DEFAULT_GENERATIONS = '4';
60    protected const DEFAULT_STYLE       = self::STYLE_RIGHT;
61    protected const DEFAULT_PARAMETERS  = [
62        'generations' => self::DEFAULT_GENERATIONS,
63        'style'       => self::DEFAULT_STYLE,
64    ];
65
66    // Limits
67    protected const MINIMUM_GENERATIONS = 2;
68    protected const MAXIMUM_GENERATIONS = 12;
69
70    // For RTL languages
71    protected const MIRROR_STYLE = [
72        self::STYLE_UP    => self::STYLE_DOWN,
73        self::STYLE_DOWN  => self::STYLE_UP,
74        self::STYLE_LEFT  => self::STYLE_RIGHT,
75        self::STYLE_RIGHT => self::STYLE_LEFT,
76    ];
77
78    /** @var ChartService */
79    private $chart_service;
80
81    /**
82     * PedigreeChartModule constructor.
83     *
84     * @param ChartService $chart_service
85     */
86    public function __construct(ChartService $chart_service)
87    {
88        $this->chart_service = $chart_service;
89    }
90
91    /**
92     * Initialization.
93     *
94     * @return void
95     */
96    public function boot(): void
97    {
98        $router_container = app(RouterContainer::class);
99        assert($router_container instanceof RouterContainer);
100
101        $router_container->getMap()
102            ->get(static::class, static::ROUTE_URL, $this)
103            ->allows(RequestMethodInterface::METHOD_POST)
104            ->tokens([
105                'generations' => '\d+',
106                'style'       => implode('|', array_keys($this->styles())),
107            ]);
108    }
109
110    /**
111     * How should this module be identified in the control panel, etc.?
112     *
113     * @return string
114     */
115    public function title(): string
116    {
117        /* I18N: Name of a module/chart */
118        return I18N::translate('Pedigree');
119    }
120
121    /**
122     * A sentence describing what this module does.
123     *
124     * @return string
125     */
126    public function description(): string
127    {
128        /* I18N: Description of the “PedigreeChart” module */
129        return I18N::translate('A chart of an individual’s ancestors, formatted as a tree.');
130    }
131
132    /**
133     * CSS class for the URL.
134     *
135     * @return string
136     */
137    public function chartMenuClass(): string
138    {
139        return 'menu-chart-pedigree';
140    }
141
142    /**
143     * Return a menu item for this chart - for use in individual boxes.
144     *
145     * @param Individual $individual
146     *
147     * @return Menu|null
148     */
149    public function chartBoxMenu(Individual $individual): ?Menu
150    {
151        return $this->chartMenu($individual);
152    }
153
154    /**
155     * The title for a specific instance of this chart.
156     *
157     * @param Individual $individual
158     *
159     * @return string
160     */
161    public function chartTitle(Individual $individual): string
162    {
163        /* I18N: %s is an individual’s name */
164        return I18N::translate('Pedigree tree of %s', $individual->fullName());
165    }
166
167    /**
168     * The URL for a page showing chart options.
169     *
170     * @param Individual $individual
171     * @param mixed[]    $parameters
172     *
173     * @return string
174     */
175    public function chartUrl(Individual $individual, array $parameters = []): string
176    {
177        return route(static::class, [
178                'xref' => $individual->xref(),
179                'tree' => $individual->tree()->name(),
180            ] + $parameters + static::DEFAULT_PARAMETERS);
181    }
182
183    /**
184     * @param ServerRequestInterface $request
185     *
186     * @return ResponseInterface
187     */
188    public function handle(ServerRequestInterface $request): ResponseInterface
189    {
190        $tree = $request->getAttribute('tree');
191        assert($tree instanceof Tree);
192
193        $xref = $request->getAttribute('xref');
194        assert(is_string($xref));
195
196        $individual = Registry::individualFactory()->make($xref, $tree);
197        $individual = Auth::checkIndividualAccess($individual, false, true);
198
199        $ajax        = $request->getQueryParams()['ajax'] ?? '';
200        $generations = (int) $request->getAttribute('generations');
201        $style       = $request->getAttribute('style');
202        $user        = $request->getAttribute('user');
203
204        // Convert POST requests into GET requests for pretty URLs.
205        if ($request->getMethod() === RequestMethodInterface::METHOD_POST) {
206            $params = (array) $request->getParsedBody();
207
208            return redirect(route(self::class, [
209                'tree'        => $request->getAttribute('tree')->name(),
210                'xref'        => $params['xref'],
211                'style'       => $params['style'],
212                'generations' => $params['generations'],
213            ]));
214        }
215
216        Auth::checkComponentAccess($this, ModuleChartInterface::class, $tree, $user);
217
218        $generations = min($generations, self::MAXIMUM_GENERATIONS);
219        $generations = max($generations, self::MINIMUM_GENERATIONS);
220
221        if ($ajax === '1') {
222            $this->layout = 'layouts/ajax';
223
224            $ancestors = $this->chart_service->sosaStradonitzAncestors($individual, $generations);
225
226            // Father’s ancestors link to the father’s pedigree
227            // Mother’s ancestors link to the mother’s pedigree..
228            $links = $ancestors->map(function (?Individual $individual, $sosa) use ($ancestors, $style, $generations): string {
229                if ($individual instanceof Individual && $sosa >= 2 ** $generations / 2 && $individual->childFamilies()->isNotEmpty()) {
230                    // The last row/column, and there are more generations.
231                    if ($sosa >= 2 ** $generations * 3 / 4) {
232                        return $this->nextLink($ancestors->get(3), $style, $generations);
233                    }
234
235                    return $this->nextLink($ancestors->get(2), $style, $generations);
236                }
237
238                // A spacer to fix the "Left" layout.
239                return '<span class="invisible px-2">' . view('icons/arrow-' . $style) . '</span>';
240            });
241
242            // Root individual links to their children.
243            $links->put(1, $this->previousLink($individual, $style, $generations));
244
245            return $this->viewResponse('modules/pedigree-chart/chart', [
246                'ancestors'   => $ancestors,
247                'generations' => $generations,
248                'style'       => $style,
249                'layout'      => 'right',
250                'links'       => $links,
251                'spacer'      => $this->spacer(),
252            ]);
253        }
254
255        $ajax_url = $this->chartUrl($individual, [
256            'ajax'        => true,
257            'generations' => $generations,
258            'style'       => $style,
259            'xref'        => $xref,
260        ]);
261
262        return $this->viewResponse('modules/pedigree-chart/page', [
263            'ajax_url'           => $ajax_url,
264            'generations'        => $generations,
265            'individual'         => $individual,
266            'module'             => $this->name(),
267            'max_generations'    => self::MAXIMUM_GENERATIONS,
268            'min_generations'    => self::MINIMUM_GENERATIONS,
269            'style'              => $style,
270            'styles'             => $this->styles(),
271            'title'              => $this->chartTitle($individual),
272            'tree'               => $tree,
273        ]);
274    }
275
276    /**
277     * A link-sized spacer, to maintain the chart layout
278     *
279     * @return string
280     */
281    public function spacer(): string
282    {
283        return '<span class="px-2">' . view('icons/spacer') . '</span>';
284    }
285
286    /**
287     * Build a menu for the chart root individual
288     *
289     * @param Individual $individual
290     * @param string     $style
291     * @param int        $generations
292     *
293     * @return string
294     */
295    public function nextLink(Individual $individual, string $style, int $generations): string
296    {
297        $icon  = view('icons/arrow-' . $style);
298        $title = $this->chartTitle($individual);
299        $url   = $this->chartUrl($individual, [
300            'style'       => $style,
301            'generations' => $generations,
302        ]);
303
304        return '<a class="px-2" href="' . e($url) . '" title="' . strip_tags($title) . '">' . $icon . '<span class="sr-only">' . $title . '</span></a>';
305    }
306
307    /**
308     * Build a menu for the chart root individual
309     *
310     * @param Individual $individual
311     * @param string     $style
312     * @param int        $generations
313     *
314     * @return string
315     */
316    public function previousLink(Individual $individual, string $style, int $generations): string
317    {
318        $icon = view('icons/arrow-' . self::MIRROR_STYLE[$style]);
319
320        $siblings = [];
321        $spouses  = [];
322        $children = [];
323
324        foreach ($individual->childFamilies() as $family) {
325            foreach ($family->children() as $child) {
326                if ($child !== $individual) {
327                    $siblings[] = $this->individualLink($child, $style, $generations);
328                }
329            }
330        }
331
332        foreach ($individual->spouseFamilies() as $family) {
333            foreach ($family->spouses() as $spouse) {
334                if ($spouse !== $individual) {
335                    $spouses[] = $this->individualLink($spouse, $style, $generations);
336                }
337            }
338
339            foreach ($family->children() as $child) {
340                $children[] = $this->individualLink($child, $style, $generations);
341            }
342        }
343
344        return view('modules/pedigree-chart/previous', [
345            'icon'        => $icon,
346            'individual'  => $individual,
347            'generations' => $generations,
348            'style'       => $style,
349            'chart'       => $this,
350            'siblings'    => $siblings,
351            'spouses'     => $spouses,
352            'children'    => $children,
353        ]);
354    }
355
356    /**
357     * @param Individual $individual
358     * @param string     $style
359     * @param int        $generations
360     *
361     * @return string
362     */
363    protected function individualLink(Individual $individual, string $style, int $generations): string
364    {
365        $text  = $individual->fullName();
366        $title = $this->chartTitle($individual);
367        $url   = $this->chartUrl($individual, [
368            'style'       => $style,
369            'generations' => $generations,
370        ]);
371
372        return '<a class="dropdown-item" href="' . e($url) . '" title="' . strip_tags($title) . '">' . $text . '</a>';
373    }
374
375    /**
376     * This chart can display its output in a number of styles
377     *
378     * @return string[]
379     */
380    protected function styles(): array
381    {
382        return [
383            self::STYLE_LEFT  => I18N::translate('Left'),
384            self::STYLE_RIGHT => I18N::translate('Right'),
385            self::STYLE_UP    => I18N::translate('Up'),
386            self::STYLE_DOWN  => I18N::translate('Down'),
387        ];
388    }
389}
390