summaryrefslogtreecommitdiff
path: root/src/web/helpers/database.php
blob: 25cb5ba41e041e33d6969968e35f86202f88ae42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
<?php /* Copyright (c) 2024 Freya Murphy */

class DatabaseQuery {

	private $conn;
	private $query;

	private $where;
	private $set;

	private $param;

	function __construct($conn) {
		$this->conn = $conn;
		$this->query = '';

		$this->set = FALSE;
		$this->where = FALSE;
		$this->param = array();
	}

	///
	/// ARBITRARY QUERY
	///

	public function query($query) {
		$this->query .= $query;
		return $this;
	}

	///
	/// SELECT
	///

	public function select($select) {
		$this->query .= "SELECT $select\n";
		return $this;
	}

	public function from($from) {
		$this->query .= "FROM $from\n";
		return $this;
	}

	///
	/// INSERT
	///

	public function insert_into($insert, ...$columns) {
		$this->query .= "INSERT INTO $insert\n (";
		foreach ($columns as $idx => $column) {
			if ($idx !== 0) {
				$this->query .= ",";
			}
			$this->query .= $column;
		}
		$this->query .= ")\n";
		return $this;
	}

	public function values(...$values) {
		$this->query .= "VALUES (";
		foreach ($values as $idx => $value) {
			if ($idx !== 0) {
				$this->query .= ",";
			}
			$this->query .= "?";
			array_push($this->param, $value);
		}
		$this->query .= ")\n";
		return $this;
	}

	///
	/// WHERE
	///

	public function where($cond) {
		if (!$this->where) {
			$this->where = TRUE;
			$this->query .= "WHERE ";
		} else {
			$this->query .= "AND ";
		}
		$this->query .= "$cond ";
		return $this;
	}

	public function where_in($column, $array) {
		if (!$this->where) {
			$this->where = TRUE;
			$this->query .= "WHERE ";
		} else {
			$this->query .= "AND ";
		}
		if (empty($array)) {
			$this->query .= "FALSE\n";
			return $this;
		}
		$in = $this->in($array);
		$this->query .= "$column $in\n";
		return $this;
	}

	private function in($array) {
		$in = 'IN (';
		foreach ($array as $idx => $item) {
			if ($idx != 0) {
				$in .= ",";
			}
			$in .= "?";
			array_push($this->param, $item);
		}
		$in .= ")";
		return $in;
	}

	///
	/// OPERATORS
	///

	public function like($item) {
		$this->query .= "LIKE ?\n";
		array_push($this->param, $item);
		return $this;
	}

	public function eq($item) {
		$this->query .= "= ?\n";
		array_push($this->param, $item);
		return $this;
	}

	public function ne($item) {
		$this->query .= "<> ?\n";
		array_push($this->param, $item);
		return $this;
	}

	public function lt($item) {
		$this->query .= "< ?\n";
		array_push($this->param, $item);
		return $this;
	}

	public function le($item) {
		$this->query .= "<= ?\n";
		array_push($this->param, $item);
		return $this;
	}

	///
	/// JOINS
	///

	public function join($table, $on, $type = 'LEFT') {
		$this->query .= "$type JOIN $table ON $on\n";
		return $this;
	}

	///
	/// LIMIT, OFFSET, ORDER
	///

	public function limit($limit) {
		$this->query .= "LIMIT ?\n";
		array_push($this->param, $limit);
		return $this;
	}

	public function offset($offset) {
		$this->query .= "OFFSET ?\n";
		array_push($this->param, $offset);
		return $this;
	}

	public function order_by($column, $order = 'ASC') {
		$this->query .= "ORDER BY " . $column . ' ' . $order . ' ';
		return $this;
	}

	///
	/// COLLECT
	///

	public function rows(...$params) {
		$args = $this->param;
		foreach ($params as $param) {
			array_push($args, $param);
		}
		$stmt = $this->conn->prepare($this->query);
		try {
			$stmt->execute($args);
		} catch (Exception $ex) {
			echo $ex;
			echo '<br> >> caused by <<<br>';
			echo str_replace("\n", "<br>", $this->query);
		}
		return $stmt->fetchAll(PDO::FETCH_ASSOC);
	}

	public function row(...$params) {
		$args = $this->param;
		foreach ($params as $param) {
			array_push($args, $param);
		}
		$stmt = $this->conn->prepare($this->query);
		$stmt->execute($args);
		return $stmt->fetch(PDO::FETCH_ASSOC);
	}

	public function execute(...$params) {
		$args = $this->param;
		foreach ($params as $param) {
			array_push($args, $param);
		}
		$stmt = $this->conn->prepare($this->query);
		try {
			$stmt->execute($args);
			return TRUE;
		} catch (Exception $_e) {
			echo $_e;
			echo '<br> >> caused by <<<br>';
			echo str_replace("\n", "<br>", $this->query);
			return FALSE;
		}
	}
}

/**
 * DatabaseHelper
 * allows queries on the
 * postgres database
 */
class DatabaseHelper {

	private $conn;

	function __construct() {
		$this->conn = NULL;
	}

	private function connect() {
		if ($this->conn === NULL) {
			$user = getenv("POSTGRES_USER");
			$pass = getenv("POSTGRES_PASSWORD");
			$db	  = getenv("POSTGRES_DB");
			$host = 'db';
			$port = '5432';

			$conn_str = sprintf("pgsql:host=%s;port=%d;dbname=%s;user=%s;password=%s",
                $host,
                $port,
                $db,
                $user,
				$pass
			);
			$this->conn = new \PDO($conn_str);
			$this->conn->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);
		}
		return $this->conn;
	}

	public function select($select) {
		$conn = $this->connect();
		$query = new DatabaseQuery($conn);
		return $query->select($select);
	}

	public function insert_into($insert, ...$columns) {
		$conn = $this->connect();
		$query = new DatabaseQuery($conn);
		return $query->insert_into($insert, ...$columns);
	}

	public function query($query_str) {
		$conn = $this->connect();
		$query = new DatabaseQuery($conn);
		return $query->query($query_str);
	}
}