Total Complexity | 52 |
Total Lines | 611 |
Duplicated Lines | 0 % |
Coverage | 72.89% |
Changes | 0 |
Complex classes like JobController often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use JobController, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
36 | class JobController extends Controller |
||
37 | { |
||
38 | /** |
||
39 | * Display a listing of JobPosters. |
||
40 | * |
||
41 | * @return \Illuminate\View\View|\Illuminate\Contracts\View\Factory |
||
42 | */ |
||
43 | public function index() |
||
44 | { |
||
45 | $now = Carbon::now(); |
||
46 | |||
47 | // Find published jobs that are currently open for applications. |
||
48 | // Eager load required relationships: Department, Province, JobTerm. |
||
49 | // Eager load the count of submitted applications, to prevent the relationship |
||
50 | // from being actually loaded and firing off events. |
||
51 | $jobs = JobPoster::where('open_date_time', '<=', $now) |
||
52 | ->where('close_date_time', '>=', $now) |
||
53 | ->where('published', true) |
||
54 | ->with([ |
||
55 | 'department', |
||
56 | 'province', |
||
57 | 'job_term', |
||
58 | ]) |
||
59 | ->withCount([ |
||
60 | 'submitted_applications', |
||
61 | ]) |
||
62 | ->get(); |
||
63 | return view('applicant/job_index', [ |
||
64 | 'job_index' => Lang::get('applicant/job_index'), |
||
65 | 'jobs' => $jobs |
||
66 | ]); |
||
67 | } |
||
68 | |||
69 | /** |
||
70 | * Display a listing of a manager's JobPosters. |
||
71 | * |
||
72 | * @return \Illuminate\View\View|\Illuminate\Contracts\View\Factory |
||
73 | */ |
||
74 | 1 | public function managerIndex() |
|
75 | { |
||
76 | 1 | $manager = Auth::user()->manager; |
|
|
|||
77 | 1 | $jobs = JobPoster::where('manager_id', $manager->id) |
|
78 | 1 | ->withCount('submitted_applications') |
|
79 | 1 | ->get(); |
|
80 | |||
81 | 1 | return view('manager/job_index', [ |
|
82 | /*Localization Strings*/ |
||
83 | 1 | 'jobs_l10n' => Lang::get('manager/job_index'), |
|
84 | |||
85 | /* Data */ |
||
86 | 1 | 'jobs' => $jobs, |
|
87 | ]); |
||
88 | } |
||
89 | |||
90 | /** |
||
91 | * Submit the Job Poster for review. |
||
92 | * |
||
93 | * @param \Illuminate\Http\Request $request Incoming request object. |
||
94 | * @param \App\Models\JobPoster $jobPoster Job Poster object. |
||
95 | * |
||
96 | * @return \Illuminate\View\View|\Illuminate\Contracts\View\Factory |
||
97 | */ |
||
98 | 1 | public function submitForReview(Request $request, JobPoster $jobPoster) |
|
99 | { |
||
100 | // Update review request timestamp |
||
101 | 1 | $jobPoster->review_requested_at = new Date(); |
|
102 | 1 | $jobPoster->save(); |
|
103 | |||
104 | // Refresh model instance with updated DB values. |
||
105 | 1 | $jobPoster = JobPoster::withCount('submitted_applications')->where('id', $jobPoster->id)->first(); |
|
106 | |||
107 | // Send email |
||
108 | 1 | $reviewer_email = config('mail.reviewer_email'); |
|
109 | 1 | if (isset($reviewer_email)) { |
|
110 | 1 | Mail::to($reviewer_email)->send(new JobPosterReviewRequested($jobPoster, Auth::user())); |
|
111 | } else { |
||
112 | Log::error('The reviewer email environment variable is not set.'); |
||
113 | } |
||
114 | |||
115 | 1 | return view('manager/job_index/job', [ |
|
116 | /*Localization Strings*/ |
||
117 | 1 | 'jobs_l10n' => Lang::get('manager/job_index'), |
|
118 | 1 | 'job' => $jobPoster |
|
119 | ]); |
||
120 | } |
||
121 | |||
122 | /** |
||
123 | * Delete a draft Job Poster. |
||
124 | * |
||
125 | * @param \Illuminate\Http\Request $request Incoming request object. |
||
126 | * @param \App\Models\JobPoster $jobPoster Job Poster object. |
||
127 | * |
||
128 | * @return void |
||
129 | */ |
||
130 | public function destroy(Request $request, JobPoster $jobPoster) : void |
||
131 | { |
||
132 | $jobPoster->delete(); |
||
133 | } |
||
134 | |||
135 | /** |
||
136 | * Display the specified job poster. |
||
137 | * |
||
138 | * @param \Illuminate\Http\Request $request Incoming request object. |
||
139 | * @param \App\Models\JobPoster $jobPoster Job Poster object. |
||
140 | * |
||
141 | * @return \Illuminate\View\View|\Illuminate\Contracts\View\Factory |
||
142 | */ |
||
143 | 4 | public function show(Request $request, JobPoster $jobPoster) |
|
220 | ] |
||
221 | ); |
||
222 | } |
||
223 | |||
224 | /** |
||
225 | * Create a blank job poster for the specified manager |
||
226 | * |
||
227 | * @param Manager $manager |
||
1 ignored issue
–
show
|
|||
228 | * @return \Illuminate\View\View|\Illuminate\Contracts\View\Factory Job Create view |
||
229 | */ |
||
230 | 2 | public function createAsManager(Manager $manager) |
|
256 | } |
||
257 | |||
258 | /** |
||
259 | * Display the form for creating a new Job Poster |
||
260 | * |
||
261 | * @param \Illuminate\Http\Request $request Incoming request object. |
||
262 | * |
||
263 | * @return \Illuminate\View\View|\Illuminate\Contracts\View\Factory Job Create view |
||
264 | */ |
||
265 | public function create(Request $request) |
||
268 | } |
||
269 | |||
270 | /** |
||
271 | * Display the form for editing an existing Job Poster |
||
272 | * |
||
273 | * @param \Illuminate\Http\Request $request Incoming request object. |
||
274 | * @param \App\Models\JobPoster $jobPoster Job Poster object. |
||
275 | * |
||
276 | * @return \Illuminate\View\View|\Illuminate\Contracts\View\Factory Job Create view |
||
277 | */ |
||
278 | 1 | public function edit(Request $request, JobPoster $jobPoster) |
|
279 | { |
||
280 | 1 | return $this->populateCreateView($request, $jobPoster); |
|
281 | } |
||
282 | |||
283 | /** |
||
284 | * Get the manager from the request object and check if creating or editing |
||
285 | * |
||
286 | * @param \Illuminate\Http\Request $request Incoming request object. |
||
287 | * @param \App\Models\JobPoster $jobPoster Optional Job Poster object. |
||
288 | * |
||
289 | * @return \Illuminate\View\View|\Illuminate\Contracts\View\Factory Job Create view |
||
290 | */ |
||
291 | 1 | public function populateCreateView(Request $request, JobPoster $jobPoster = null) |
|
393 | ] |
||
394 | ); |
||
395 | } |
||
396 | |||
397 | /** |
||
398 | * Create a new resource in storage |
||
399 | * |
||
400 | * @param \Illuminate\Http\Request $request Incoming request object. |
||
401 | * @param \App\Models\JobPoster $jobPoster Optional Job Poster object. |
||
402 | * |
||
403 | * @return \Illuminate\Routing\Redirector|\Illuminate\Http\RedirectResponse A redirect to the Job Index |
||
404 | */ |
||
405 | 3 | public function store(Request $request, JobPoster $jobPoster = null) |
|
434 | } |
||
435 | |||
436 | /** |
||
437 | * Fill Job Poster model's properties and save |
||
438 | * |
||
439 | * @param mixed[] $input Field values. |
||
440 | * @param \App\Models\JobPoster $jobPoster Job Poster object. |
||
441 | * |
||
442 | * @return void |
||
443 | */ |
||
444 | 3 | protected function fillAndSaveJobPoster(array $input, JobPoster $jobPoster) : void |
|
445 | { |
||
446 | 3 | $jobPoster->fill( |
|
447 | [ |
||
448 | 3 | 'job_term_id' => JobTerm::where('name', 'month')->firstOrFail()->id, |
|
449 | 3 | 'term_qty' => $input['term_qty'], |
|
450 | 3 | 'open_date_time' => ptDayStartToUtcTime($input['open_date']), |
|
451 | 3 | 'close_date_time' => ptDayEndToUtcTime($input['close_date']), |
|
452 | 3 | 'start_date_time' => ptDayStartToUtcTime($input['start_date']), |
|
453 | 3 | 'department_id' => $input['department'], |
|
454 | 3 | 'province_id' => $input['province'], |
|
455 | 3 | 'salary_min' => $input['salary_min'], |
|
456 | 3 | 'salary_max' => $input['salary_max'], |
|
457 | 3 | 'noc' => $input['noc'], |
|
458 | 3 | 'classification' => $input['classification'], |
|
459 | 3 | 'security_clearance_id' => $input['security_clearance'], |
|
460 | 3 | 'language_requirement_id' => $input['language_requirement'], |
|
461 | 3 | 'remote_work_allowed' => (isset($input['remote_work_allowed']) ? $input['remote_work_allowed'] : false), |
|
462 | 'en' => [ |
||
463 | 3 | 'city' => $input['city'], |
|
464 | 3 | 'title' => $input['title']['en'], |
|
465 | 3 | 'impact' => $input['impact']['en'], |
|
466 | 3 | 'branch' => $input['branch']['en'], |
|
467 | 3 | 'division' => $input['division']['en'], |
|
468 | 3 | 'education' => $input['education']['en'], |
|
469 | ], |
||
470 | 'fr' => [ |
||
471 | 3 | 'city' => $input['city'], |
|
472 | 3 | 'title' => $input['title']['fr'], |
|
473 | 3 | 'impact' => $input['impact']['fr'], |
|
474 | 3 | 'branch' => $input['branch']['fr'], |
|
475 | 3 | 'division' => $input['division']['fr'], |
|
476 | 3 | 'education' => $input['education']['fr'], |
|
477 | ], |
||
478 | ] |
||
479 | ); |
||
480 | 3 | $jobPoster->save(); |
|
481 | 3 | } |
|
482 | |||
483 | /** |
||
484 | * Fill Job Poster's tasks and save |
||
485 | * |
||
486 | * @param mixed[] $input Field values. |
||
487 | * @param \App\Models\JobPoster $jobPoster Job Poster object. |
||
488 | * @param boolean $replace Remove existing relationships. |
||
489 | * |
||
490 | * @return void |
||
491 | */ |
||
492 | 3 | protected function fillAndSaveJobPosterTasks(array $input, JobPoster $jobPoster, bool $replace) : void |
|
516 | } |
||
517 | } |
||
518 | |||
519 | /** |
||
520 | * Fill Job Poster's questions and save |
||
521 | * |
||
522 | * @param mixed[] $input Field values. |
||
523 | * @param \App\Models\JobPoster $jobPoster Job Poster object. |
||
524 | * @param boolean $replace Remove existing relationships. |
||
525 | * |
||
526 | * @return void |
||
527 | */ |
||
528 | 3 | protected function fillAndSaveJobPosterQuestions(array $input, JobPoster $jobPoster, bool $replace) : void |
|
529 | { |
||
530 | 3 | if ($replace) { |
|
531 | 3 | $jobPoster->job_poster_questions()->delete(); |
|
532 | } |
||
533 | |||
534 | 3 | if (!array_key_exists('question', $input) || !is_array($input['question'])) { |
|
535 | 3 | return; |
|
536 | } |
||
537 | |||
538 | foreach ($input['question'] as $question) { |
||
539 | $jobQuestion = new JobPosterQuestion(); |
||
540 | $jobQuestion->job_poster_id = $jobPoster->id; |
||
541 | $jobQuestion->fill( |
||
542 | [ |
||
543 | 'en' => [ |
||
544 | 'question' => $question['question']['en'], |
||
545 | 'description' => $question['description']['en'] |
||
546 | ], |
||
547 | 'fr' => [ |
||
548 | 'question' => $question['question']['fr'], |
||
549 | 'description' => $question['description']['fr'] |
||
550 | ] |
||
551 | ] |
||
552 | ); |
||
553 | $jobQuestion->save(); |
||
554 | } |
||
555 | } |
||
556 | |||
557 | /** |
||
558 | * Fill Job Poster's criteria and save |
||
559 | * |
||
560 | * @param mixed[] $input Field values. |
||
561 | * @param \App\Models\JobPoster $jobPoster Job Poster object. |
||
562 | * @param boolean $replace Remove existing relationships. |
||
563 | * |
||
564 | * @return void |
||
565 | */ |
||
566 | 3 | protected function fillAndSaveJobPosterCriteria(array $input, JobPoster $jobPoster, bool $replace) : void |
|
567 | { |
||
568 | 3 | if ($replace) { |
|
569 | 3 | $jobPoster->criteria()->delete(); |
|
570 | } |
||
571 | |||
572 | 3 | if (!array_key_exists('criteria', $input) || !is_array($input['criteria'])) { |
|
573 | 3 | return; |
|
574 | } |
||
575 | |||
576 | $criteria = $input['criteria']; |
||
577 | |||
578 | $combinedCriteria = []; |
||
579 | if (isset($criteria['old'])) { |
||
580 | $combinedCriteria = array_replace_recursive($combinedCriteria, $criteria['old']); |
||
581 | } |
||
582 | if (isset($criteria['new'])) { |
||
583 | $combinedCriteria = array_replace_recursive($combinedCriteria, $criteria['new']); |
||
584 | } |
||
585 | |||
586 | if (! empty($combinedCriteria)) { |
||
587 | foreach ($combinedCriteria as $criteriaType => $criteriaTypeInput) { |
||
588 | foreach ($criteriaTypeInput as $skillType => $skillTypeInput) { |
||
589 | foreach ($skillTypeInput as $criteriaInput) { |
||
590 | $criteria = new Criteria(); |
||
591 | $criteria->job_poster_id = $jobPoster->id; |
||
592 | $criteria->fill( |
||
593 | [ |
||
594 | 'criteria_type_id' => CriteriaType::where('name', $criteriaType)->firstOrFail()->id, |
||
595 | 'skill_id' => $criteriaInput['skill_id'], |
||
596 | 'skill_level_id' => $criteriaInput['skill_level_id'], |
||
597 | 'en' => [ |
||
598 | 'description' => $criteriaInput['description']['en'], |
||
599 | ], |
||
600 | 'fr' => [ |
||
601 | 'description' => $criteriaInput['description']['fr'], |
||
602 | ], |
||
603 | ] |
||
604 | ); |
||
605 | $criteria->save(); |
||
606 | } |
||
607 | } |
||
608 | } |
||
609 | } |
||
610 | } |
||
611 | |||
612 | /** |
||
613 | * Get the localized default questions and add them to an array. |
||
614 | * |
||
615 | * @return mixed[]|void |
||
616 | */ |
||
617 | 2 | protected function populateDefaultQuestions() |
|
647 | } |
||
648 | } |
||
649 |