xref: /webtrees/app/Services/AdminService.php (revision 89f7189b61a494347591c99bdb92afb7d8b66e1b)
16fd01894SGreg Roach<?php
26fd01894SGreg Roach
36fd01894SGreg Roach/**
46fd01894SGreg Roach * webtrees: online genealogy
5*89f7189bSGreg Roach * Copyright (C) 2021 webtrees development team
66fd01894SGreg Roach * This program is free software: you can redistribute it and/or modify
76fd01894SGreg Roach * it under the terms of the GNU General Public License as published by
86fd01894SGreg Roach * the Free Software Foundation, either version 3 of the License, or
96fd01894SGreg Roach * (at your option) any later version.
106fd01894SGreg Roach * This program is distributed in the hope that it will be useful,
116fd01894SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
126fd01894SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
136fd01894SGreg Roach * GNU General Public License for more details.
146fd01894SGreg Roach * You should have received a copy of the GNU General Public License
15*89f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
166fd01894SGreg Roach */
176fd01894SGreg Roach
186fd01894SGreg Roachdeclare(strict_types=1);
196fd01894SGreg Roach
206fd01894SGreg Roachnamespace Fisharebest\Webtrees\Services;
216fd01894SGreg Roach
226b9cb339SGreg Roachuse Fisharebest\Webtrees\Registry;
236fd01894SGreg Roachuse Fisharebest\Webtrees\Family;
246fd01894SGreg Roachuse Fisharebest\Webtrees\Gedcom;
256fd01894SGreg Roachuse Fisharebest\Webtrees\GedcomRecord;
266fd01894SGreg Roachuse Fisharebest\Webtrees\Header;
276fd01894SGreg Roachuse Fisharebest\Webtrees\I18N;
286fd01894SGreg Roachuse Fisharebest\Webtrees\Individual;
296fd01894SGreg Roachuse Fisharebest\Webtrees\Media;
306fd01894SGreg Roachuse Fisharebest\Webtrees\Site;
316fd01894SGreg Roachuse Fisharebest\Webtrees\Source;
326fd01894SGreg Roachuse Fisharebest\Webtrees\Tree;
336fd01894SGreg Roachuse Illuminate\Database\Capsule\Manager as DB;
346fd01894SGreg Roachuse Illuminate\Database\Query\Expression;
356fd01894SGreg Roachuse Illuminate\Database\Query\JoinClause;
366fd01894SGreg Roachuse Illuminate\Support\Collection;
376fd01894SGreg Roachuse League\Flysystem\FilesystemInterface;
386fd01894SGreg Roach
396fd01894SGreg Roachuse function array_map;
406fd01894SGreg Roachuse function explode;
416fd01894SGreg Roachuse function fclose;
426fd01894SGreg Roachuse function fread;
436fd01894SGreg Roachuse function preg_match;
446fd01894SGreg Roach
456fd01894SGreg Roach/**
466fd01894SGreg Roach * Utilities for the control panel.
476fd01894SGreg Roach */
486fd01894SGreg Roachclass AdminService
496fd01894SGreg Roach{
506fd01894SGreg Roach    // Show a reduced page when there are more than a certain number of trees
516fd01894SGreg Roach    private const MULTIPLE_TREE_THRESHOLD = '500';
526fd01894SGreg Roach
536fd01894SGreg Roach    /**
546fd01894SGreg Roach     * Count of XREFs used by two trees at the same time.
556fd01894SGreg Roach     *
566fd01894SGreg Roach     * @param Tree $tree1
576fd01894SGreg Roach     * @param Tree $tree2
586fd01894SGreg Roach     *
596fd01894SGreg Roach     * @return int
606fd01894SGreg Roach     */
616fd01894SGreg Roach    public function countCommonXrefs(Tree $tree1, Tree $tree2): int
626fd01894SGreg Roach    {
636fd01894SGreg Roach        $subquery1 = DB::table('individuals')
646fd01894SGreg Roach            ->where('i_file', '=', $tree1->id())
656fd01894SGreg Roach            ->select(['i_id AS xref'])
666fd01894SGreg Roach            ->union(DB::table('families')
676fd01894SGreg Roach                ->where('f_file', '=', $tree1->id())
686fd01894SGreg Roach                ->select(['f_id AS xref']))
696fd01894SGreg Roach            ->union(DB::table('sources')
706fd01894SGreg Roach                ->where('s_file', '=', $tree1->id())
716fd01894SGreg Roach                ->select(['s_id AS xref']))
726fd01894SGreg Roach            ->union(DB::table('media')
736fd01894SGreg Roach                ->where('m_file', '=', $tree1->id())
746fd01894SGreg Roach                ->select(['m_id AS xref']))
756fd01894SGreg Roach            ->union(DB::table('other')
766fd01894SGreg Roach                ->where('o_file', '=', $tree1->id())
776fd01894SGreg Roach                ->whereNotIn('o_type', [Header::RECORD_TYPE, 'TRLR'])
786fd01894SGreg Roach                ->select(['o_id AS xref']));
796fd01894SGreg Roach
806fd01894SGreg Roach        $subquery2 = DB::table('change')
816fd01894SGreg Roach            ->where('gedcom_id', '=', $tree2->id())
826fd01894SGreg Roach            ->select(['xref AS other_xref'])
836fd01894SGreg Roach            ->union(DB::table('individuals')
846fd01894SGreg Roach                ->where('i_file', '=', $tree2->id())
856fd01894SGreg Roach                ->select(['i_id AS xref']))
866fd01894SGreg Roach            ->union(DB::table('families')
876fd01894SGreg Roach                ->where('f_file', '=', $tree2->id())
886fd01894SGreg Roach                ->select(['f_id AS xref']))
896fd01894SGreg Roach            ->union(DB::table('sources')
906fd01894SGreg Roach                ->where('s_file', '=', $tree2->id())
916fd01894SGreg Roach                ->select(['s_id AS xref']))
926fd01894SGreg Roach            ->union(DB::table('media')
936fd01894SGreg Roach                ->where('m_file', '=', $tree2->id())
946fd01894SGreg Roach                ->select(['m_id AS xref']))
956fd01894SGreg Roach            ->union(DB::table('other')
966fd01894SGreg Roach                ->where('o_file', '=', $tree2->id())
976fd01894SGreg Roach                ->whereNotIn('o_type', [Header::RECORD_TYPE, 'TRLR'])
986fd01894SGreg Roach                ->select(['o_id AS xref']));
996fd01894SGreg Roach
1006fd01894SGreg Roach        return DB::table(new Expression('(' . $subquery1->toSql() . ') AS sub1'))
1016fd01894SGreg Roach            ->mergeBindings($subquery1)
1026fd01894SGreg Roach            ->joinSub($subquery2, 'sub2', 'other_xref', '=', 'xref')
1036fd01894SGreg Roach            ->count();
1046fd01894SGreg Roach    }
1056fd01894SGreg Roach
1066fd01894SGreg Roach    /**
1076fd01894SGreg Roach     * @param Tree $tree
1086fd01894SGreg Roach     *
1096fd01894SGreg Roach     * @return array<string,array<GedcomRecord>>
1106fd01894SGreg Roach     */
1116fd01894SGreg Roach    public function duplicateRecords(Tree $tree): array
1126fd01894SGreg Roach    {
1136fd01894SGreg Roach        // We can't do any reasonable checks using MySQL.
1146fd01894SGreg Roach        // Will need to wait for a "repositories" table.
1156fd01894SGreg Roach        $repositories = [];
1166fd01894SGreg Roach
1176fd01894SGreg Roach        $sources = DB::table('sources')
1186fd01894SGreg Roach            ->where('s_file', '=', $tree->id())
1196fd01894SGreg Roach            ->groupBy(['s_name'])
1206fd01894SGreg Roach            ->having(new Expression('COUNT(s_id)'), '>', '1')
1216fd01894SGreg Roach            ->select([new Expression('GROUP_CONCAT(s_id) AS xrefs')])
1226fd01894SGreg Roach            ->pluck('xrefs')
1236fd01894SGreg Roach            ->map(static function (string $xrefs) use ($tree): array {
1246fd01894SGreg Roach                return array_map(static function (string $xref) use ($tree): Source {
1256b9cb339SGreg Roach                    return Registry::sourceFactory()->make($xref, $tree);
1266fd01894SGreg Roach                }, explode(',', $xrefs));
1276fd01894SGreg Roach            })
1286fd01894SGreg Roach            ->all();
1296fd01894SGreg Roach
1306fd01894SGreg Roach        $individuals = DB::table('dates')
1316fd01894SGreg Roach            ->join('name', static function (JoinClause $join): void {
1326fd01894SGreg Roach                $join
1336fd01894SGreg Roach                    ->on('d_file', '=', 'n_file')
1346fd01894SGreg Roach                    ->on('d_gid', '=', 'n_id');
1356fd01894SGreg Roach            })
1366fd01894SGreg Roach            ->where('d_file', '=', $tree->id())
1376fd01894SGreg Roach            ->whereIn('d_fact', ['BIRT', 'CHR', 'BAPM', 'DEAT', 'BURI'])
1386fd01894SGreg Roach            ->groupBy(['d_year', 'd_month', 'd_day', 'd_type', 'd_fact', 'n_type', 'n_full'])
1396fd01894SGreg Roach            ->having(new Expression('COUNT(DISTINCT d_gid)'), '>', '1')
1406fd01894SGreg Roach            ->select([new Expression('GROUP_CONCAT(DISTINCT d_gid ORDER BY d_gid) AS xrefs')])
1416fd01894SGreg Roach            ->distinct()
1426fd01894SGreg Roach            ->pluck('xrefs')
1436fd01894SGreg Roach            ->map(static function (string $xrefs) use ($tree): array {
1446fd01894SGreg Roach                return array_map(static function (string $xref) use ($tree): Individual {
1456b9cb339SGreg Roach                    return Registry::individualFactory()->make($xref, $tree);
1466fd01894SGreg Roach                }, explode(',', $xrefs));
1476fd01894SGreg Roach            })
1486fd01894SGreg Roach            ->all();
1496fd01894SGreg Roach
1506fd01894SGreg Roach        $families = DB::table('families')
1516fd01894SGreg Roach            ->where('f_file', '=', $tree->id())
1526fd01894SGreg Roach            ->groupBy([new Expression('LEAST(f_husb, f_wife)')])
1536fd01894SGreg Roach            ->groupBy([new Expression('GREATEST(f_husb, f_wife)')])
1546fd01894SGreg Roach            ->having(new Expression('COUNT(f_id)'), '>', '1')
1556fd01894SGreg Roach            ->select([new Expression('GROUP_CONCAT(f_id) AS xrefs')])
1566fd01894SGreg Roach            ->pluck('xrefs')
1576fd01894SGreg Roach            ->map(static function (string $xrefs) use ($tree): array {
1586fd01894SGreg Roach                return array_map(static function (string $xref) use ($tree): Family {
1596b9cb339SGreg Roach                    return Registry::familyFactory()->make($xref, $tree);
1606fd01894SGreg Roach                }, explode(',', $xrefs));
1616fd01894SGreg Roach            })
1626fd01894SGreg Roach            ->all();
1636fd01894SGreg Roach
1646fd01894SGreg Roach        $media = DB::table('media_file')
1656fd01894SGreg Roach            ->where('m_file', '=', $tree->id())
1666fd01894SGreg Roach            ->where('descriptive_title', '<>', '')
1676fd01894SGreg Roach            ->groupBy(['descriptive_title'])
1686fd01894SGreg Roach            ->having(new Expression('COUNT(m_id)'), '>', '1')
1696fd01894SGreg Roach            ->select([new Expression('GROUP_CONCAT(m_id) AS xrefs')])
1706fd01894SGreg Roach            ->pluck('xrefs')
1716fd01894SGreg Roach            ->map(static function (string $xrefs) use ($tree): array {
1726fd01894SGreg Roach                return array_map(static function (string $xref) use ($tree): Media {
1736b9cb339SGreg Roach                    return Registry::mediaFactory()->make($xref, $tree);
1746fd01894SGreg Roach                }, explode(',', $xrefs));
1756fd01894SGreg Roach            })
1766fd01894SGreg Roach            ->all();
1776fd01894SGreg Roach
1786fd01894SGreg Roach        return [
1796fd01894SGreg Roach            I18N::translate('Repositories')  => $repositories,
1806fd01894SGreg Roach            I18N::translate('Sources')       => $sources,
1816fd01894SGreg Roach            I18N::translate('Individuals')   => $individuals,
1826fd01894SGreg Roach            I18N::translate('Families')      => $families,
1836fd01894SGreg Roach            I18N::translate('Media objects') => $media,
1846fd01894SGreg Roach        ];
1856fd01894SGreg Roach    }
1866fd01894SGreg Roach
1876fd01894SGreg Roach    /**
1886fd01894SGreg Roach     * Every XREF used by this tree and also used by some other tree
1896fd01894SGreg Roach     *
1906fd01894SGreg Roach     * @param Tree $tree
1916fd01894SGreg Roach     *
1926fd01894SGreg Roach     * @return string[]
1936fd01894SGreg Roach     */
1946fd01894SGreg Roach    public function duplicateXrefs(Tree $tree): array
1956fd01894SGreg Roach    {
1966fd01894SGreg Roach        $subquery1 = DB::table('individuals')
1976fd01894SGreg Roach            ->where('i_file', '=', $tree->id())
1986fd01894SGreg Roach            ->select(['i_id AS xref', new Expression("'INDI' AS type")])
1996fd01894SGreg Roach            ->union(DB::table('families')
2006fd01894SGreg Roach                ->where('f_file', '=', $tree->id())
2016fd01894SGreg Roach                ->select(['f_id AS xref', new Expression("'FAM' AS type")]))
2026fd01894SGreg Roach            ->union(DB::table('sources')
2036fd01894SGreg Roach                ->where('s_file', '=', $tree->id())
2046fd01894SGreg Roach                ->select(['s_id AS xref', new Expression("'SOUR' AS type")]))
2056fd01894SGreg Roach            ->union(DB::table('media')
2066fd01894SGreg Roach                ->where('m_file', '=', $tree->id())
2076fd01894SGreg Roach                ->select(['m_id AS xref', new Expression("'OBJE' AS type")]))
2086fd01894SGreg Roach            ->union(DB::table('other')
2096fd01894SGreg Roach                ->where('o_file', '=', $tree->id())
2106fd01894SGreg Roach                ->whereNotIn('o_type', [Header::RECORD_TYPE, 'TRLR'])
2116fd01894SGreg Roach                ->select(['o_id AS xref', 'o_type AS type']));
2126fd01894SGreg Roach
2136fd01894SGreg Roach        $subquery2 = DB::table('change')
2146fd01894SGreg Roach            ->where('gedcom_id', '<>', $tree->id())
2156fd01894SGreg Roach            ->select(['xref AS other_xref'])
2166fd01894SGreg Roach            ->union(DB::table('individuals')
2176fd01894SGreg Roach                ->where('i_file', '<>', $tree->id())
2186fd01894SGreg Roach                ->select(['i_id AS xref']))
2196fd01894SGreg Roach            ->union(DB::table('families')
2206fd01894SGreg Roach                ->where('f_file', '<>', $tree->id())
2216fd01894SGreg Roach                ->select(['f_id AS xref']))
2226fd01894SGreg Roach            ->union(DB::table('sources')
2236fd01894SGreg Roach                ->where('s_file', '<>', $tree->id())
2246fd01894SGreg Roach                ->select(['s_id AS xref']))
2256fd01894SGreg Roach            ->union(DB::table('media')
2266fd01894SGreg Roach                ->where('m_file', '<>', $tree->id())
2276fd01894SGreg Roach                ->select(['m_id AS xref']))
2286fd01894SGreg Roach            ->union(DB::table('other')
2296fd01894SGreg Roach                ->where('o_file', '<>', $tree->id())
2306fd01894SGreg Roach                ->whereNotIn('o_type', [Header::RECORD_TYPE, 'TRLR'])
2316fd01894SGreg Roach                ->select(['o_id AS xref']));
2326fd01894SGreg Roach
2336fd01894SGreg Roach        return DB::table(new Expression('(' . $subquery1->toSql() . ') AS sub1'))
2346fd01894SGreg Roach            ->mergeBindings($subquery1)
2356fd01894SGreg Roach            ->joinSub($subquery2, 'sub2', 'other_xref', '=', 'xref')
2366fd01894SGreg Roach            ->pluck('type', 'xref')
2376fd01894SGreg Roach            ->all();
2386fd01894SGreg Roach    }
2396fd01894SGreg Roach
2406fd01894SGreg Roach    /**
2416fd01894SGreg Roach     * A list of GEDCOM files in the data folder.
2426fd01894SGreg Roach     *
2436fd01894SGreg Roach     * @param FilesystemInterface $filesystem
2446fd01894SGreg Roach     *
2456fd01894SGreg Roach     * @return Collection<string>
2466fd01894SGreg Roach     */
2476fd01894SGreg Roach    public function gedcomFiles(FilesystemInterface $filesystem): Collection
2486fd01894SGreg Roach    {
2496fd01894SGreg Roach        return Collection::make($filesystem->listContents())
2506fd01894SGreg Roach            ->filter(static function (array $path) use ($filesystem): bool {
2516fd01894SGreg Roach                if ($path['type'] !== 'file') {
2526fd01894SGreg Roach                    return false;
2536fd01894SGreg Roach                }
2546fd01894SGreg Roach
2556fd01894SGreg Roach                $stream = $filesystem->readStream($path['path']);
2566fd01894SGreg Roach
2576fd01894SGreg Roach                $header = fread($stream, 10);
2586fd01894SGreg Roach                fclose($stream);
2596fd01894SGreg Roach
2606fd01894SGreg Roach                return preg_match('/^(' . Gedcom::UTF8_BOM . ')?0 HEAD/', $header) > 0;
2616fd01894SGreg Roach            })
2626fd01894SGreg Roach            ->map(static function (array $path): string {
2636fd01894SGreg Roach                return $path['path'];
2646fd01894SGreg Roach            })
2656fd01894SGreg Roach            ->sort();
2666fd01894SGreg Roach    }
2676fd01894SGreg Roach
2686fd01894SGreg Roach    /**
2696fd01894SGreg Roach     * Change the behaviour a little, when there are a lot of trees.
2706fd01894SGreg Roach     *
2716fd01894SGreg Roach     * @return int
2726fd01894SGreg Roach     */
2736fd01894SGreg Roach    public function multipleTreeThreshold(): int
2746fd01894SGreg Roach    {
2756fd01894SGreg Roach        return (int) Site::getPreference('MULTIPLE_TREE_THRESHOLD', self::MULTIPLE_TREE_THRESHOLD);
2766fd01894SGreg Roach    }
2776fd01894SGreg Roach}
278