-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume_controller.php
More file actions
634 lines (509 loc) · 18.5 KB
/
resume_controller.php
File metadata and controls
634 lines (509 loc) · 18.5 KB
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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
<?php
require_once($_SERVER['DOCUMENT_ROOT'] . '/config.php');
//This controls all interations with the resume. basic info (name, phone number etc. is pulled from the user controller
class resume {
public function __construct(){
//establish a connection with db
$this->dbh = new PDO('mysql:host=localhost;dbname=xxxxxxx', 'xxxxxxxx', 'xxxxxxxx');
}
//Create the users objective
public function createUserObjective($userId, $objective){
$updates = array(
'userId' => $userId,
'objective' => $objective
);
$updates = array_filter($updates, 'strlen'); //Removes any NULL
//Check here to see if db contains existing data. If so, update, else insert
$sth = $this->dbh->prepare("SELECT objective FROM objective WHERE userId = :userId");
$sth->bindParam(":userId",$userId);
$sth->execute();
$result = $sth->fetchColumn();
//If new, Insert
if (empty($result)){
$query = 'INSERT INTO objective SET';
$values = array();
foreach ($updates as $name => $value) {
$query .= ' '.$name.' = :'.$name.','; // the :$name part is the placeholder, e.g. :zip
$values[':'.$name] = $value; // save the placeholder
}
$query = substr($query, 0, -1).';'; // remove last , and add a ;
$sth = $this->dbh->prepare($query);
if($sth->execute($values)){ // bind placeholder array to the query and execute everything
//$_SESSION["userId"] = $this->dbh->lastInsertId();
} else {
print_r($sth->errorInfo());
}
//If updating, UPDATE
} else {
$sth = $this->dbh->prepare("UPDATE objective SET objective = :objective WHERE userId = :userId");
$sth->bindParam(":userId",$userId);
$sth->bindParam(":objective",$objective);
RETURN $sth->execute();
//$result = $sth->fetchColumn()
}
}
//Create a new user education profile
public function createUserEducation($userId, $fieldId, $educationTitle, $educationDegree, $educationStartDate, $educationEndDate, $educationDescription,
$educationHighlight1, $educationHighlight2, $educationHighlight3, $educationHighlight4){
$dates = array(
'startDate' => $educationStartDate,
'endDate' => $educationEndDate
);
//Coverts date format to insert into MySQL
$startDateConverted = array();
foreach($dates['startDate'] as $startDate){
$startDateConverted[] = date('Y-m-d', strtotime($startDate));
}
//Coverts date format to insert into MySQL
$endDateConverted = array();
foreach($dates['endDate'] as $endDate){
$endDateConverted[] = date('Y-m-d', strtotime($endDate));
}
$submittedChanges = array(
'userId' => $userId,
'fieldId' => $fieldId,
'educationTitle' => $educationTitle,
'educationDegree' => $educationDegree,
'startDate' => $startDateConverted,
'endDate' => $endDateConverted,
'educationDescription' => $educationDescription,
'educationHighlight1' => $educationHighlight1,
'educationHighlight2' => $educationHighlight2,
'educationHighlight3' => $educationHighlight3,
'educationHighlight4' => $educationHighlight4
);
//Previously saved data from database
$existingEdu = $this->getUserEdu($userId);
//Pulling fieldId from database values in order to compare against submitted data
$compare = array();
foreach($existingEdu as $field){
$compare[] = $field['fieldId'];
}
//Finds matching fieldId in database vs submitted data
$matches = array_intersect($compare, $submittedChanges['fieldId']);
//This compares $matches against the users data. If a match is found, it adds it to $eduUpdate else it's added to $eduAdd
//We want to update any fieldId that exists and add a new record if the fieldId does not exist
$eduAdd = array();
$eduUpdate = array();
$itodel = array();
foreach($submittedChanges['fieldId'] as $i => $v){
if(isset($matches[$i]) and $matches[$i] == $v){
$itodel[] = $i;
}
}
foreach ($submittedChanges as $key => $arr) {
if (!is_array($arr)) continue;
foreach ($arr as $i => $v) {
if (in_array($i, $itodel))
$eduUpdate[$key][$i] = $v;
else
$eduAdd[$key][$i] = $v;
}
}
$eduAdd = array_map('array_values', $eduAdd);
//Adding the userId since the loop filtered it out
$eduAdd['userId'] = $userId;
// echo "<pre>";
// echo "adding";
// print_r($eduAdd);
// echo "</pre>";
if(!empty($eduAdd)){
$count = count($eduAdd['educationTitle']);
$idx = 0;
for($i = 1; $i<=$count; $i++){
$query = 'INSERT INTO education SET';
$values = array();
foreach ($eduAdd as $name => $value) {
if(is_array($value)) {
$query .= ' '.$name.' = :'.$name.','; // the :$name part is the placeholder, e.g. :zip
$values[':'.$name] = $value[$idx]; // save the placeholder and increment
} else {
$query .= ' '.$name.' = :'.$name.','; // the :$name part is the placeholder, e.g. :zip
$values[':'.$name] = $value; // save the userId placeholder so It does not increment
}
}
$query = substr($query, 0, -1).';'; // remove last , and add a ;
$sth = $this->dbh->prepare($query);
if($sth->execute($values)){ // bind placeholder array to the query and execute everything
//return $this->dbh->lastInsertId();
//return TRUE;
} else {
print_r($sth->errorInfo());
}
$idx++;
}
}
if(!empty($eduUpdate)){
$count = count($eduUpdate['educationTitle']);
$idx = 0;
for($i = 1; $i<=$count; $i++){
$query = 'UPDATE education SET';
$values = array();
$counter = 0;
foreach ($eduUpdate as $name => $value) {
if(is_array($value)) {
$query .= ' '.$name.' = :'.$name; //.','; // the :$name part is the placeholder, e.g. :zip
$counter++;
if ($counter < count($eduUpdate)) {
$query .= ',';
}
$values[':'.$name] = $value[$idx]; // save the placeholder and increment
$values['userId'] = $userId;
} else {
$query .= ' '.$name.' = :'.$name; // .','; // the :$name part is the placeholder, e.g. :zip
$counter++;
if ($counter <= count($eduUpdate)) {
$query .= ',';
}
$values[':'.$name] = $value; // save the userId placeholder so It does not increment
$values['userId'] = $userId;
}
}
$query .= ' WHERE userId = :userId AND fieldId = :fieldId;';
$sth = $this->dbh->prepare($query);
if($sth->execute($values)){ // bind placeholder array to the query and execute everything
$sth->bindParam(":userId",$userId);
//return $this->dbh->lastInsertId();
//return TRUE;
} else {
print_r($sth->errorInfo());
}
$idx++;
}
}
}
public function deleteUserEducation($userId, $fieldId){
$sth = $this->dbh->prepare("DELETE FROM education WHERE userId = :userId and fieldId = :fieldId");
$sth->bindParam(":userId",$userId);
$sth->bindParam(":fieldId",$fieldId);
if($sth->execute()){
return TRUE;
} else {
return FALSE;
}
//$result = $sth->fetchColumn();
}
//Create a new user work profile
public function createUserWork($userId, $fieldId, $positionTitle, $company, $jobDescription, $jobHighlight1, $jobHighlight2, $jobHighlight3,
$jobHighlight4, $jobStartDate, $jobEndDate, $jobCity, $jobState){
$dates = array(
'startDate' => $jobStartDate,
'endDate' => $jobEndDate
);
//Coverts date format to insert into MySQL
$startDateConverted = array();
foreach($dates['startDate'] as $startDate){
$startDateConverted[] = date('Y-m-d', strtotime($startDate));
}
//Coverts date format to insert into MySQL
$endDateConverted = array();
foreach($dates['endDate'] as $endDate){
$endDateConverted[] = date('Y-m-d', strtotime($endDate));
}
$updates = array(
'userId' => $userId,
'fieldId' => $fieldId,
'positionTitle' => $positionTitle,
'company' => $company,
'jobDescription' => $jobDescription,
'jobHighlight1' => $jobHighlight1,
'jobHighlight2' => $jobHighlight2,
'jobHighlight3' => $jobHighlight3,
'jobHighlight4' => $jobHighlight4,
'startDate' => $startDateConverted,
'endDate' => $endDateConverted,
'jobCity' => $jobCity,
'jobState' => $jobState
);
//Previously saved data from database
$existingJobs = $this->getUserWorkHistory($userId);
//Pulling fieldId from database values in order to compare against submitted data
$compare = array();
foreach($existingJobs as $field){
$compare[] = $field['fieldId'];
}
//Finds matching fieldId in database vs submitted data
$matches = array_intersect($compare, $updates['fieldId']);
//This compares $matches against the users data. If a match is found, it adds it to $jobUpdate else it's added to $jobAdd
//We want to update any fieldId that exists and add a new record if the fieldId does not exist
$jobAdd = array();
$jobUpdate = array();
$itodel = array();
foreach($updates['fieldId'] as $i => $v){
if(isset($matches[$i]) and $matches[$i] == $v){
$itodel[] = $i;
}
}
foreach ($updates as $key => $arr) {
if (!is_array($arr)) continue;
foreach ($arr as $i => $v) {
if (in_array($i, $itodel))
$jobUpdate[$key][$i] = $v;
else
$jobAdd[$key][$i] = $v;
}
}
$jobAdd = array_map('array_values', $jobAdd);
//Adding the userId sine the loop filtered it out
$jobAdd['userId'] = $userId;
if(!empty($jobAdd)){
$count = count($jobAdd['positionTitle']);
$idx = 0;
for($i = 1; $i<=$count; $i++){
$query = 'INSERT INTO jobhistory SET';
$values = array();
foreach ($jobAdd as $name => $value) {
if(is_array($value)) {
$query .= ' '.$name.' = :'.$name.','; // the :$name part is the placeholder, e.g. :zip
$values[':'.$name] = $value[$idx]; // save the placeholder and increment
} else {
$query .= ' '.$name.' = :'.$name.','; // the :$name part is the placeholder, e.g. :zip
$values[':'.$name] = $value; // save the userId placeholder so It does not increment
}
}
$query = substr($query, 0, -1).';'; // remove last , and add a ;
$sth = $this->dbh->prepare($query);
if($sth->execute($values)){ // bind placeholder array to the query and execute everything
//return $this->dbh->lastInsertId();
//return TRUE;
} else {
print_r($sth->errorInfo());
}
$idx++;
}
}
if(!empty($jobUpdate)){
$count = count($jobUpdate['positionTitle']);
$idx = 0;
for($i = 1; $i<=$count; $i++){
$query = 'UPDATE jobhistory SET';
$values = array();
$counter = 0;
foreach ($jobUpdate as $name => $value) {
if(is_array($value)) {
$query .= ' '.$name.' = :'.$name; // the :$name part is the placeholder, e.g. :zip
$counter++;
if ($counter < count($jobUpdate)) { // Add a comma after each except for last item
$query .= ',';
}
$values[':'.$name] = $value[$idx]; // save the placeholder and increment
$values['userId'] = $userId;
} else {
$query .= ' '.$name.' = :'.$name; // the :$name part is the placeholder, e.g. :zip
$counter++;
if ($counter <= count($jobUpdate)) { // Add a comma after each except for last item
$query .= ',';
}
$values[':'.$name] = $value; // save the userId placeholder so It does not increment
$values['userId'] = $userId;
}
}
$query .= ' WHERE userId = :userId AND fieldId = :fieldId;';
$sth = $this->dbh->prepare($query);
if($sth->execute($values)){ // bind placeholder array to the query and execute everything
$sth->bindParam(":userId",$userId);
} else {
print_r($sth->errorInfo());
}
$idx++;
}
}
}
public function deleteUserJob($userId, $fieldId){
$sth = $this->dbh->prepare("DELETE FROM jobhistory WHERE userId = :userId and fieldId = :fieldId");
$sth->bindParam(":userId",$userId);
$sth->bindParam(":fieldId",$fieldId);
if($sth->execute()){
return TRUE;
} else {
return FALSE;
}
//$result = $sth->fetchColumn();
}
//Create a new user skill profile
public function createUserSkills($userId, $fieldId, $skillName){
//$filteredSkillName = array_filter($skillName, 'strlen'); //Removes any NULL, FALSE and Empty Strings but leaves 0 values
$updates = array(
'userId' => $userId,
'fieldId' => $fieldId,
'skillName' => $skillName
);
//Previously saved data from database
$existingSkills = $this->getUserSkills($userId);
//Pulling fieldId from database values in order to compare against submitted data
$compare = array();
foreach($existingSkills as $field){
$compare[] = $field['fieldId'];
}
//Finds matching fieldId in database vs submitted data
$matches = array_intersect($compare, $updates['fieldId']);
//This compares $matches against the users data. If a match is found, it adds it to $skillUpdate else it's added to $skillAdd
//We want to update any fieldId that exists and add a new record if the fieldId does not exist
$skillAdd = array();
$skillUpdate = array();
$itodel = array();
foreach($updates['fieldId'] as $i => $v){
if(isset($matches[$i]) and $matches[$i] == $v){
$itodel[] = $i;
}
}
foreach ($updates as $key => $arr) {
if (!is_array($arr)) continue;
foreach ($arr as $i => $v) {
if (in_array($i, $itodel))
$skillUpdate[$key][$i] = $v;
else
$skillAdd[$key][$i] = $v;
}
}
$skillAdd = array_map('array_values', $skillAdd);
//Adding the userId sine the loop filtered it out
$skillAdd['userId'] = $userId;
if(!empty($skillAdd)){
$count = count($skillAdd['skillName']);
$idx = 0;
for($i = 1; $i<=$count; $i++){
$query = 'INSERT INTO userhasskills SET';
$values = array();
foreach ($skillAdd as $name => $value) {
if(is_array($value)) {
$query .= ' '.$name.' = :'.$name.','; // the :$name part is the placeholder, e.g. :zip
$values[':'.$name] = $value[$idx]; // save the placeholder and increment
} else {
$query .= ' '.$name.' = :'.$name.','; // the :$name part is the placeholder, e.g. :zip
$values[':'.$name] = $value; // save the userId placeholder so It does not increment
}
}
$query = substr($query, 0, -1).';'; // remove last , and add a ;
$sth = $this->dbh->prepare($query);
if($sth->execute($values)){ // bind placeholder array to the query and execute everything
//return $this->dbh->lastInsertId();
//return TRUE;
} else {
print_r($sth->errorInfo());
}
$idx++;
}
}
if(!empty($skillUpdate)){
$count = count($skillUpdate['skillName']);
$idx = 0;
for($i = 1; $i<=$count; $i++){
$query = 'UPDATE userhasskills SET';
$values = array();
$counter = 0;
foreach ($skillUpdate as $name => $value) {
if(is_array($value)) {
$query .= ' '.$name.' = :'.$name; // the :$name part is the placeholder, e.g. :zip
$counter++;
if ($counter < count($skillUpdate)) { // Add a comma after each except for last item
$query .= ',';
}
$values[':'.$name] = $value[$idx]; // save the placeholder and increment
$values['userId'] = $userId;
} else {
$query .= ' '.$name.' = :'.$name; // the :$name part is the placeholder, e.g. :zip
$counter++;
if ($counter <= count($skillUpdate)) { // Add a comma after each except for last item
$query .= ',';
}
$values[':'.$name] = $value; // save the userId placeholder so It does not increment
$values['userId'] = $userId;
}
}
$query .= ' WHERE userId = :userId AND fieldId = :fieldId;';
$sth = $this->dbh->prepare($query);
if($sth->execute($values)){ // bind placeholder array to the query and execute everything
$sth->bindParam(":userId",$userId);
} else {
print_r($sth->errorInfo());
}
$idx++;
}
}
}
public function deleteUserSkill($userId, $fieldId){
$sth = $this->dbh->prepare("DELETE FROM userhasskills WHERE userId = :userId and fieldId = :fieldId");
$sth->bindParam(":userId",$userId);
$sth->bindParam(":fieldId",$fieldId);
if($sth->execute()){
return TRUE;
} else {
return FALSE;
}
}
//Return Results...
//Return the users objective statement
public function getUserObjective($userId){
if($userId){
$sth = $this->dbh->prepare("SELECT objective FROM objective WHERE userId = :userId");
$sth->bindParam(":userId",$userId);
$sth->execute();
$result = $sth->fetchColumn();
return $result;
} else {
return NULL;
}
}
//Return the users education profile
public function getUserEdu($userId){
if($userId){
$sth = $this->dbh->prepare("SELECT * FROM education WHERE userId = :userId");
$sth->bindParam(":userId",$userId);
$sth->execute();
$result = $sth->fetchAll(PDO::FETCH_ASSOC);
return $result;
} else {
return NULL;
}
}
//Return the users work profile
public function getUserWorkHistory($userId){
if($userId){
$sth = $this->dbh->prepare("SELECT * FROM jobhistory WHERE userId = :userId");
$sth->bindParam(":userId",$userId);
$sth->execute();
$result = $sth->fetchAll(PDO::FETCH_ASSOC);
return $result;
} else {
return NULL;
}
}
//Return the users skills
public function getUserSkills($userId){
if($userId){
$sth = $this->dbh->prepare("SELECT * FROM userhasskills WHERE userId = :userId");
$sth->bindParam(":userId",$userId);
$sth->execute();
$result = $sth->fetchAll(PDO::FETCH_ASSOC);
return $result;
} else {
return NULL;
}
}
//Email the user a PDF of their resume using PHPMailer
public function emailUserResume($userId){
require_once($_SERVER['DOCUMENT_ROOT'] . '/inc/user_controller.php');
require_once($_SERVER['DOCUMENT_ROOT'] . '/inc/PHPMailer/class.phpmailer.php');
$user = new user();
$mail = new PHPMailer(true); //defaults to using php "mail()"; the true param means it will throw exceptions on errors, which we need to catch
$currentUserInfo = $user->userDetails($userId);
try {
$mail->AddAddress($currentUserInfo['emailAddress'], $currentUserInfo['firstName']);
$mail->SetFrom('name@yourdomain.com', 'First Last');
$mail->AddReplyTo('name@yourdomain.com', 'First Last');
$mail->Subject = 'Your Resume from ResumeBeacon.com';
$mail->AltBody = 'To view the message, please use an HTML compatible email viewer!'; // optional - MsgHTML will create an alternate automatically
$mail->MsgHTML("This is a test");
//$mail->MsgHTML(file_get_contents('contents.html'));
//$mail->AddAttachment('images/phpmailer.gif'); // attachment
//$mail->AddAttachment('images/phpmailer_mini.gif'); // attachment
$mail->Send();
echo "Message Sent OK</p>\n";
} catch (phpmailerException $e) {
echo $e->errorMessage(); //Pretty error messages from PHPMailer
} catch (Exception $e) {
echo $e->getMessage(); //Boring error messages from anything else!
}
}
}