-
Notifications
You must be signed in to change notification settings - Fork 0
/
AbstractModel.php
402 lines (335 loc) · 9.5 KB
/
AbstractModel.php
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
<?php
namespace ClinicModels;
require_once PROJ_ROOT . "/includes/HTTP/HTTPException.php";
use \Exception;
use MFunc\HTTPException;
abstract class AbstractModel
{
public $id;
protected $database;
public static array $columns;
const TableName = "abstract";
abstract protected function validateCreateFields();
abstract protected function validateFetchFields();
abstract protected function validateDeleteFields();
abstract protected function validateUpdateFields();
/**
* Throws `HTTPException::NotFound` if last operation affects no rows
*
* @author Mohammed Abdulsalam
* */
public function validateLastOperation()
{
$lastRowCount = $this->database->getLastRowCount();
$noRowAffected = !boolval($lastRowCount);
if($noRowAffected)
throw new HTTPException("Not found", HTTPException::NotFound);
}
/**
* Checks if column exists in the table
*
* @param string $column Column name
* @return bool
*
* @author Mohammed Abdulsalam
* */
public static function columnExists(string $column) : bool
{
return array_key_exists($column, static::$columns);
}
/**
* Checks if column is special, thus require certain authorize
*
* @param string $column Column name
* @return bool
*
* @author Mohammed Abdulsalam
* */
public static function columnSpecial(string $column) : bool
{
return static::$columns[$column]["special"];
}
/**
* Checks if column is self initialized
*
* @param string $column Column name
* @return bool
*
* @author Mohammed Abdulsalam
* */
public static function columnSelfInit(string $column) : bool
{
return static::$columns[$column]["selfInit"];
}
/**
* Prepare changes and parameters passed to sql query before create
*
* @param mixed &$changes String to store changing columns names and parameter name: "col1 = :col1, col2 = :col2"
* @param mixed &$params Array to store parameter names corresponding to those in `$changes` and their values:
* [
* "col1" => val1,
* "col2" => vla2
* ]
* @author Mohammed Abdulsalam
* */
public function initCreateColumns(mixed &$changes, mixed &$params)
{
$params = [];
$changes = "";
foreach(static::$columns as $col => $colInfo)
{
$columnSelfInit = self::columnSelfInit($col);
if($columnSelfInit)
continue;
$changes .= "{$colInfo["name"]} = :$col, ";
$params[$col] = $this->{$col};
}
$changes = trim($changes, ", ");
}
/**
* Prepare columns names based on desired fields
* If `$fields === null`, it assign $columns with `"*"`, which indicates all columns
*
* @param mixed $fields Desired fields
* @param mixed &$columns String to store columns name
* @author Mohammed Abdulsalam
* */
public static function initFetchColumns(mixed $fields, mixed &$columns)
{
$columns = "*";
if(!is_null($fields))
{
$columns = "";
$fieldsCount = count($fields);
// Add fields that exists in the table to $columns
for($i = 0; $i < $fieldsCount; $i++)
{
$field = $fields[$i];
if(!self::columnExists($field))
continue;
$columns .= static::$columns[$field]["name"] . ", ";
}
// Remove trailing comma, or reset $columns if it is empty string
$columns = $columns === "" ?
"*" :
trim($columns, ", ");
}
}
/**
* Indicates wether `$str` can cause damage to database
*
* @param string $str String to test against
* @author Mohammed Abdulsalam
* */
public static function strDanger(string $str)
{
$danger = preg_match("/^update$|^delete$|^drop$|^create$|^truncate$|^alter$|^grant$|^1=1$/i", $str);
return boolval($danger);
}
/**
* Prepare `$sqlOptions` based on `$options` provided
*
* @param array $options Array of strings. Those strings can be any filtering or sorting sql command
* @param mixed &$sqlOptions String to store sql conformed options
* @author Mohammed Abdulsalam
* */
public static function initSqlOptions(array $options, mixed &$sqlOptions)
{
$sqlOptions = "";
$optionsCount = count($options);
if($optionsCount != 0)
{
$sqlOptions = "WHERE";
for($i = 0; $i < $optionsCount; $i++)
{
$sqlOptions .= " {$options[$i]} ";
if(self::strDanger($options[$i]))
throw new HTTPException("Fortified you bitch", HTTPException::Forbidden);
$lastIndex = $optionsCount - 1;
if($i != $lastIndex)
$sqlOptions .= "AND";
}
}
}
/**
* Prepare changes and parameters passed to sql query before update
*
* @param array $column_val Associative array contains column name and its new value
* @param mixed &$changes String to store changing columns names and parameter name: "col1 = :col1, col2 = :col2"
* @param mixed &$params Array to store parameter names corresponding to those in `$changes` and their values:
* [
* "col1" => val1,
* "col2" => vla2
* ]
* @author Mohammed Abdulsalam
* */
public static function initUpdateParams(array $column_val, mixed &$changes, mixed &$params)
{
$params = [];
$changes = "";
foreach($column_val as $col => $val)
{
if(is_null($val))
throw new HTTPException("Values cannot be nulls", HTTPException::BadRequest);
$columnNotExists = !self::columnExists($col);
if($columnNotExists)
continue;
$columnSpecial = self::columnSpecial($col);
if($columnSpecial)
continue;
$changes .= static::$columns[$col]["name"] . " = " . ":$col, ";
$params[$col] = $val;
}
$changes = trim($changes, ", ");
}
/**
* Create new row
* This process requires create fields are in the right form. If not, `HTTPException` is thrown with BadRequest
*
* @author Mohammed Abdulsalam
* */
public function create()
{
$this->validateCreateFields();
$this->initCreateColumns($changes, $params);
$sql = "INSERT INTO " . static::TableName . " SET $changes";
try
{
$this->database->executeSQL($sql, $params);
}
catch(Exception $ex)
{
throw new HTTPException("Failed to add", HTTPException::InternalError);
}
}
/**
* Fetch single row
*
* @param array $fields Fields to fetch only. If equals null, all fields will be fetched
* @return array | null The fetched row
* @author Mohammed Abdulsalam
* */
public function fetchSingle(array $fields = null) : array | null
{
$this->validateFetchFields();
self::initFetchColumns($fields, $columns);
$sql = "SELECT $columns FROM " . static::TableName . " WHERE id = :id";
$params = [
"id" => $this->id
];
try
{
$result = $this->database->executeSQL($sql, $params);
$this->validateLastOperation();
return $result;
}
catch(HTTPException $ex)
{
throw new HTTPException($ex->getMessage(), $ex->getStatusCode());
}
catch(Exception $ex)
{
throw new HTTPException("Failed to fetch", HTTPException::InternalError);
}
}
/**
* Fetch all rows
*
* @param array $fields Fields to fetch only. If equals null, all fields will be fetched
* @param string $limit Max limit of number of rows
* @param string $offset Offset to begin fetching. Usually used in pagination
* @param array $sqlOptions Conditions to filter & sort the result
* @return array | null The fetched rows
* @author Mohammed Abdulsalam
* */
public function fetchAll(
array $fields = null,
string $limit = null,
string $offset = null,
string $order = null,
array $options = []
) : array | null
{
self::initFetchColumns($fields, $columns);
$offset = is_null($offset) ?
"" :
"OFFSET $offset";
$limit = is_null($limit) ?
"" :
"LIMIT $limit";
if(self::strDanger($offset) || self::strDanger($limit))
throw new HTTPException("Fortified you bitch", HTTPException::Forbidden);
self::initSqlOptions($options, $sqlOptions);
$sql = "SELECT $columns FROM " . static::TableName . " $sqlOptions $order $limit $offset";
try
{
$result = $this->database->executeSQL($sql);
// Fetch total count;
$sql = "SELECT COUNT(*) as total FROM " . static::TableName . " $sqlOptions";
$count = $this->database->executeSQL($sql);
return [
"data" => $result,
"total" => $count[0]->total
];
}
catch(Exception $ex)
{
throw new HTTPException("Failed to fetch", HTTPException::InternalError);
}
}
/**
* Delete row from the table of the model
*
* @author Mohammed Abdulsalam
* */
public function delete()
{
$this->validateDeleteFields();
$sql = "DELETE FROM " . static::TableName . " WHERE id = :id";
$param = [
"id" => $this->id
];
try
{
$this->database->executeSQL($sql, $param);
$this->validateLastOperation();
}
catch(HTTPException $ex)
{
throw new HTTPException($ex->getMessage(), $ex->getStatusCode());
}
catch(Exception $ex)
{
throw new HTTPException("Failed to delete", HTTPException::InternalError);
}
}
/**
* Update information
* Throws `HTTPException` 400 if one of the values is null
* Sends 404 if no rows affected, that is if row not found or row found but nothing changed
*
* @param array $column_val Associative array contains column name and its new value
* @author Mohammed Abdulsalam
* */
public function update(array $column_val)
{
$this->validateUpdateFields();
self::initUpdateParams($column_val, $changes, $params);
if($changes === "")
throw new Exception("No valid fields provided", HTTPException::BadRequest);
$sql = "UPDATE " . static::TableName . " SET $changes WHERE id = :id";
$params["id"] = $this->id;
try
{
$this->database->executeSQL($sql, $params);
}
catch(HTTPException $ex)
{
throw new HTTPException($ex->getMessage(), $ex->getStatusCode());
}
catch(Exception $ex)
{
throw new Exception("Failed to update", HTTPException::InternalError);
}
}
}