xref: /webtrees/app/Module/LifespansChartModule.php (revision 36826bd404ac14372b24a221451f237578d36f19)
1168ff6f3Sric2016<?php
23976b470SGreg Roach
3168ff6f3Sric2016/**
4168ff6f3Sric2016 * webtrees: online genealogy
58fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
6168ff6f3Sric2016 * This program is free software: you can redistribute it and/or modify
7168ff6f3Sric2016 * it under the terms of the GNU General Public License as published by
8168ff6f3Sric2016 * the Free Software Foundation, either version 3 of the License, or
9168ff6f3Sric2016 * (at your option) any later version.
10168ff6f3Sric2016 * This program is distributed in the hope that it will be useful,
11168ff6f3Sric2016 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12168ff6f3Sric2016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13168ff6f3Sric2016 * GNU General Public License for more details.
14168ff6f3Sric2016 * You should have received a copy of the GNU General Public License
15168ff6f3Sric2016 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16168ff6f3Sric2016 */
17fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
19e7f56f2aSGreg Roach
20168ff6f3Sric2016namespace Fisharebest\Webtrees\Module;
21168ff6f3Sric2016
2271378461SGreg Roachuse Aura\Router\RouterContainer;
2371378461SGreg Roachuse Fig\Http\Message\RequestMethodInterface;
24e2b8114dSGreg Roachuse Fisharebest\ExtCalendar\GregorianCalendar;
259867b2f0SGreg Roachuse Fisharebest\Webtrees\Auth;
26e2b8114dSGreg Roachuse Fisharebest\Webtrees\ColorGenerator;
27e2b8114dSGreg Roachuse Fisharebest\Webtrees\Date;
28168ff6f3Sric2016use Fisharebest\Webtrees\I18N;
29168ff6f3Sric2016use Fisharebest\Webtrees\Individual;
30e2b8114dSGreg Roachuse Fisharebest\Webtrees\Place;
31e2b8114dSGreg Roachuse Fisharebest\Webtrees\Tree;
32e2b8114dSGreg Roachuse Illuminate\Database\Capsule\Manager as DB;
33e2b8114dSGreg Roachuse Illuminate\Database\Query\JoinClause;
346ccdf4f0SGreg Roachuse Psr\Http\Message\ResponseInterface;
356ccdf4f0SGreg Roachuse Psr\Http\Message\ServerRequestInterface;
3671378461SGreg Roachuse Psr\Http\Server\RequestHandlerInterface;
37e2b8114dSGreg Roachuse stdClass;
38168ff6f3Sric2016
399e18e23bSGreg Roachuse function app;
409e18e23bSGreg Roachuse function assert;
419e18e23bSGreg Roach
42168ff6f3Sric2016/**
43168ff6f3Sric2016 * Class LifespansChartModule
44168ff6f3Sric2016 */
4571378461SGreg Roachclass LifespansChartModule extends AbstractModule implements ModuleChartInterface, RequestHandlerInterface
46c1010edaSGreg Roach{
4749a243cbSGreg Roach    use ModuleChartTrait;
4849a243cbSGreg Roach
4971378461SGreg Roach    private const ROUTE_NAME = 'lifespans-chart';
5071378461SGreg Roach    private const ROUTE_URL  = '/tree/{tree}/lifespans';
5171378461SGreg Roach
5271378461SGreg Roach    // Defaults
5371378461SGreg Roach    protected const DEFAULT_PARAMETERS = [];
5471378461SGreg Roach
55e2b8114dSGreg Roach    // Parameters for generating colors
56e2b8114dSGreg Roach    protected const RANGE      = 120; // degrees
57e2b8114dSGreg Roach    protected const SATURATION = 100; // percent
58e2b8114dSGreg Roach    protected const LIGHTNESS  = 30; // percent
59e2b8114dSGreg Roach    protected const ALPHA      = 0.25;
60e2b8114dSGreg Roach
61168ff6f3Sric2016    /**
6271378461SGreg Roach     * Initialization.
6371378461SGreg Roach     *
649e18e23bSGreg Roach     * @return void
6571378461SGreg Roach     */
669e18e23bSGreg Roach    public function boot(): void
6771378461SGreg Roach    {
689e18e23bSGreg Roach        $router_container = app(RouterContainer::class);
699e18e23bSGreg Roach        assert($router_container instanceof RouterContainer);
709e18e23bSGreg Roach
7171378461SGreg Roach        $router_container->getMap()
72f7358520SGreg Roach            ->get(self::ROUTE_NAME, self::ROUTE_URL, $this)
7371378461SGreg Roach            ->allows(RequestMethodInterface::METHOD_POST);
7471378461SGreg Roach    }
7571378461SGreg Roach
7671378461SGreg Roach    /**
770cfd6963SGreg Roach     * How should this module be identified in the control panel, etc.?
78168ff6f3Sric2016     *
79168ff6f3Sric2016     * @return string
80168ff6f3Sric2016     */
8149a243cbSGreg Roach    public function title(): string
82c1010edaSGreg Roach    {
83bbb76c12SGreg Roach        /* I18N: Name of a module/chart */
84bbb76c12SGreg Roach        return I18N::translate('Lifespans');
85168ff6f3Sric2016    }
86168ff6f3Sric2016
87168ff6f3Sric2016    /**
88168ff6f3Sric2016     * A sentence describing what this module does.
89168ff6f3Sric2016     *
90168ff6f3Sric2016     * @return string
91168ff6f3Sric2016     */
9249a243cbSGreg Roach    public function description(): string
93c1010edaSGreg Roach    {
94bbb76c12SGreg Roach        /* I18N: Description of the “LifespansChart” module */
95bbb76c12SGreg Roach        return I18N::translate('A chart of individuals’ lifespans.');
96168ff6f3Sric2016    }
97168ff6f3Sric2016
98168ff6f3Sric2016    /**
99377a2979SGreg Roach     * CSS class for the URL.
100377a2979SGreg Roach     *
101377a2979SGreg Roach     * @return string
102377a2979SGreg Roach     */
103377a2979SGreg Roach    public function chartMenuClass(): string
104377a2979SGreg Roach    {
105377a2979SGreg Roach        return 'menu-chart-lifespan';
106377a2979SGreg Roach    }
107377a2979SGreg Roach
108377a2979SGreg Roach    /**
109e6562982SGreg Roach     * The URL for this chart.
110168ff6f3Sric2016     *
11160bc3e3fSGreg Roach     * @param Individual $individual
11259597b37SGreg Roach     * @param mixed[]    $parameters
11360bc3e3fSGreg Roach     *
114e6562982SGreg Roach     * @return string
115168ff6f3Sric2016     */
116e6562982SGreg Roach    public function chartUrl(Individual $individual, array $parameters = []): string
117c1010edaSGreg Roach    {
11871378461SGreg Roach        return route(self::ROUTE_NAME, [
11971378461SGreg Roach                'tree'  => $individual->tree()->name(),
120*36826bd4SGreg Roach                'xrefs' => [$individual->xref()],
12171378461SGreg Roach            ] + $parameters + self::DEFAULT_PARAMETERS);
122168ff6f3Sric2016    }
123e2b8114dSGreg Roach
124e2b8114dSGreg Roach    /**
1256ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
126e2b8114dSGreg Roach     *
1276ccdf4f0SGreg Roach     * @return ResponseInterface
128e2b8114dSGreg Roach     */
12971378461SGreg Roach    public function handle(ServerRequestInterface $request): ResponseInterface
130e2b8114dSGreg Roach    {
13157ab2231SGreg Roach        $tree = $request->getAttribute('tree');
1324ea62551SGreg Roach        assert($tree instanceof Tree);
1334ea62551SGreg Roach
13457ab2231SGreg Roach        $user      = $request->getAttribute('user');
13571378461SGreg Roach        $xrefs     = $request->getQueryParams()['xrefs'] ?? [];
1360b93976aSGreg Roach        $ajax      = $request->getQueryParams()['ajax'] ?? '';
13771378461SGreg Roach        $addxref   = $request->getParsedBody()['addxref'] ?? '';
13871378461SGreg Roach        $addfam    = (bool) ($request->getParsedBody()['addfam'] ?? false);
13971378461SGreg Roach        $placename = $request->getParsedBody()['placename'] ?? '';
14071378461SGreg Roach        $start     = $request->getParsedBody()['start'] ?? '';
14171378461SGreg Roach        $end       = $request->getParsedBody()['end'] ?? '';
142e2b8114dSGreg Roach
143e2b8114dSGreg Roach        $place      = new Place($placename, $tree);
144e2b8114dSGreg Roach        $start_date = new Date($start);
145e2b8114dSGreg Roach        $end_date   = new Date($end);
146e2b8114dSGreg Roach
147e2b8114dSGreg Roach        $xrefs = array_unique($xrefs);
148e2b8114dSGreg Roach
149e2b8114dSGreg Roach        // Add an individual, and family members
150e2b8114dSGreg Roach        $individual = Individual::getInstance($addxref, $tree);
151e2b8114dSGreg Roach        if ($individual !== null) {
152e2b8114dSGreg Roach            $xrefs[] = $addxref;
153e2b8114dSGreg Roach            if ($addfam) {
154e2b8114dSGreg Roach                $xrefs = array_merge($xrefs, $this->closeFamily($individual));
155e2b8114dSGreg Roach            }
156e2b8114dSGreg Roach        }
157e2b8114dSGreg Roach
158e2b8114dSGreg Roach        // Select by date and/or place.
15971378461SGreg Roach        if ($placename !== '' && $start_date->isOK() && $end_date->isOK()) {
160e2b8114dSGreg Roach            $date_xrefs  = $this->findIndividualsByDate($start_date, $end_date, $tree);
161e2b8114dSGreg Roach            $place_xrefs = $this->findIndividualsByPlace($place, $tree);
162e2b8114dSGreg Roach            $xrefs       = array_intersect($date_xrefs, $place_xrefs);
163e2b8114dSGreg Roach        } elseif ($start_date->isOK() && $end_date->isOK()) {
164e2b8114dSGreg Roach            $xrefs = $this->findIndividualsByDate($start_date, $end_date, $tree);
165e2b8114dSGreg Roach        } elseif ($placename !== '') {
166e2b8114dSGreg Roach            $xrefs = $this->findIndividualsByPlace($place, $tree);
167e2b8114dSGreg Roach        }
168e2b8114dSGreg Roach
169e2b8114dSGreg Roach        // Filter duplicates and private individuals.
170e2b8114dSGreg Roach        $xrefs = array_unique($xrefs);
1710b5fd0a6SGreg Roach        $xrefs = array_filter($xrefs, static function (string $xref) use ($tree): bool {
172e2b8114dSGreg Roach            $individual = Individual::getInstance($xref, $tree);
173e2b8114dSGreg Roach
174e2b8114dSGreg Roach            return $individual !== null && $individual->canShow();
175e2b8114dSGreg Roach        });
176e2b8114dSGreg Roach
17771378461SGreg Roach        // Convert POST requests into GET requests for pretty URLs.
17871378461SGreg Roach        if ($request->getMethod() === RequestMethodInterface::METHOD_POST) {
17971378461SGreg Roach            return redirect(route(self::ROUTE_NAME, [
1804ea62551SGreg Roach                'tree'  => $tree->name(),
18171378461SGreg Roach                'xrefs' => $xrefs,
18271378461SGreg Roach            ]));
18371378461SGreg Roach        }
18471378461SGreg Roach
18571378461SGreg Roach        Auth::checkComponentAccess($this, 'chart', $tree, $user);
18671378461SGreg Roach
1870b93976aSGreg Roach        if ($ajax === '1') {
18871378461SGreg Roach            $this->layout = 'layouts/ajax';
18971378461SGreg Roach
190e2b8114dSGreg Roach            $subtitle = $this->subtitle(count($xrefs), $start_date, $end_date, $placename);
191e2b8114dSGreg Roach
192e2b8114dSGreg Roach            return $this->chart($tree, $xrefs, $subtitle);
193e2b8114dSGreg Roach        }
194e2b8114dSGreg Roach
19571378461SGreg Roach        $reset_url = route(self::ROUTE_NAME, ['tree' => $tree->name()]);
196e2b8114dSGreg Roach
19771378461SGreg Roach        $ajax_url = route(self::ROUTE_NAME, [
19871378461SGreg Roach            'ajax'  => true,
19971378461SGreg Roach            'tree'  => $tree->name(),
20071378461SGreg Roach            'xrefs' => $xrefs,
201e2b8114dSGreg Roach        ]);
202e2b8114dSGreg Roach
2039b5537c3SGreg Roach        return $this->viewResponse('modules/lifespans-chart/page', [
204e2b8114dSGreg Roach            'ajax_url'  => $ajax_url,
20571378461SGreg Roach            'module'    => $this->name(),
206e2b8114dSGreg Roach            'reset_url' => $reset_url,
207e2b8114dSGreg Roach            'title'     => $this->title(),
208ef5d23f1SGreg Roach            'tree'      => $tree,
209e2b8114dSGreg Roach            'xrefs'     => $xrefs,
210e2b8114dSGreg Roach        ]);
211e2b8114dSGreg Roach    }
212e2b8114dSGreg Roach
213e2b8114dSGreg Roach    /**
214e2b8114dSGreg Roach     * @param Tree   $tree
215e2b8114dSGreg Roach     * @param array  $xrefs
216e2b8114dSGreg Roach     * @param string $subtitle
217e2b8114dSGreg Roach     *
2186ccdf4f0SGreg Roach     * @return ResponseInterface
219e2b8114dSGreg Roach     */
2206ccdf4f0SGreg Roach    protected function chart(Tree $tree, array $xrefs, string $subtitle): ResponseInterface
221e2b8114dSGreg Roach    {
222e2b8114dSGreg Roach        /** @var Individual[] $individuals */
2230b93976aSGreg Roach        $individuals = array_map(static function (string $xref) use ($tree): ?Individual {
224e2b8114dSGreg Roach            return Individual::getInstance($xref, $tree);
225e2b8114dSGreg Roach        }, $xrefs);
226e2b8114dSGreg Roach
2270b93976aSGreg Roach        $individuals = array_filter($individuals, static function (?Individual $individual): bool {
2280b93976aSGreg Roach            return $individual instanceof Individual && $individual->canShow();
229e2b8114dSGreg Roach        });
230e2b8114dSGreg Roach
231e2b8114dSGreg Roach        // Sort the array in order of birth year
2320c1a5edcSGreg Roach        usort($individuals, Individual::birthDateComparator());
233e2b8114dSGreg Roach
234e2b8114dSGreg Roach        // Round to whole decades
235e2b8114dSGreg Roach        $start_year = (int) floor($this->minYear($individuals) / 10) * 10;
236e2b8114dSGreg Roach        $end_year   = (int) ceil($this->maxYear($individuals) / 10) * 10;
237e2b8114dSGreg Roach
238e2b8114dSGreg Roach        $lifespans = $this->layoutIndividuals($individuals);
239e2b8114dSGreg Roach
2400b5fd0a6SGreg Roach        $max_rows = array_reduce($lifespans, static function ($carry, stdClass $item) {
241e2b8114dSGreg Roach            return max($carry, $item->row);
242e2b8114dSGreg Roach        }, 0);
243e2b8114dSGreg Roach
244e2b8114dSGreg Roach        $html = view('modules/lifespans-chart/chart', [
245e2b8114dSGreg Roach            'dir'        => I18N::direction(),
246e2b8114dSGreg Roach            'end_year'   => $end_year,
247e2b8114dSGreg Roach            'lifespans'  => $lifespans,
248e2b8114dSGreg Roach            'max_rows'   => $max_rows,
249e2b8114dSGreg Roach            'start_year' => $start_year,
250e2b8114dSGreg Roach            'subtitle'   => $subtitle,
251e2b8114dSGreg Roach        ]);
252e2b8114dSGreg Roach
2536ccdf4f0SGreg Roach        return response($html);
254e2b8114dSGreg Roach    }
255e2b8114dSGreg Roach
256e2b8114dSGreg Roach    /**
257e2b8114dSGreg Roach     * Find the latest event year for individuals
258e2b8114dSGreg Roach     *
259e2b8114dSGreg Roach     * @param array $individuals
260e2b8114dSGreg Roach     *
261e2b8114dSGreg Roach     * @return int
262e2b8114dSGreg Roach     */
263e2b8114dSGreg Roach    protected function maxYear(array $individuals): int
264e2b8114dSGreg Roach    {
2650b5fd0a6SGreg Roach        $jd = array_reduce($individuals, static function ($carry, Individual $item) {
266e2b8114dSGreg Roach            return max($carry, $item->getEstimatedDeathDate()->maximumJulianDay());
267e2b8114dSGreg Roach        }, 0);
268e2b8114dSGreg Roach
269e2b8114dSGreg Roach        $year = $this->jdToYear($jd);
270e2b8114dSGreg Roach
271e2b8114dSGreg Roach        // Don't show future dates
272e2b8114dSGreg Roach        return min($year, (int) date('Y'));
273e2b8114dSGreg Roach    }
274e2b8114dSGreg Roach
275e2b8114dSGreg Roach    /**
276e2b8114dSGreg Roach     * Find the earliest event year for individuals
277e2b8114dSGreg Roach     *
278e2b8114dSGreg Roach     * @param array $individuals
279e2b8114dSGreg Roach     *
280e2b8114dSGreg Roach     * @return int
281e2b8114dSGreg Roach     */
282e2b8114dSGreg Roach    protected function minYear(array $individuals): int
283e2b8114dSGreg Roach    {
2840b5fd0a6SGreg Roach        $jd = array_reduce($individuals, static function ($carry, Individual $item) {
285e2b8114dSGreg Roach            return min($carry, $item->getEstimatedBirthDate()->minimumJulianDay());
286e2b8114dSGreg Roach        }, PHP_INT_MAX);
287e2b8114dSGreg Roach
288e2b8114dSGreg Roach        return $this->jdToYear($jd);
289e2b8114dSGreg Roach    }
290e2b8114dSGreg Roach
291e2b8114dSGreg Roach    /**
292e2b8114dSGreg Roach     * Convert a julian day to a gregorian year
293e2b8114dSGreg Roach     *
294e2b8114dSGreg Roach     * @param int $jd
295e2b8114dSGreg Roach     *
296e2b8114dSGreg Roach     * @return int
297e2b8114dSGreg Roach     */
298e2b8114dSGreg Roach    protected function jdToYear(int $jd): int
299e2b8114dSGreg Roach    {
300e2b8114dSGreg Roach        if ($jd === 0) {
301e2b8114dSGreg Roach            return 0;
302e2b8114dSGreg Roach        }
303e2b8114dSGreg Roach
304e2b8114dSGreg Roach        $gregorian = new GregorianCalendar();
305e2b8114dSGreg Roach        [$y] = $gregorian->jdToYmd($jd);
306e2b8114dSGreg Roach
307e2b8114dSGreg Roach        return $y;
308e2b8114dSGreg Roach    }
309e2b8114dSGreg Roach
310e2b8114dSGreg Roach    /**
311e2b8114dSGreg Roach     * @param Date $start
312e2b8114dSGreg Roach     * @param Date $end
313e2b8114dSGreg Roach     * @param Tree $tree
314e2b8114dSGreg Roach     *
315e2b8114dSGreg Roach     * @return string[]
316e2b8114dSGreg Roach     */
317e2b8114dSGreg Roach    protected function findIndividualsByDate(Date $start, Date $end, Tree $tree): array
318e2b8114dSGreg Roach    {
319e2b8114dSGreg Roach        return DB::table('individuals')
3200b5fd0a6SGreg Roach            ->join('dates', static function (JoinClause $join): void {
321e2b8114dSGreg Roach                $join
322e2b8114dSGreg Roach                    ->on('d_file', '=', 'i_file')
323e2b8114dSGreg Roach                    ->on('d_gid', '=', 'i_id');
324e2b8114dSGreg Roach            })
325e2b8114dSGreg Roach            ->where('i_file', '=', $tree->id())
326e2b8114dSGreg Roach            ->where('d_julianday1', '<=', $end->maximumJulianDay())
327e2b8114dSGreg Roach            ->where('d_julianday2', '>=', $start->minimumJulianDay())
328e2b8114dSGreg Roach            ->whereNotIn('d_fact', ['BAPL', 'ENDL', 'SLGC', 'SLGS', '_TODO', 'CHAN'])
329e2b8114dSGreg Roach            ->pluck('i_id')
330e2b8114dSGreg Roach            ->all();
331e2b8114dSGreg Roach    }
332e2b8114dSGreg Roach
333e2b8114dSGreg Roach    /**
334e2b8114dSGreg Roach     * @param Place $place
335e2b8114dSGreg Roach     * @param Tree  $tree
336e2b8114dSGreg Roach     *
337e2b8114dSGreg Roach     * @return string[]
338e2b8114dSGreg Roach     */
339e2b8114dSGreg Roach    protected function findIndividualsByPlace(Place $place, Tree $tree): array
340e2b8114dSGreg Roach    {
341e2b8114dSGreg Roach        return DB::table('individuals')
3420b5fd0a6SGreg Roach            ->join('placelinks', static function (JoinClause $join): void {
343e2b8114dSGreg Roach                $join
344e2b8114dSGreg Roach                    ->on('pl_file', '=', 'i_file')
345e2b8114dSGreg Roach                    ->on('pl_gid', '=', 'i_id');
346e2b8114dSGreg Roach            })
347e2b8114dSGreg Roach            ->where('i_file', '=', $tree->id())
348392561bbSGreg Roach            ->where('pl_p_id', '=', $place->id())
349e2b8114dSGreg Roach            ->pluck('i_id')
350e2b8114dSGreg Roach            ->all();
351e2b8114dSGreg Roach    }
352e2b8114dSGreg Roach
353e2b8114dSGreg Roach    /**
354e2b8114dSGreg Roach     * Find the close family members of an individual.
355e2b8114dSGreg Roach     *
356e2b8114dSGreg Roach     * @param Individual $individual
357e2b8114dSGreg Roach     *
358e2b8114dSGreg Roach     * @return string[]
359e2b8114dSGreg Roach     */
360e2b8114dSGreg Roach    protected function closeFamily(Individual $individual): array
361e2b8114dSGreg Roach    {
362e2b8114dSGreg Roach        $xrefs = [];
363e2b8114dSGreg Roach
36439ca88baSGreg Roach        foreach ($individual->spouseFamilies() as $family) {
36539ca88baSGreg Roach            foreach ($family->children() as $child) {
366e2b8114dSGreg Roach                $xrefs[] = $child->xref();
367e2b8114dSGreg Roach            }
368e2b8114dSGreg Roach
36939ca88baSGreg Roach            foreach ($family->spouses() as $spouse) {
370e2b8114dSGreg Roach                $xrefs[] = $spouse->xref();
371e2b8114dSGreg Roach            }
372e2b8114dSGreg Roach        }
373e2b8114dSGreg Roach
37439ca88baSGreg Roach        foreach ($individual->childFamilies() as $family) {
37539ca88baSGreg Roach            foreach ($family->children() as $child) {
376e2b8114dSGreg Roach                $xrefs[] = $child->xref();
377e2b8114dSGreg Roach            }
378e2b8114dSGreg Roach
37939ca88baSGreg Roach            foreach ($family->spouses() as $spouse) {
380e2b8114dSGreg Roach                $xrefs[] = $spouse->xref();
381e2b8114dSGreg Roach            }
382e2b8114dSGreg Roach        }
383e2b8114dSGreg Roach
384e2b8114dSGreg Roach        return $xrefs;
385e2b8114dSGreg Roach    }
386e2b8114dSGreg Roach
387e2b8114dSGreg Roach    /**
388e2b8114dSGreg Roach     * Generate a subtitle, based on filter parameters
389e2b8114dSGreg Roach     *
390e2b8114dSGreg Roach     * @param int    $count
391e2b8114dSGreg Roach     * @param Date   $start
392e2b8114dSGreg Roach     * @param Date   $end
393e2b8114dSGreg Roach     * @param string $placename
394e2b8114dSGreg Roach     *
395e2b8114dSGreg Roach     * @return string
396e2b8114dSGreg Roach     */
397e2b8114dSGreg Roach    protected function subtitle(int $count, Date $start, Date $end, string $placename): string
398e2b8114dSGreg Roach    {
39971378461SGreg Roach        if ($placename !== '' && $start->isOK() && $end->isOK()) {
400e2b8114dSGreg Roach            return I18N::plural(
401e2b8114dSGreg Roach                '%s individual with events in %s between %s and %s',
402e2b8114dSGreg Roach                '%s individuals with events in %s between %s and %s',
403e2b8114dSGreg Roach                $count,
404e2b8114dSGreg Roach                I18N::number($count),
405e2b8114dSGreg Roach                $placename,
406e2b8114dSGreg Roach                $start->display(false, '%Y'),
407e2b8114dSGreg Roach                $end->display(false, '%Y')
408e2b8114dSGreg Roach            );
409e2b8114dSGreg Roach        }
410e2b8114dSGreg Roach
411e2b8114dSGreg Roach        if ($placename !== '') {
412e2b8114dSGreg Roach            return I18N::plural(
413e2b8114dSGreg Roach                '%s individual with events in %s',
414e2b8114dSGreg Roach                '%s individuals with events in %s',
415e2b8114dSGreg Roach                $count,
416e2b8114dSGreg Roach                I18N::number($count),
417e2b8114dSGreg Roach                $placename
418e2b8114dSGreg Roach            );
419e2b8114dSGreg Roach        }
420e2b8114dSGreg Roach
421e2b8114dSGreg Roach        if ($start->isOK() && $end->isOK()) {
422e2b8114dSGreg Roach            return I18N::plural(
423e2b8114dSGreg Roach                '%s individual with events between %s and %s',
424e2b8114dSGreg Roach                '%s individuals with events between %s and %s',
425e2b8114dSGreg Roach                $count,
426e2b8114dSGreg Roach                I18N::number($count),
427e2b8114dSGreg Roach                $start->display(false, '%Y'),
428e2b8114dSGreg Roach                $end->display(false, '%Y')
429e2b8114dSGreg Roach            );
430e2b8114dSGreg Roach        }
431e2b8114dSGreg Roach
432e2b8114dSGreg Roach        return I18N::plural('%s individual', '%s individuals', $count, I18N::number($count));
433e2b8114dSGreg Roach    }
43471378461SGreg Roach
43571378461SGreg Roach    /**
43671378461SGreg Roach     * @param Individual[] $individuals
43771378461SGreg Roach     *
43871378461SGreg Roach     * @return stdClass[]
43971378461SGreg Roach     */
44071378461SGreg Roach    private function layoutIndividuals(array $individuals): array
44171378461SGreg Roach    {
44271378461SGreg Roach        $colors = [
44371378461SGreg Roach            'M' => new ColorGenerator(240, self::SATURATION, self::LIGHTNESS, self::ALPHA, self::RANGE * -1),
44471378461SGreg Roach            'F' => new ColorGenerator(000, self::SATURATION, self::LIGHTNESS, self::ALPHA, self::RANGE),
44571378461SGreg Roach            'U' => new ColorGenerator(120, self::SATURATION, self::LIGHTNESS, self::ALPHA, self::RANGE),
44671378461SGreg Roach        ];
44771378461SGreg Roach
44871378461SGreg Roach        $current_year = (int) date('Y');
44971378461SGreg Roach
45071378461SGreg Roach        // Latest year used in each row
45171378461SGreg Roach        $rows = [];
45271378461SGreg Roach
45371378461SGreg Roach        $lifespans = [];
45471378461SGreg Roach
45571378461SGreg Roach        foreach ($individuals as $individual) {
45671378461SGreg Roach            $birth_jd   = $individual->getEstimatedBirthDate()->minimumJulianDay();
45771378461SGreg Roach            $birth_year = $this->jdToYear($birth_jd);
45871378461SGreg Roach            $death_jd   = $individual->getEstimatedDeathDate()->maximumJulianDay();
45971378461SGreg Roach            $death_year = $this->jdToYear($death_jd);
46071378461SGreg Roach
46171378461SGreg Roach            // Died before they were born?  Swapping the dates allows them to be shown.
46271378461SGreg Roach            if ($death_year < $birth_year) {
46371378461SGreg Roach                $death_year = $birth_year;
46471378461SGreg Roach            }
46571378461SGreg Roach
46671378461SGreg Roach            // Don't show death dates in the future.
46771378461SGreg Roach            $death_year = min($death_year, $current_year);
46871378461SGreg Roach
46971378461SGreg Roach            // Add this individual to the next row in the chart...
47071378461SGreg Roach            $next_row = count($rows);
47171378461SGreg Roach            // ...unless we can find an existing row where it fits.
47271378461SGreg Roach            foreach ($rows as $row => $year) {
47371378461SGreg Roach                if ($year < $birth_year) {
47471378461SGreg Roach                    $next_row = $row;
47571378461SGreg Roach                    break;
47671378461SGreg Roach                }
47771378461SGreg Roach            }
47871378461SGreg Roach
47971378461SGreg Roach            // Fill the row up to the year (leaving a small gap)
48071378461SGreg Roach            $rows[$next_row] = $death_year;
48171378461SGreg Roach
48271378461SGreg Roach            $lifespans[] = (object) [
48371378461SGreg Roach                'background' => $colors[$individual->sex()]->getNextColor(),
48471378461SGreg Roach                'birth_year' => $birth_year,
48571378461SGreg Roach                'death_year' => $death_year,
48671378461SGreg Roach                'id'         => 'individual-' . md5($individual->xref()),
48771378461SGreg Roach                'individual' => $individual,
48871378461SGreg Roach                'row'        => $next_row,
48971378461SGreg Roach            ];
49071378461SGreg Roach        }
49171378461SGreg Roach
49271378461SGreg Roach        return $lifespans;
49371378461SGreg Roach    }
494168ff6f3Sric2016}
495