-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.php
340 lines (279 loc) · 8.84 KB
/
db.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
<?php
class Scaffold_Db
{
public static $db = null;
protected static $depth = 2; // Recursion depth for parents
protected $useCache = true;
protected $table = null;
protected $primary = null;
protected $_limit = '';
protected $_order = '';
protected $_where = '';
protected $data = null;
protected $fields = array();
protected $label = null;
protected $parents = array();
protected $children = array();
public function __construct($table = null)
{
if (self::$db == null)
$this->Connect(Scaffold::Config('database'));
$this->Table($table);
$this->Primary();
$this->Label();
}
protected function Escape($in)
{
switch (gettype($in))
{
case 'string':
$out = addslashes(stripslashes($in));
break;
case 'boolean':
$out = ($in === false) ? 0 : 1;
break;
default:
$out = ($in === null) ? 'NULL' : $in;
}
return $out;
}
protected function FormatLabel($input = '')
{
return ucwords(str_replace(array('_','-'), ' ', $input));
}
public function Table($input = null)
{
if ($input !== null AND is_string($input))
$this->table = $input;
elseif ($input === null AND empty($this->table))
{
$table = Scaffold::Config('current_table');
if ($table !== null) $this->table = $table;
}
return $this->table;
}
public function Label($input = null)
{
if ($input !== null AND is_string($input))
$this->label = $input;
elseif (empty($this->label) AND $this->Table() !== null)
{
$label = Scaffold::Config('tables',$this->table,'label');
if ($label !== null) $this->label = $label;
else $this->label = $this->FormatLabel($this->table);
}
return $this->label;
}
public function Primary($input = null)
{
// Set and return primary Id
if ($input !== null AND is_numeric($input))
$this->primary = $input;
// If Id is not known, try to locate it
elseif (empty($this->primary) AND $this->Table() !== null)
{
// Look in the config file
$primary = Scaffold::Config('tables',$this->table,'primary');
if ($primary !== null)
$this->primary = $primary;
// Try to automatically select the primary Id from database
else
{
foreach ($this->Fields() as $key=>$field)
if ($field['primary'])
{
$this->primary = $key;
break;
}
}
}
return $this->primary;
}
public function Limit($limit, $offset)
{
$this->_limit = sprintf(' LIMIT %d OFFSET %d ', $limit, $offset);
return $this;
}
public function Order($sort)
{
$parts = explode(' ', $sort);
if (array_key_exists($parts[0], $this->Fields()) AND isset($parts[1]))
{
$direction = ($parts[1] == 'desc') ? 'desc' : 'asc';
$this->_order = " ORDER BY {$this->table}.{$parts[0]} {$direction} ";
// Switch the direction in the field information
$direction = ($direction == 'asc') ? 'desc' : 'asc';
$this->fields[$parts[0]]['sort'] = "{$parts[0]} {$direction}";
}
return $this;
}
public function FetchOne($id)
{
if (is_numeric($id) AND ( ! isset($this->data[$id]) OR ! $this->useCache))
{
$query = "SELECT * FROM {$this->table} WHERE {$this->primary} = {$id} LIMIT 1";
$result = self::$db->query($query);
$this->data[$id] = $result->fetch(PDO::FETCH_ASSOC);
}
if (is_array($this->data)) return $this->data[$id];
else return $this->data;
}
public function FetchAll()
{
if ($this->data == null OR ! $this->useCache)
{
// Create arrays with field names and field count
// Faster to do it now than to call these from inside the loop
$keys[$this->primary] = array_keys($this->Fields());
$fieldCount[$this->primary] = count($keys[$this->primary]);
// Join parent tables
$join = '';
foreach ($this->parents as $key => $parent)
{
// We need aliases in case several same tables are joined
$alias = "{$key}_".$parent->Table();
$join .= ' LEFT JOIN '.$parent->Table()." AS {$alias} ON {$this->table}.{$key} = {$alias}.".$parent->Primary().' ';
$keys[$key] = array_keys($parent->Fields());
$fieldCount[$key] = count($keys[$key]);
}
// Fetch the data
$query = "SELECT * FROM {$this->table}{$join}{$this->_order}{$this->_limit}";
$result = self::$db->query($query);
// PDO messes up when JOINed column has same column names
// Ugly code to place current and parent table data in right places
if ( ! empty($result))
// Data is an integer indexed data array
// Fields are listed in the order they were joined
foreach ($result->fetchAll(PDO::FETCH_NUM) as $data)
// Iterate through "groups" of fields
foreach ($fieldCount as $key => $count)
{
// Cut the $count elements from the front of data array
// Out contains data for one of tables
$out = array_combine($keys[$key], array_splice($data, 0, $count));
// These values go to the current tables' data
// Data is indexed by the primary Id
if ($this->primary == $key)
$this->data[$out[$this->primary]] = $out;
// These will go to the parent table data
else
$parentData[$key][$out[$this->parents[$key]->Primary()]] = $out;
}
// Set the parent data
if (isset($parentData) AND is_array($parentData))
foreach ($parentData as $key => $value)
$this->parents[$key]->Data($value);
}
return $this->data;
}
public function FetchParentsList()
{
$output = array();
foreach ($this->parents as $field=>$parent)
{
$label = Scaffold::Config('tables',$this->Table(),'fields',$field,'parent_display');
foreach ($parent->Data() as $id=>$value)
{
if (is_array($value))
$output[$field][$id] = array_key_exists($label, $value) ? $value[$label] : current($value);
else $output[$field][$id] = '';
}
}
return $output;
}
public function Data($data = null)
{
if ($data !== null AND is_array($data))
$this->data = $data;
return $this->data;
}
public function Fields()
{
if ((empty($this->fields) OR ! $this->useCache) AND self::$db !== null AND $this->Table() !== null)
{
$table = $this->Escape($this->table);
$output = array();
$result = self::$db->query("SHOW COLUMNS FROM {$table}");
if ( ! empty($result))
{
foreach ($result as $col)
{
$sortable = Scaffold::Config('tables',$this->table,'fields',$col['Field'],'sortable');
$label = Scaffold::Config('tables',$this->table,'fields',$col['Field'],'label');
$default = Scaffold::Config('tables',$this->table,'fields',$col['Field'],'default');
// Load the parent table
$parentTable = Scaffold::Config('tables',$this->table,'fields',$col['Field'],'parent');
if ($parentTable !== null AND self::$depth > 0)
{
self::$depth--;
$this->parents[$col['Field']] = new Scaffold_Db($parentTable);
}
$output[$col['Field']] = array(
'label' => ($label === null) ? $this->FormatLabel($col['Field']) : $label,
'type' => Scaffold::Config('tables',$this->table,'fields',$col['Field'],'type'),
'sortable' => ($sortable === false) ? false : true,
'sort' => "{$col['Field']} asc",
'default' => ($default === null) ? '' : $default,
'primary' => (($col['Key'] == 'PRI' AND empty($this->primary)) OR $col['Field'] == $this->primary) ? true : false,
'parent' => ($parentTable === null) ? '' : $parentTable
);
}
$this->fields = $output;
}
}
return $this->fields;
}
public function Save($input)
{
$primary = $this->Primary();
// Only keep fields that are in the database
foreach ($this->Fields() as $key => $value)
// Do not append a primary Id
if (isset($input[$key]) AND $key !== $primary)
{
$keys[] = "{$key}=?";
$values[] = $input[$key];
}
// Prepare SQL statement, let PDO deal with escaping
if (isset($input[$primary]) AND ! empty($input[$primary]))
{
$action = 'UPDATE ';
$condition = " WHERE {$primary}=? LIMIT 1";
$values[] = $input[$primary];
}
else
{
$action = 'INSERT INTO ';
$condition = '';
}
$query = $action.$this->Table().' SET '.implode(',', $keys).$condition;
$statement = self::$db->prepare($query);
return $statement->execute($values);
}
public function Connect($config)
{
if (is_array($config) AND ! empty($config))
{
try
{
$host = isset($config['host']) ? $config['host'] : 'localhost';
$user = isset($config['user']) ? $config['user'] : '';
$dbname = isset($config['dbname']) ? $config['dbname'] : $user;
$password = isset($config['password']) ? $config['password'] : '';
$port = isset($config['port']) ? ";port={$config['port']}" : '';
$dsn = "mysql:host={$host};dbname={$dbname}{$port}";
$connection = new PDO($dsn, $user, $password);
if ($connection) self::$db = $connection;
}
catch (PDOException $e) { }
}
return $this;
}
public function Count()
{
$table = $this->Escape($this->table);
$result = self::$db->query("SELECT COUNT(*) FROM {$table}");
if ( ! empty($result)) return $result->fetchColumn();
else return null;
}
}