]> jfr.im git - uguu.git/blame - src/Classes/Connector.php
Update Makefile
[uguu.git] / src / Classes / Connector.php
CommitLineData
e480c0e5 1<?php
e480c0e5 2 /**
96bb2d33 3 * Uguu
8f7f8840 4 *
96bb2d33
GJ
5 * @copyright Copyright (c) 2022 Go Johansson (nokonoko) <neku@pomf.se>
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
8f7f8840 11 *
96bb2d33
GJ
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
e480c0e5 19 */
96bb2d33
GJ
20
21 namespace Pomf\Uguu;
22
23 use Exception;
24 use PDO;
25
26 class Connector extends Database
e480c0e5 27 {
96bb2d33
GJ
28 public PDO $DB;
29 public array $CONFIG;
30
31 /**
32 * Reads the config.json file and populates the CONFIG property with the settings
33 *
34 * @throws \Exception
35 */
36 public function __construct()
37 {
38 if (!file_exists(__DIR__ . '../config.json')) {
39 throw new Exception('Cant read settings file.', 500);
40 }
41 try {
42 $this->CONFIG = json_decode(
43 file_get_contents(__DIR__ . '../config.json'),
44 true,
45 );
46 $this->assemble();
47 }
48 catch (Exception) {
49 throw new Exception('Cant populate settings.', 500);
50 }
51 }
52
53 /**
54 * > Tries to connect to the database
55 *
56 * @throws \Exception
57 */
58 public function assemble()
59 {
60 try {
61 $this->DB = new PDO(
62 $this->CONFIG['DB_MODE'] . ':' . $this->CONFIG['DB_PATH'],
63 $this->CONFIG['DB_USER'],
64 $this->CONFIG['DB_PASS']
65 );
66 }
67 catch (Exception) {
68 throw new Exception('Cant connect to DB.', 500);
69 }
e480c0e5
GJ
70 }
71 }