Passed
Push — master ( da7f6d...6d5769 )
by Greg
05:57
created

ExportGedcomServer::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
rs 10
c 1
b 0
f 0
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
    /** @var FilesystemInterface */
52
    private $filesystem;
53
54
    /**
55
     * ExportGedcomServer constructor.
56
     *
57
     * @param FilesystemInterface $filesystem
58
     */
59
    public function __construct(FilesystemInterface $filesystem)
60
    {
61
        $this->filesystem = $filesystem;
62
    }
63
64
    /**
65
     * @param ServerRequestInterface $request
66
     *
67
     * @return ResponseInterface
68
     */
69
    public function handle(ServerRequestInterface $request): ResponseInterface
70
    {
71
        $tree = $request->getAttribute('tree');
72
        assert($tree instanceof Tree);
73
74
        $filename = $tree->name();
75
76
        // Force a ".ged" suffix
77
        if (strtolower(pathinfo($filename, PATHINFO_EXTENSION)) !== 'ged') {
78
            $filename .= '.ged';
79
        }
80
81
        try {
82
            $stream = fopen('php://temp', 'wb+');
83
            $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

83
            $tree->exportGedcom(/** @scrutinizer ignore-type */ $stream);
Loading history...
84
            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

84
            rewind(/** @scrutinizer ignore-type */ $stream);
Loading history...
85
            $this->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

85
            $this->filesystem->putStream($filename, /** @scrutinizer ignore-type */ $stream);
Loading history...
86
            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

86
            fclose(/** @scrutinizer ignore-type */ $stream);
Loading history...
87
88
            /* I18N: %s is a filename */
89
            FlashMessages::addMessage(I18N::translate('The family tree has been exported to %s.', Html::filename($filename)), 'success');
90
        } catch (Throwable $ex) {
91
            FlashMessages::addMessage(
92
                I18N::translate('The file %s could not be created.', Html::filename($filename)) . '<hr><samp dir="ltr">' . $ex->getMessage() . '</samp>',
93
                'danger'
94
            );
95
        }
96
97
        $url = route('manage-trees', ['tree' => $tree->name()]);
98
99
        return redirect($url);
100
    }
101
}
102