xref: /webtrees/app/Module/FamilyTreeStatisticsModule.php (revision bbb76c12bd7338ebbb054916678efe20cb71ce1f)
18c2e8227SGreg Roach<?php
28c2e8227SGreg Roach/**
38c2e8227SGreg Roach * webtrees: online genealogy
41062a142SGreg Roach * Copyright (C) 2018 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 */
1676692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module;
1776692c8bSGreg Roach
180e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth;
1980536c2dSGreg Roachuse Fisharebest\Webtrees\Database;
200e62c4b8SGreg Roachuse Fisharebest\Webtrees\Filter;
21f36626dbSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsPrintLists;
220e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N;
230e62c4b8SGreg Roachuse Fisharebest\Webtrees\Stats;
24e490cd80SGreg Roachuse Fisharebest\Webtrees\Tree;
258c2e8227SGreg Roach
268c2e8227SGreg Roach/**
278c2e8227SGreg Roach * Class FamilyTreeStatisticsModule
288c2e8227SGreg Roach */
29c1010edaSGreg Roachclass FamilyTreeStatisticsModule extends AbstractModule implements ModuleBlockInterface
30c1010edaSGreg Roach{
31f36626dbSGreg Roach    /** Show this number of surnames by default */
32f36626dbSGreg Roach    const DEFAULT_NUMBER_OF_SURNAMES = 10;
33f36626dbSGreg Roach
348c2e8227SGreg Roach    /** {@inheritdoc} */
35c1010edaSGreg Roach    public function getTitle()
36c1010edaSGreg Roach    {
37*bbb76c12SGreg Roach        /* I18N: Name of a module */
38*bbb76c12SGreg Roach        return I18N::translate('Statistics');
398c2e8227SGreg Roach    }
408c2e8227SGreg Roach
418c2e8227SGreg Roach    /** {@inheritdoc} */
42c1010edaSGreg Roach    public function getDescription()
43c1010edaSGreg Roach    {
44*bbb76c12SGreg Roach        /* I18N: Description of “Statistics” module */
45*bbb76c12SGreg Roach        return I18N::translate('The size of the family tree, earliest and latest events, common names, etc.');
468c2e8227SGreg Roach    }
478c2e8227SGreg Roach
4876692c8bSGreg Roach    /**
4976692c8bSGreg Roach     * Generate the HTML content of this block.
5076692c8bSGreg Roach     *
51e490cd80SGreg Roach     * @param Tree     $tree
5276692c8bSGreg Roach     * @param int      $block_id
5376692c8bSGreg Roach     * @param bool     $template
54727f238cSGreg Roach     * @param string[] $cfg
5576692c8bSGreg Roach     *
5676692c8bSGreg Roach     * @return string
5776692c8bSGreg Roach     */
58c1010edaSGreg Roach    public function getBlock(Tree $tree, int $block_id, bool $template = true, array $cfg = []): string
59c1010edaSGreg Roach    {
60e490cd80SGreg Roach        global $ctype;
618c2e8227SGreg Roach
62e2a378d3SGreg Roach        $show_last_update     = $this->getBlockSetting($block_id, 'show_last_update', '1');
63e2a378d3SGreg Roach        $show_common_surnames = $this->getBlockSetting($block_id, 'show_common_surnames', '1');
6480536c2dSGreg Roach        $number_of_surnames   = (int) $this->getBlockSetting($block_id, 'number_of_surnames', self::DEFAULT_NUMBER_OF_SURNAMES);
65e2a378d3SGreg Roach        $stat_indi            = $this->getBlockSetting($block_id, 'stat_indi', '1');
66e2a378d3SGreg Roach        $stat_fam             = $this->getBlockSetting($block_id, 'stat_fam', '1');
67e2a378d3SGreg Roach        $stat_sour            = $this->getBlockSetting($block_id, 'stat_sour', '1');
68e2a378d3SGreg Roach        $stat_media           = $this->getBlockSetting($block_id, 'stat_media', '1');
69e2a378d3SGreg Roach        $stat_repo            = $this->getBlockSetting($block_id, 'stat_repo', '1');
70e2a378d3SGreg Roach        $stat_surname         = $this->getBlockSetting($block_id, 'stat_surname', '1');
71e2a378d3SGreg Roach        $stat_events          = $this->getBlockSetting($block_id, 'stat_events', '1');
72e2a378d3SGreg Roach        $stat_users           = $this->getBlockSetting($block_id, 'stat_users', '1');
73e2a378d3SGreg Roach        $stat_first_birth     = $this->getBlockSetting($block_id, 'stat_first_birth', '1');
74e2a378d3SGreg Roach        $stat_last_birth      = $this->getBlockSetting($block_id, 'stat_last_birth', '1');
75e2a378d3SGreg Roach        $stat_first_death     = $this->getBlockSetting($block_id, 'stat_first_death', '1');
76e2a378d3SGreg Roach        $stat_last_death      = $this->getBlockSetting($block_id, 'stat_last_death', '1');
77e2a378d3SGreg Roach        $stat_long_life       = $this->getBlockSetting($block_id, 'stat_long_life', '1');
78e2a378d3SGreg Roach        $stat_avg_life        = $this->getBlockSetting($block_id, 'stat_avg_life', '1');
79e2a378d3SGreg Roach        $stat_most_chil       = $this->getBlockSetting($block_id, 'stat_most_chil', '1');
80e2a378d3SGreg Roach        $stat_avg_chil        = $this->getBlockSetting($block_id, 'stat_avg_chil', '1');
818c2e8227SGreg Roach
82c385536dSGreg Roach        extract($cfg, EXTR_OVERWRITE);
838c2e8227SGreg Roach
848c2e8227SGreg Roach        if ($show_common_surnames) {
8580536c2dSGreg Roach            // Use the count of base surnames.
8680536c2dSGreg Roach            $top_surnames = Database::prepare(
8780536c2dSGreg Roach                "SELECT n_surn FROM `##name`" .
8880536c2dSGreg Roach                " WHERE n_file = :tree_id AND n_type != '_MARNM' AND n_surn NOT IN ('@N.N.', '')" .
8980536c2dSGreg Roach                " GROUP BY n_surn" .
9080536c2dSGreg Roach                " ORDER BY COUNT(n_surn) DESC" .
9180536c2dSGreg Roach                " LIMIT :limit"
9280536c2dSGreg Roach            )->execute([
9380536c2dSGreg Roach                'tree_id' => $tree->getTreeId(),
9480536c2dSGreg Roach                'limit'   => $number_of_surnames,
9580536c2dSGreg Roach            ])->fetchOneColumn();
96e0275e5bSGreg Roach
9713abd6f3SGreg Roach            $all_surnames = [];
9880536c2dSGreg Roach            foreach ($top_surnames as $top_surname) {
9980536c2dSGreg Roach                $variants = Database::prepare(
10080536c2dSGreg Roach                    "SELECT n_surname COLLATE utf8_bin, COUNT(*) FROM `##name` WHERE n_file = :tree_id AND n_surn COLLATE :collate = :surname GROUP BY 1"
10180536c2dSGreg Roach                )->execute([
10280536c2dSGreg Roach                    'collate' => I18N::collation(),
10380536c2dSGreg Roach                    'surname' => $top_surname,
10480536c2dSGreg Roach                    'tree_id' => $tree->getTreeId(),
10580536c2dSGreg Roach                ])->fetchAssoc();
10680536c2dSGreg Roach
10780536c2dSGreg Roach                $all_surnames[$top_surname] = $variants;
108f36626dbSGreg Roach            }
10980536c2dSGreg Roach
11080536c2dSGreg Roach            uksort($all_surnames, [I18N::class, 'strcasecmp']);
1111d3c0c1aSGreg Roach
112e490cd80SGreg Roach            $surnames = FunctionsPrintLists::surnameList($all_surnames, 2, false, 'individual-list', $tree);
1131d3c0c1aSGreg Roach        } else {
1141d3c0c1aSGreg Roach            $surnames = '';
1158c2e8227SGreg Roach        }
1161d3c0c1aSGreg Roach
117147e99aaSGreg Roach        $content = view('modules/gedcom_stats/statistics', [
1181d3c0c1aSGreg Roach            'show_last_update'     => $show_last_update,
1191d3c0c1aSGreg Roach            'show_common_surnames' => $show_common_surnames,
1201d3c0c1aSGreg Roach            'number_of_surnames'   => $number_of_surnames,
1211d3c0c1aSGreg Roach            'stat_indi'            => $stat_indi,
1221d3c0c1aSGreg Roach            'stat_fam'             => $stat_fam,
1231d3c0c1aSGreg Roach            'stat_sour'            => $stat_sour,
1241d3c0c1aSGreg Roach            'stat_media'           => $stat_media,
1251d3c0c1aSGreg Roach            'stat_repo'            => $stat_repo,
1261d3c0c1aSGreg Roach            'stat_surname'         => $stat_surname,
1271d3c0c1aSGreg Roach            'stat_events'          => $stat_events,
1281d3c0c1aSGreg Roach            'stat_users'           => $stat_users,
1291d3c0c1aSGreg Roach            'stat_first_birth'     => $stat_first_birth,
1301d3c0c1aSGreg Roach            'stat_last_birth'      => $stat_last_birth,
1311d3c0c1aSGreg Roach            'stat_first_death'     => $stat_first_death,
1321d3c0c1aSGreg Roach            'stat_last_death'      => $stat_last_death,
1331d3c0c1aSGreg Roach            'stat_long_life'       => $stat_long_life,
1341d3c0c1aSGreg Roach            'stat_avg_life'        => $stat_avg_life,
1351d3c0c1aSGreg Roach            'stat_most_chil'       => $stat_most_chil,
1361d3c0c1aSGreg Roach            'stat_avg_chil'        => $stat_avg_chil,
137e490cd80SGreg Roach            'stats'                => new Stats($tree),
1381d3c0c1aSGreg Roach            'surnames'             => $surnames,
1391d3c0c1aSGreg Roach        ]);
14028941e3cSGreg Roach
1418c2e8227SGreg Roach        if ($template) {
142e490cd80SGreg Roach            if ($ctype === 'gedcom' && Auth::isManager($tree)) {
143c1010edaSGreg Roach                $config_url = route('tree-page-block-edit', [
144c1010edaSGreg Roach                    'block_id' => $block_id,
145c1010edaSGreg Roach                    'ged'      => $tree->getName(),
146c1010edaSGreg Roach                ]);
147397e599aSGreg Roach            } elseif ($ctype === 'user' && Auth::check()) {
148c1010edaSGreg Roach                $config_url = route('user-page-block-edit', [
149c1010edaSGreg Roach                    'block_id' => $block_id,
150c1010edaSGreg Roach                    'ged'      => $tree->getName(),
151c1010edaSGreg Roach                ]);
1529c6524dcSGreg Roach            } else {
1539c6524dcSGreg Roach                $config_url = '';
1549c6524dcSGreg Roach            }
1559c6524dcSGreg Roach
156147e99aaSGreg Roach            return view('modules/block-template', [
1579c6524dcSGreg Roach                'block'      => str_replace('_', '-', $this->getName()),
1589c6524dcSGreg Roach                'id'         => $block_id,
1599c6524dcSGreg Roach                'config_url' => $config_url,
1609c6524dcSGreg Roach                'title'      => $this->getTitle(),
1619c6524dcSGreg Roach                'content'    => $content,
1629c6524dcSGreg Roach            ]);
1638c2e8227SGreg Roach        } else {
1648c2e8227SGreg Roach            return $content;
1658c2e8227SGreg Roach        }
1668c2e8227SGreg Roach    }
1678c2e8227SGreg Roach
1688c2e8227SGreg Roach    /** {@inheritdoc} */
169c1010edaSGreg Roach    public function loadAjax(): bool
170c1010edaSGreg Roach    {
1718c2e8227SGreg Roach        return true;
1728c2e8227SGreg Roach    }
1738c2e8227SGreg Roach
1748c2e8227SGreg Roach    /** {@inheritdoc} */
175c1010edaSGreg Roach    public function isUserBlock(): bool
176c1010edaSGreg Roach    {
1778c2e8227SGreg Roach        return true;
1788c2e8227SGreg Roach    }
1798c2e8227SGreg Roach
1808c2e8227SGreg Roach    /** {@inheritdoc} */
181c1010edaSGreg Roach    public function isGedcomBlock(): bool
182c1010edaSGreg Roach    {
1838c2e8227SGreg Roach        return true;
1848c2e8227SGreg Roach    }
1858c2e8227SGreg Roach
18676692c8bSGreg Roach    /**
18776692c8bSGreg Roach     * An HTML form to edit block settings
18876692c8bSGreg Roach     *
189e490cd80SGreg Roach     * @param Tree $tree
19076692c8bSGreg Roach     * @param int  $block_id
191a9430be8SGreg Roach     *
192a9430be8SGreg Roach     * @return void
19376692c8bSGreg Roach     */
194c1010edaSGreg Roach    public function configureBlock(Tree $tree, int $block_id)
195c1010edaSGreg Roach    {
196c385536dSGreg Roach        if ($_SERVER['REQUEST_METHOD'] === 'POST') {
197e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'show_last_update', Filter::postBool('show_last_update'));
198e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'show_common_surnames', Filter::postBool('show_common_surnames'));
199f36626dbSGreg Roach            $this->setBlockSetting($block_id, 'number_of_surnames', Filter::postInteger('number_of_surnames'));
200e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'stat_indi', Filter::postBool('stat_indi'));
201e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'stat_fam', Filter::postBool('stat_fam'));
202e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'stat_sour', Filter::postBool('stat_sour'));
203e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'stat_other', Filter::postBool('stat_other'));
204e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'stat_media', Filter::postBool('stat_media'));
205e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'stat_repo', Filter::postBool('stat_repo'));
206e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'stat_surname', Filter::postBool('stat_surname'));
207e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'stat_events', Filter::postBool('stat_events'));
208e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'stat_users', Filter::postBool('stat_users'));
209e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'stat_first_birth', Filter::postBool('stat_first_birth'));
210e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'stat_last_birth', Filter::postBool('stat_last_birth'));
211e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'stat_first_death', Filter::postBool('stat_first_death'));
212e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'stat_last_death', Filter::postBool('stat_last_death'));
213e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'stat_long_life', Filter::postBool('stat_long_life'));
214e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'stat_avg_life', Filter::postBool('stat_avg_life'));
215e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'stat_most_chil', Filter::postBool('stat_most_chil'));
216e2a378d3SGreg Roach            $this->setBlockSetting($block_id, 'stat_avg_chil', Filter::postBool('stat_avg_chil'));
217c385536dSGreg Roach
218c385536dSGreg Roach            return;
2198c2e8227SGreg Roach        }
2208c2e8227SGreg Roach
221e2a378d3SGreg Roach        $show_last_update     = $this->getBlockSetting($block_id, 'show_last_update', '1');
222e2a378d3SGreg Roach        $show_common_surnames = $this->getBlockSetting($block_id, 'show_common_surnames', '1');
223f36626dbSGreg Roach        $number_of_surnames   = $this->getBlockSetting($block_id, 'number_of_surnames', self::DEFAULT_NUMBER_OF_SURNAMES);
224e2a378d3SGreg Roach        $stat_indi            = $this->getBlockSetting($block_id, 'stat_indi', '1');
225e2a378d3SGreg Roach        $stat_fam             = $this->getBlockSetting($block_id, 'stat_fam', '1');
226e2a378d3SGreg Roach        $stat_sour            = $this->getBlockSetting($block_id, 'stat_sour', '1');
227e2a378d3SGreg Roach        $stat_media           = $this->getBlockSetting($block_id, 'stat_media', '1');
228e2a378d3SGreg Roach        $stat_repo            = $this->getBlockSetting($block_id, 'stat_repo', '1');
229e2a378d3SGreg Roach        $stat_surname         = $this->getBlockSetting($block_id, 'stat_surname', '1');
230e2a378d3SGreg Roach        $stat_events          = $this->getBlockSetting($block_id, 'stat_events', '1');
231e2a378d3SGreg Roach        $stat_users           = $this->getBlockSetting($block_id, 'stat_users', '1');
232e2a378d3SGreg Roach        $stat_first_birth     = $this->getBlockSetting($block_id, 'stat_first_birth', '1');
233e2a378d3SGreg Roach        $stat_last_birth      = $this->getBlockSetting($block_id, 'stat_last_birth', '1');
234e2a378d3SGreg Roach        $stat_first_death     = $this->getBlockSetting($block_id, 'stat_first_death', '1');
235e2a378d3SGreg Roach        $stat_last_death      = $this->getBlockSetting($block_id, 'stat_last_death', '1');
236e2a378d3SGreg Roach        $stat_long_life       = $this->getBlockSetting($block_id, 'stat_long_life', '1');
237e2a378d3SGreg Roach        $stat_avg_life        = $this->getBlockSetting($block_id, 'stat_avg_life', '1');
238e2a378d3SGreg Roach        $stat_most_chil       = $this->getBlockSetting($block_id, 'stat_most_chil', '1');
239e2a378d3SGreg Roach        $stat_avg_chil        = $this->getBlockSetting($block_id, 'stat_avg_chil', '1');
2408c2e8227SGreg Roach
241147e99aaSGreg Roach        echo view('modules/gedcom_stats/config', [
242c385536dSGreg Roach            'show_last_update'     => $show_last_update,
243c385536dSGreg Roach            'show_common_surnames' => $show_common_surnames,
244c385536dSGreg Roach            'number_of_surnames'   => $number_of_surnames,
245c385536dSGreg Roach            'stat_indi'            => $stat_indi,
246c385536dSGreg Roach            'stat_fam'             => $stat_fam,
247c385536dSGreg Roach            'stat_sour'            => $stat_sour,
248c385536dSGreg Roach            'stat_media'           => $stat_media,
249c385536dSGreg Roach            'stat_repo'            => $stat_repo,
250c385536dSGreg Roach            'stat_surname'         => $stat_surname,
251c385536dSGreg Roach            'stat_events'          => $stat_events,
252c385536dSGreg Roach            'stat_users'           => $stat_users,
253c385536dSGreg Roach            'stat_first_birth'     => $stat_first_birth,
254c385536dSGreg Roach            'stat_last_birth'      => $stat_last_birth,
255c385536dSGreg Roach            'stat_first_death'     => $stat_first_death,
256c385536dSGreg Roach            'stat_last_death'      => $stat_last_death,
257c385536dSGreg Roach            'stat_long_life'       => $stat_long_life,
258c385536dSGreg Roach            'stat_avg_life'        => $stat_avg_life,
259c385536dSGreg Roach            'stat_most_chil'       => $stat_most_chil,
260c385536dSGreg Roach            'stat_avg_chil'        => $stat_avg_chil,
261c385536dSGreg Roach        ]);
2628c2e8227SGreg Roach    }
2638c2e8227SGreg Roach}
264