Passed
Push — master ( 618eec...a04bb9 )
by Greg
05:12
created

ExportGedcomServer   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 43
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 21
dl 0
loc 43
rs 10
c 1
b 0
f 0
wmc 3

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 34 3
1
<?php
2
3
/**
4
 * webtrees: online genealogy
5
 * Copyright (C) 2019 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
18
declare(strict_types=1);
19
20
namespace Fisharebest\Webtrees\Http\RequestHandlers;
21
22
use Fisharebest\Webtrees\FlashMessages;
23
use Fisharebest\Webtrees\Html;
24
use Fisharebest\Webtrees\Http\ViewResponseTrait;
25
use Fisharebest\Webtrees\I18N;
26
use Fisharebest\Webtrees\Tree;
27
use League\Flysystem\FilesystemInterface;
28
use Psr\Http\Message\ResponseInterface;
29
use Psr\Http\Message\ServerRequestInterface;
30
use Psr\Http\Server\RequestHandlerInterface;
31
use Throwable;
32
33
use function assert;
34
use function fclose;
35
use function fopen;
36
use function pathinfo;
37
use function redirect;
38
use function rewind;
39
use function route;
40
use function strtolower;
41
42
use const PATHINFO_EXTENSION;
43
44
/**
45
 * Save a GEDCOM file on the server.
46
 */
47
class ExportGedcomServer implements RequestHandlerInterface
48
{
49
    use ViewResponseTrait;
50
51
    /**
52
     * @param ServerRequestInterface $request
53
     *
54
     * @return ResponseInterface
55
     */
56
    public function handle(ServerRequestInterface $request): ResponseInterface
57
    {
58
        $tree = $request->getAttribute('tree');
59
        assert($tree instanceof Tree);
60
61
        $data_filesystem = $request->getAttribute('filesystem.data');
62
        assert($data_filesystem instanceof FilesystemInterface);
63
64
        $filename = $tree->name();
65
66
        // Force a ".ged" suffix
67
        if (strtolower(pathinfo($filename, PATHINFO_EXTENSION)) !== 'ged') {
68
            $filename .= '.ged';
69
        }
70
71
        try {
72
            $stream = fopen('php://temp', 'wb+');
73
            $tree->exportGedcom($stream);
0 ignored issues
show
Bug introduced by
It seems like $stream can also be of type false; however, parameter $stream of Fisharebest\Webtrees\Tree::exportGedcom() does only seem to accept resource, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

73
            $tree->exportGedcom(/** @scrutinizer ignore-type */ $stream);
Loading history...
74
            rewind($stream);
0 ignored issues
show
Bug introduced by
It seems like $stream can also be of type false; however, parameter $handle of rewind() does only seem to accept resource, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

74
            rewind(/** @scrutinizer ignore-type */ $stream);
Loading history...
75
            $data_filesystem->putStream($filename, $stream);
0 ignored issues
show
Bug introduced by
It seems like $stream can also be of type false; however, parameter $resource of League\Flysystem\FilesystemInterface::putStream() does only seem to accept resource, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

75
            $data_filesystem->putStream($filename, /** @scrutinizer ignore-type */ $stream);
Loading history...
76
            fclose($stream);
0 ignored issues
show
Bug introduced by
It seems like $stream can also be of type false; however, parameter $handle of fclose() does only seem to accept resource, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

76
            fclose(/** @scrutinizer ignore-type */ $stream);
Loading history...
77
78
            /* I18N: %s is a filename */
79
            FlashMessages::addMessage(I18N::translate('The family tree has been exported to %s.', Html::filename($filename)), 'success');
80
        } catch (Throwable $ex) {
81
            FlashMessages::addMessage(
82
                I18N::translate('The file %s could not be created.', Html::filename($filename)) . '<hr><samp dir="ltr">' . $ex->getMessage() . '</samp>',
83
                'danger'
84
            );
85
        }
86
87
        $url = route('manage-trees', ['tree' => $tree->name()]);
88
89
        return redirect($url);
90
    }
91
}
92