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