Passed
Push — main ( b8537a...489945 )
by Greg
07:15
created

UseDatabase::process()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 17
Code Lines 13

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 13
nc 1
nop 2
dl 0
loc 17
rs 9.8333
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * webtrees: online genealogy
5
 * Copyright (C) 2023 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
18
declare(strict_types=1);
19
20
namespace Fisharebest\Webtrees\Http\Middleware;
21
22
use Fisharebest\Webtrees\DB;
23
use Fisharebest\Webtrees\Validator;
24
use Fisharebest\Webtrees\Webtrees;
25
use PDO;
26
use PDOException;
27
use Psr\Http\Message\ResponseInterface;
28
use Psr\Http\Message\ServerRequestInterface;
29
use Psr\Http\Server\MiddlewareInterface;
30
use Psr\Http\Server\RequestHandlerInterface;
31
use RuntimeException;
32
33
/**
34
 * Middleware to connect to the database.
35
 */
36
class UseDatabase implements MiddlewareInterface
37
{
38
    /**
39
     * @param ServerRequestInterface  $request
40
     * @param RequestHandlerInterface $handler
41
     *
42
     * @return ResponseInterface
43
     */
44
    public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
45
    {
46
        DB::connect(
47
            driver: Validator::attributes($request)->string('dbtype', DB::MYSQL),
48
            host: Validator::attributes($request)->string('dbhost'),
49
            port: Validator::attributes($request)->string('dbport'),
50
            database: Validator::attributes($request)->string('dbname'),
51
            username: Validator::attributes($request)->string('dbuser'),
52
            password: Validator::attributes($request)->string('dbpass'),
53
            prefix: Validator::attributes($request)->string('tblpfx'),
54
            key: Validator::attributes($request)->string('dbkey', ''),
55
            certificate: Validator::attributes($request)->string('dbcert', ''),
56
            ca: Validator::attributes($request)->string('dbca', ''),
57
            verify_certificate: Validator::attributes($request)->boolean('dbverify', false),
58
        );
59
60
        return $handler->handle($request);
61
    }
62
}
63