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