xref: /webtrees/app/Http/RequestHandlers/SynchronizeTrees.php (revision fdfa4a42b488cb6df3ddfb1ec5ad61cd51f2cf51)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2022 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 <https://www.gnu.org/licenses/>.
16 */
17
18declare(strict_types=1);
19
20namespace Fisharebest\Webtrees\Http\RequestHandlers;
21
22use Fig\Http\Message\StatusCodeInterface;
23use Fisharebest\Webtrees\FlashMessages;
24use Fisharebest\Webtrees\I18N;
25use Fisharebest\Webtrees\Registry;
26use Fisharebest\Webtrees\Services\AdminService;
27use Fisharebest\Webtrees\Services\TimeoutService;
28use Fisharebest\Webtrees\Services\TreeService;
29use League\Flysystem\FilesystemException;
30use League\Flysystem\UnableToReadFile;
31use League\Flysystem\UnableToRetrieveMetadata;
32use Psr\Http\Message\ResponseInterface;
33use Psr\Http\Message\ServerRequestInterface;
34use Psr\Http\Message\StreamFactoryInterface;
35use Psr\Http\Server\RequestHandlerInterface;
36
37use function app;
38use function redirect;
39use function route;
40
41/**
42 * Synchronize GEDCOM files with trees.
43 */
44class SynchronizeTrees implements RequestHandlerInterface
45{
46    private AdminService $admin_service;
47
48    private StreamFactoryInterface $stream_factory;
49
50    private TimeoutService $timeout_service;
51
52    private TreeService $tree_service;
53
54    /**
55     * AdminTreesController constructor.
56     *
57     * @param AdminService        $admin_service
58     * @param StreamFactoryInterface $stream_factory
59     * @param TimeoutService      $timeout_service
60     * @param TreeService         $tree_service
61     */
62    public function __construct(
63        AdminService $admin_service,
64        StreamFactoryInterface $stream_factory,
65        TimeoutService $timeout_service,
66        TreeService $tree_service
67    ) {
68        $this->admin_service   = $admin_service;
69        $this->stream_factory  = $stream_factory;
70        $this->timeout_service = $timeout_service;
71        $this->tree_service    = $tree_service;
72    }
73
74    /**
75     * @param ServerRequestInterface $request
76     *
77     * @return ResponseInterface
78     */
79    public function handle(ServerRequestInterface $request): ResponseInterface
80    {
81        $data_filesystem = Registry::filesystem()->data();
82
83        $gedcom_files = $this->admin_service->gedcomFiles($data_filesystem);
84
85        foreach ($gedcom_files as $gedcom_file) {
86            // Only import files that have changed
87            try {
88                $filemtime = (string) $data_filesystem->lastModified($gedcom_file);
89
90                $tree = $this->tree_service->all()->get($gedcom_file) ?? $this->tree_service->create($gedcom_file, $gedcom_file);
91
92                if ($tree->getPreference('filemtime') !== $filemtime) {
93                    $resource = $data_filesystem->readStream($gedcom_file);
94                    $stream   = $this->stream_factory->createStreamFromResource($resource);
95                    $this->tree_service->importGedcomFile($tree, $stream, $gedcom_file, '');
96                    $stream->close();
97                    $tree->setPreference('filemtime', $filemtime);
98
99                    FlashMessages::addMessage(I18N::translate('The GEDCOM file “%s” has been imported.', e($gedcom_file)), 'success');
100
101                    if ($this->timeout_service->isTimeNearlyUp(10.0)) {
102                        return redirect(route(__CLASS__), StatusCodeInterface::STATUS_TEMPORARY_REDIRECT);
103                    }
104                }
105            } catch (FilesystemException | UnableToRetrieveMetadata | UnableToReadFile $ex) {
106                // Can't read the file - skip it.
107            }
108        }
109
110        foreach ($this->tree_service->all() as $tree) {
111            if (!$gedcom_files->containsStrict($tree->name())) {
112                $this->tree_service->delete($tree);
113                FlashMessages::addMessage(I18N::translate('The family tree “%s” has been deleted.', e($tree->title())), 'success');
114
115                if ($this->timeout_service->isTimeNearlyUp(10.0)) {
116                    return redirect(route(__CLASS__), StatusCodeInterface::STATUS_TEMPORARY_REDIRECT);
117                }
118            }
119        }
120
121        return redirect(route(ManageTrees::class, ['tree' => $this->tree_service->all()->first()->name()]));
122    }
123}
124