-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
422 lines (310 loc) · 9.32 KB
/
index.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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
<?
//////////////////////////////Config//////////////////////////////
$default_email = "default@email.com";
if(substr( $_SERVER['HTTP_HOST'], 0, 4 ) == 'dev.') {
$base_url = '';
} else {
$base_url = "http://notiondigitalarts.com/testing/busted";
}
//DB
if(substr( $_SERVER['HTTP_HOST'], 0, 4 ) == 'dev.') {
Config::write('db.host', 'localhost');
} else {
Config::write('db.host', 'busted.db.8947470.hostedresource.com');
}
Config::write('db.user', 'busted');
Config::write('db.port', '3306');
Config::write('db.basename', 'busted');
Config::write('db.password', 'L@t3rG4t0r');
//////////////////////////////Controller//////////////////////////////
$ct = null;
$jobid = null;
$notification = null;
$admin = false;
$language = "";
//Get destination:
$qry_str = $_SERVER['QUERY_STRING'];
parse_str ($qry_str);
if($ct == "listingindex"){
$admin = true;
$obj = new Job();
$obj->getAll('*');
$language = "Select a job listing to edit.";
include 'view/view_header.php';
include 'view/view_adminindex.php';
include 'view/view_footer.php';
}
else if($ct == 'jobinput') {
$admin = true;
//Job has been input. Add to DB and display results:
if(isset($_POST["id"])) {
//ID is already set. This is an entry revision. Update DB entry.
//Open Job object
$job = new Job();
//Collect POST data:
if(isset($_POST["title"])) { $job->title = $_POST["title"]; }
if(isset($_POST["description"])) { $job->description = $_POST["description"]; }
if(isset($_POST["requirements"])) { $job->requirements = $_POST["requirements"]; }
if(isset($_POST["contact_email"])) { $job->contact_email = $_POST["contact_email"]; }
if(isset($_POST["department"])) { $job->department = $_POST["department"]; }
if(isset($_POST["on_location"])) {
if($_POST["on_location"] == 'on') {
$job->on_location = '1';
};
}
if(isset($_POST["active"])) {
if($_POST["active"] == 'on') {
$job->active = '1';
};
}
$job->id = $_POST["id"];
//Update DB:
$job->save();
$obj = new Job();
$obj->getAll('*');
//Pull data back out of DB
//$job->Object($job->id);
//Render the page
//$post = $job->job_result[0];
//$requirements = $job->requirement_result;
$notification = 'Job has been updated.';
$language = "Select a posting to update.";
include 'view/view_header.php';
include 'view/view_adminindex.php';
include 'view/view_footer.php';
exit;
} else if(isset($jobid)){
//Go to job entry page, populated with requested job
$job = new Job();
$job->Object($jobid);
//Render the page
$post = $job->job_result[0];
$requirements = $job->requirement_result;
$language = "Update the job posting.";
include 'view/view_header.php';
include 'view/view_jobentry.php';
include 'view/view_footer.php';
exit;
} else {
//Enter a new job into the DB:
$job = new Job();
$post = $job->job_array();
$post['id'] = 'New Entry';
$language = "Enter a new job.";
include 'view/view_header.php';
include 'view/view_jobentry.php';
include 'view/view_footer.php';
exit;
}
} else if($ct == 'del') {
$obj = new Job();
$obj->id = $jobid;
//Update DB:
$obj->del();
$obj->getAll('*');
$notification = 'Job Listing has been deleted.';
$language = 'Select a posting to update.';
include 'view/view_header.php';
include 'view/view_adminindex.php';
include 'view/view_footer.php';
exit;
} else {
$obj = new Job();
$obj->getAll('*');
$language = "Please select from the following jobs.";
include 'view/view_header.php';
include 'view/view_jobs.php';
include 'view/view_footer.php';
exit;
}
//////////////////////////////Model//////////////////////////////
class Object {
public $job_result = array();
public $requirement_result = array();
public function Object($int=null) {
if($int) {
$db = new DB();
// Gather posting
$query_parts = array(
'columns' => '*',
'table' => 'job',
'prop' => 'id',
'arg' => $int
);
$query = "SELECT " . $query_parts['columns'] . " FROM " . $query_parts['table'] . " WHERE " . $query_parts['prop'] . " = " . $query_parts['arg'];
$this->listing = $db->Database($query);
$result[] = mysqli_fetch_array($this->listing, MYSQLI_ASSOC);
//Collapse top level for single row array. Retains index names.
//foreach($this->job as $key => $value) {
foreach($result as $index => $field) {
$this->job_result[$index] = $field;
//}
};
unset($query_parts);
// Gather requirements
// $query_parts = array(
// 'columns' => 'requirement',
// 'table' => 'requirement_associative',
// 'prop' => 'idpost',
// 'arg' => $int
// );
//
// $query = "SELECT " . $query_parts['columns'] . " FROM " . $query_parts['table'] . " WHERE " . $query_parts['prop'] . " = " . $query_parts['arg'];
//
// $this->db_reqs = $db->Database($query);
//
// while($row = mysqli_fetch_array($this->db_reqs, MYSQLI_NUM)) {
// $this->req[] = $row;
// }
//
// //Collapse top level for multiple row array. Abandon index names.
// $i = 0;
// foreach($this->req as $key => $value) {
// foreach($value as $index => $field) {
// $this->requirement_result[$i] = $field;
// $i++;
// }
// };
// unset($i);
} else {
}
}
public function getAll($ids = null) {
$db = new DB();
$id_str = "WHERE ";
if(is_array($ids)) {
//If multiple values are requested
foreach($id as $value) {
$id_str .= 'idpost = ' . $value . ',';
}
$columns_str = substr($columns_str, 0, -1);
} elseif($ids == '*') {
//If all entries are requested:
$id_str = "";
} else {
//If a single entry is requested
$id_str .= 'idpost = ' . $ids;
}
$query_parts = array(
'columns' => '*',
'table' => 'job',
'where' => $id_str
);
$query = "SELECT " . $query_parts['columns'] . " FROM " . $query_parts['table'] . $query_parts['where'];
$this->result = $db->Database($query);
while($listing = mysqli_fetch_array($this->result, MYSQLI_ASSOC)){
$this->listings[] = $listing;
};
unset($query_parts);
unset($query);
}
function field() {
}
function del() {
$db = new DB();
$query = "DELETE FROM job WHERE id=". $this->id;
$db->Database($query);
}
}
class Job extends Object {
public $job = array();
public $id = "";
public $title = "";
public $description = "";
public $requirements = "";
public $contact_email = "";
public $department = "";
public $on_location = 1;
public $active = 1;
function job_array() {
$this->job = array(
'id' => $this->id,
'title' => $this->title,
'description' => $this->description,
'requirements' => $this->requirements,
'contact_email' => $this->contact_email,
'department' => $this->department,
'on_location' => $this->on_location,
'active' => $this->active
);
return $this->job;
}
function save() {
$db = new DB();
$eggs = "";
if($this->id == "New Entry") {
//Insert data into new DB entry:
$entries = $this->job_array();
//Unset ID so that the BD auto-creates one
unset($entries['id']);
$query = "INSERT INTO job (";
foreach ($entries as $key => $value) {
$query .= $key . ", ";
};
$query = substr($query, 0, -2);
$query .= ") VALUES ('";
foreach ($entries as $value) {
$query .= $value . "', '";
};
$query = substr($query, 0, -3);
$query .= ")";
} else {
//Insert data into existing DB entry:
$columns_str = "";
foreach ($this->job_array() as $key => $value) {
$columns_str .= $key . " = '" . $value . "', ";
};
$columns_str = substr($columns_str, 0, -2);
$query_parts = array(
'table' => 'job',
'columns' => $columns_str,
'prop' => 'id',
'arg' => $this->id,
);
$query = "UPDATE " . $query_parts['table'] . " SET " . $columns_str . " WHERE " . $query_parts['prop'] . "=" . $query_parts['arg'];
}
$this->listing = $db->Database($query);
}
}
class DB {
public function Database($query, $err = null){
if($err) {
print_r($query); echo "<br>";
echo '<br>' . $err . "<br>";
}
$con = mysqli_connect(Config::read('db.host'),"busted","L@t3rG4t0r","busted");
if (mysqli_connect_errno($con)) {
echo "Failed to connect to DB: " . mysqli_connect_error();
};
$result = $con->query($query);
if (!$result) {
echo "Query result error: ";
printf("Error: %s\n", mysqli_error($con));
exit();
};
unset($query);
mysqli_close($con);
return $result;
}
}
class Config {
static $confArray;
public static function read($name) {
return self::$confArray[$name];
}
public static function write($name, $value) {
self::$confArray[$name] = $value;
}
}
// update_title($title);
//
// update_description($desc);
//
// update_requirements($requirements);
//
// set_active();
//
// set_inactive();
//Store HTML in DB: htmlentities.($mything);
//View:
?>