| Total Complexity | 76 |
| Total Lines | 787 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
Complex classes like ApplicationByJobController 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 ApplicationByJobController, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 28 | class ApplicationByJobController extends Controller |
||
| 29 | { |
||
| 30 | /** |
||
| 31 | * Display a listing of the applications for given jobPoster. |
||
| 32 | * |
||
| 33 | * @param \App\Models\JobPoster $jobPoster Incoming JobPoster object. |
||
| 34 | * @return \Illuminate\Http\Response |
||
| 35 | */ |
||
| 36 | public function index(JobPoster $jobPoster) |
||
| 37 | { |
||
| 38 | $applications = $jobPoster->submitted_applications() |
||
| 39 | ->with([ |
||
| 40 | 'veteran_status', |
||
| 41 | 'citizenship_declaration', |
||
| 42 | 'application_review', |
||
| 43 | 'applicant.user', |
||
| 44 | 'job_poster.criteria', |
||
| 45 | ]) |
||
| 46 | ->get(); |
||
| 47 | return view('manager/review_applications', [ |
||
|
|
|||
| 48 | // Localization Strings. |
||
| 49 | 'jobs_l10n' => Lang::get('manager/job_index'), |
||
| 50 | // Data. |
||
| 51 | 'job' => new JsonResource($jobPoster), |
||
| 52 | 'is_hr_portal' => WhichPortal::isHrPortal(), |
||
| 53 | 'applications' => $applications, |
||
| 54 | 'review_statuses' => ReviewStatus::all() |
||
| 55 | ]); |
||
| 56 | } |
||
| 57 | |||
| 58 | /** |
||
| 59 | * Return the current applicant's application for a given Job Poster. |
||
| 60 | * |
||
| 61 | * @param \App\Models\JobPoster $jobPoster Incoming JobPoster object. |
||
| 62 | * @return mixed|\App\Models\JobApplication |
||
| 63 | */ |
||
| 64 | protected function getApplicationFromJob(JobPoster $jobPoster) |
||
| 65 | { |
||
| 66 | $application = JobApplication::where('applicant_id', Auth::user()->applicant->id) |
||
| 67 | ->where('job_poster_id', $jobPoster->id)->first(); |
||
| 68 | if ($application == null) { |
||
| 69 | $application = new JobApplication(); |
||
| 70 | $application->job_poster_id = $jobPoster->id; |
||
| 71 | $application->applicant_id = Auth::user()->applicant->id; |
||
| 72 | $application->application_status_id = ApplicationStatus::where('name', 'draft')->firstOrFail()->id; |
||
| 73 | $application->save(); |
||
| 74 | } |
||
| 75 | return $application; |
||
| 76 | } |
||
| 77 | |||
| 78 | /** |
||
| 79 | * Show the form for editing Application basics for the specified job. |
||
| 80 | * |
||
| 81 | * @param \App\Models\JobPoster $jobPoster Incoming Job Poster object. |
||
| 82 | * @return \Illuminate\Http\Response |
||
| 83 | */ |
||
| 84 | public function editBasics(JobPoster $jobPoster) |
||
| 85 | { |
||
| 86 | $applicant = Auth::user()->applicant; |
||
| 87 | $application = $this->getApplicationFromJob($jobPoster); |
||
| 88 | |||
| 89 | // Ensure user has permissions to view and update application. |
||
| 90 | $this->authorize('view', $application); |
||
| 91 | $this->authorize('update', $application); |
||
| 92 | |||
| 93 | return view( |
||
| 94 | 'applicant/application_post_01', |
||
| 95 | [ |
||
| 96 | // Application Template Data. |
||
| 97 | 'application_step' => 1, |
||
| 98 | 'application_template' => Lang::get('applicant/application_template'), |
||
| 99 | 'language_options' => PreferredLanguage::all(), |
||
| 100 | 'citizenship_options' => CitizenshipDeclaration::all(), |
||
| 101 | 'veteran_options' => VeteranStatus::all(), |
||
| 102 | 'preferred_language_template' => Lang::get('common/preferred_language'), |
||
| 103 | 'citizenship_declaration_template' => Lang::get('common/citizenship_declaration'), |
||
| 104 | 'veteran_status_template' => Lang::get('common/veteran_status'), |
||
| 105 | // Job Data. |
||
| 106 | 'job' => $jobPoster, |
||
| 107 | // Applicant Data. |
||
| 108 | 'applicant' => $applicant, |
||
| 109 | 'job_application' => $application, |
||
| 110 | // Submission. |
||
| 111 | 'form_submit_action' => route('job.application.update.1', $jobPoster) |
||
| 112 | ] |
||
| 113 | ); |
||
| 114 | } |
||
| 115 | |||
| 116 | /** |
||
| 117 | * Show the form for editing Application Experience for the specified job. |
||
| 118 | * |
||
| 119 | * @param \App\Models\JobPoster $jobPoster Incoming Job Poster object. |
||
| 120 | * @return \Illuminate\Http\Response |
||
| 121 | */ |
||
| 122 | public function editExperience(JobPoster $jobPoster) |
||
| 144 | ] |
||
| 145 | ); |
||
| 146 | } |
||
| 147 | |||
| 148 | /** |
||
| 149 | * Show the form for editing Application Essential Skills for the specified job. |
||
| 150 | * |
||
| 151 | * @param \App\Models\JobPoster $jobPoster Incoming Job Poster object. |
||
| 152 | * @return \Illuminate\Http\Response |
||
| 153 | */ |
||
| 154 | public function editEssentialSkills(JobPoster $jobPoster) |
||
| 155 | { |
||
| 156 | $applicant = Auth::user()->applicant; |
||
| 157 | $application = $this->getApplicationFromJob($jobPoster); |
||
| 158 | |||
| 159 | // Ensure user has permissions to view and update application. |
||
| 160 | $this->authorize('view', $application); |
||
| 161 | $this->authorize('update', $application); |
||
| 162 | |||
| 163 | $criteria = [ |
||
| 164 | 'essential' => $jobPoster->criteria->filter(function ($value, $key) { |
||
| 165 | return $value->criteria_type->name == 'essential'; |
||
| 166 | }), |
||
| 167 | 'asset' => $jobPoster->criteria->filter(function ($value, $key) { |
||
| 168 | return $value->criteria_type->name == 'asset'; |
||
| 169 | }), |
||
| 170 | ]; |
||
| 171 | |||
| 172 | return view( |
||
| 173 | 'applicant/application_post_03', |
||
| 174 | [ |
||
| 175 | // Application Template Data. |
||
| 176 | 'application_step' => 3, |
||
| 177 | 'application_template' => Lang::get('applicant/application_template'), |
||
| 178 | // Job Data. |
||
| 179 | 'job' => $jobPoster, |
||
| 180 | // Skills Data. |
||
| 181 | 'skills' => Skill::all(), |
||
| 182 | 'skill_template' => Lang::get('common/skills'), |
||
| 183 | 'criteria' => $criteria, |
||
| 184 | // Applicant Data. |
||
| 185 | 'applicant' => $applicant, |
||
| 186 | 'job_application' => $application, |
||
| 187 | // Submission. |
||
| 188 | 'form_submit_action' => route('job.application.update.3', $jobPoster) |
||
| 189 | ] |
||
| 190 | ); |
||
| 191 | } |
||
| 192 | |||
| 193 | /** |
||
| 194 | * Show the form for editing Application Asset Skills for the specified job. |
||
| 195 | * |
||
| 196 | * @param \App\Models\JobPoster $jobPoster Incoming Job Poster object. |
||
| 197 | * @return \Illuminate\Http\Response |
||
| 198 | */ |
||
| 199 | public function editAssetSkills(JobPoster $jobPoster) |
||
| 234 | ] |
||
| 235 | ); |
||
| 236 | } |
||
| 237 | |||
| 238 | /** |
||
| 239 | * Show the Application Preview for the application for the specified job. |
||
| 240 | * |
||
| 241 | * @param \App\Models\JobPoster $jobPoster Incoming Job Poster object. |
||
| 242 | * @return \Illuminate\Http\Response |
||
| 243 | */ |
||
| 244 | public function preview(JobPoster $jobPoster) |
||
| 245 | { |
||
| 246 | $applicant = Auth::user()->applicant; |
||
| 247 | $application = $this->getApplicationFromJob($jobPoster); |
||
| 248 | |||
| 249 | $this->authorize('view', $application); |
||
| 250 | $criteria = [ |
||
| 251 | 'essential' => $jobPoster->criteria->filter(function ($value, $key) { |
||
| 252 | return $value->criteria_type->name == 'essential'; |
||
| 253 | }), |
||
| 254 | 'asset' => $jobPoster->criteria->filter(function ($value, $key) { |
||
| 255 | return $value->criteria_type->name == 'asset'; |
||
| 256 | }), |
||
| 257 | ]; |
||
| 258 | $skillDeclarations = $application->isDraft() |
||
| 259 | ? $applicant->skill_declarations |
||
| 260 | : $application->skill_declarations; |
||
| 261 | $degrees = $application->isDraft() |
||
| 262 | ? $applicant->degrees |
||
| 263 | : $application->degrees; |
||
| 264 | $courses = $application->isDraft() |
||
| 265 | ? $applicant->courses |
||
| 266 | : $application->courses; |
||
| 267 | $work_experiences = $application->isDraft() |
||
| 268 | ? $applicant->work_experiences |
||
| 269 | : $application->work_experiences; |
||
| 270 | |||
| 271 | return view( |
||
| 272 | 'applicant/application_post_05', |
||
| 273 | [ |
||
| 274 | // Application Template Data. |
||
| 275 | 'application_step' => 5, |
||
| 276 | 'application_template' => Lang::get('applicant/application_template'), |
||
| 277 | 'preferred_language_template' => Lang::get('common/preferred_language'), |
||
| 278 | 'citizenship_declaration_template' => Lang::get('common/citizenship_declaration'), |
||
| 279 | 'veteran_status_template' => Lang::get('common/veteran_status'), |
||
| 280 | // Job Data. |
||
| 281 | 'job' => $jobPoster, |
||
| 282 | // Skills Data. |
||
| 283 | 'skills' => Skill::all(), |
||
| 284 | 'skill_template' => Lang::get('common/skills'), |
||
| 285 | 'criteria' => $criteria, |
||
| 286 | // Applicant Data. |
||
| 287 | 'applicant' => $applicant, |
||
| 288 | 'job_application' => $application, |
||
| 289 | 'skill_declarations' => $skillDeclarations, |
||
| 290 | 'degrees' => $degrees, |
||
| 291 | 'courses' => $courses, |
||
| 292 | 'work_experiences' => $work_experiences, |
||
| 293 | 'is_manager_view' => WhichPortal::isManagerPortal(), |
||
| 294 | 'is_draft' => $application->application_status->name == 'draft', |
||
| 295 | ] |
||
| 296 | ); |
||
| 297 | } |
||
| 298 | |||
| 299 | /** |
||
| 300 | * Show the Confirm Submit page for the application for the specified job. |
||
| 301 | * |
||
| 302 | * @param \App\Models\JobPoster $jobPoster Incoming Job Poster object. |
||
| 303 | * @return \Illuminate\Http\Response |
||
| 304 | */ |
||
| 305 | public function confirm(JobPoster $jobPoster) |
||
| 306 | { |
||
| 307 | $applicant = Auth::user()->applicant; |
||
| 308 | $application = $this->getApplicationFromJob($jobPoster); |
||
| 309 | |||
| 310 | $this->authorize('update', $application); |
||
| 311 | |||
| 312 | return view( |
||
| 313 | 'applicant/application_post_06', |
||
| 314 | [ |
||
| 315 | // Application Template Data. |
||
| 316 | 'application_step' => 6, |
||
| 317 | 'application_template' => Lang::get('applicant/application_template'), |
||
| 318 | // Used by tracker partial. |
||
| 319 | 'job' => $jobPoster, |
||
| 320 | 'job_application' => $application, |
||
| 321 | // Submission. |
||
| 322 | 'form_submit_action' => route('job.application.submit', $jobPoster) |
||
| 323 | ] |
||
| 324 | ); |
||
| 325 | } |
||
| 326 | |||
| 327 | /** |
||
| 328 | * Show the application submission information. |
||
| 329 | * |
||
| 330 | * @param \App\Models\JobPoster $jobPoster Incoming Job Poster object. |
||
| 331 | * @return \Illuminate\Http\Response |
||
| 332 | */ |
||
| 333 | public function complete(JobPoster $jobPoster) |
||
| 354 | ] |
||
| 355 | ); |
||
| 356 | } |
||
| 357 | |||
| 358 | /** |
||
| 359 | * Update the Application Basics in storage for the specified job. |
||
| 360 | * |
||
| 361 | * @param \Illuminate\Http\Request $request Incoming Request object. |
||
| 362 | * @param \App\Models\JobPoster $jobPoster Incoming Job Poster object. |
||
| 363 | * @return \Illuminate\Http\Response |
||
| 364 | */ |
||
| 365 | public function updateBasics(Request $request, JobPoster $jobPoster) |
||
| 366 | { |
||
| 367 | $applicant = Auth::user()->applicant; |
||
| 368 | $application = $this->getApplicationFromJob($jobPoster); |
||
| 369 | |||
| 370 | // Ensure user has permissions to update this application. |
||
| 371 | $this->authorize('update', $application); |
||
| 372 | |||
| 373 | $application->fill([ |
||
| 374 | 'citizenship_declaration_id' => $request->input('citizenship_declaration_id'), |
||
| 375 | 'veteran_status_id' => $request->input('veteran_status_id'), |
||
| 376 | 'preferred_language_id' => $request->input('preferred_language_id'), |
||
| 377 | 'language_requirement_confirmed' => $request->input('language_requirement_confirmed') |
||
| 378 | ]); |
||
| 379 | $application->save(); |
||
| 380 | |||
| 381 | $questions = $jobPoster->job_poster_questions; |
||
| 382 | $questionsInput = $request->input('questions'); |
||
| 383 | foreach ($questions as $question) { |
||
| 384 | $answer = null; |
||
| 385 | if (isset($questionsInput[$question->id])) { |
||
| 386 | $answer = $questionsInput[$question->id]; |
||
| 387 | } |
||
| 388 | $answerObj = $application->job_application_answers |
||
| 389 | ->firstWhere('job_poster_question_id', $question->id); |
||
| 390 | if ($answerObj == null) { |
||
| 391 | $answerObj = new JobApplicationAnswer(); |
||
| 392 | $answerObj->job_poster_question_id = $question->id; |
||
| 393 | $answerObj->job_application_id = $application->id; |
||
| 394 | } |
||
| 395 | $answerObj->answer = $answer; |
||
| 396 | $answerObj->save(); |
||
| 397 | } |
||
| 398 | |||
| 399 | // Redirect to correct page. |
||
| 400 | switch ($request->input('submit')) { |
||
| 401 | case 'save_and_quit': |
||
| 402 | case 'previous': |
||
| 403 | return redirect()->route('applications.index'); |
||
| 404 | break; |
||
| 405 | case 'save_and_continue': |
||
| 406 | case 'next': |
||
| 407 | return redirect()->route('job.application.edit.2', $jobPoster); |
||
| 408 | break; |
||
| 409 | default: |
||
| 410 | return redirect()->back()->withInput(); |
||
| 411 | } |
||
| 412 | } |
||
| 413 | |||
| 414 | /** |
||
| 415 | * Update the Application Basics in storage for the specified job. |
||
| 416 | * |
||
| 417 | * @param \Illuminate\Http\Request $request Incoming Request object. |
||
| 418 | * @param \App\Models\JobPoster $jobPoster Incoming Job Poster object. |
||
| 419 | * @return \Illuminate\Http\Response |
||
| 420 | */ |
||
| 421 | public function updateExperience(Request $request, JobPoster $jobPoster) |
||
| 422 | { |
||
| 423 | $applicant = Auth::user()->applicant; |
||
| 424 | $application = $this->getApplicationFromJob($jobPoster); |
||
| 425 | |||
| 426 | // Ensure user has permissions to update this application. |
||
| 427 | $this->authorize('update', $application); |
||
| 428 | |||
| 429 | // Record that the user has saved their experience for this application. |
||
| 430 | $application->experience_saved = true; |
||
| 431 | $application->save(); |
||
| 432 | |||
| 433 | $degrees = $request->input('degrees'); |
||
| 434 | |||
| 435 | $request->validate([ |
||
| 436 | 'degrees.new.*.degree_type_id' => 'required', |
||
| 437 | 'degrees.new.*.area_of_study' => 'required', |
||
| 438 | 'degrees.new.*.institution' => 'required', |
||
| 439 | 'degrees.new.*.thesis' => 'nullable', |
||
| 440 | 'degrees.new.*.start_date' => 'required|date', |
||
| 441 | 'degrees.new.*.end_date' => 'required|date', |
||
| 442 | 'degrees.new.*.blockcert_url' => 'nullable|string', |
||
| 443 | ]); |
||
| 444 | |||
| 445 | // Save new degrees. |
||
| 446 | if (isset($degrees['new'])) { |
||
| 447 | foreach ($degrees['new'] as $degreeInput) { |
||
| 448 | $degree = new Degree(); |
||
| 449 | $degree->fill([ |
||
| 450 | 'degree_type_id' => $degreeInput['degree_type_id'], |
||
| 451 | 'area_of_study' => $degreeInput['area_of_study'], |
||
| 452 | 'institution' => $degreeInput['institution'], |
||
| 453 | 'thesis' => $degreeInput['thesis'], |
||
| 454 | 'start_date' => $degreeInput['start_date'], |
||
| 455 | 'end_date' => $degreeInput['end_date'], |
||
| 456 | 'blockcert_url' => $degreeInput['blockcert_url'], |
||
| 457 | ]); |
||
| 458 | $applicant->degrees()->save($degree); |
||
| 459 | } |
||
| 460 | } |
||
| 461 | |||
| 462 | // Update old degrees. |
||
| 463 | if (isset($degrees['old'])) { |
||
| 464 | foreach ($degrees['old'] as $id => $degreeInput) { |
||
| 465 | // Ensure this degree belongs to this applicant. |
||
| 466 | $degree = $applicant->degrees->firstWhere('id', $id); |
||
| 467 | if ($degree != null) { |
||
| 468 | $degree->fill([ |
||
| 469 | 'degree_type_id' => $degreeInput['degree_type_id'], |
||
| 470 | 'area_of_study' => $degreeInput['area_of_study'], |
||
| 471 | 'institution' => $degreeInput['institution'], |
||
| 472 | 'thesis' => $degreeInput['thesis'], |
||
| 473 | 'start_date' => $degreeInput['start_date'], |
||
| 474 | 'end_date' => $degreeInput['end_date'], |
||
| 475 | 'blockcert_url' => $degreeInput['blockcert_url'], |
||
| 476 | ]); |
||
| 477 | $degree->save(); |
||
| 478 | } else { |
||
| 479 | Log::warning("Applicant $applicant->id attempted to update degree with invalid id: $id"); |
||
| 480 | } |
||
| 481 | } |
||
| 482 | } |
||
| 483 | |||
| 484 | $courses = $request->input('courses'); |
||
| 485 | |||
| 486 | $request->validate([ |
||
| 487 | 'courses.new.*.name' => 'required', |
||
| 488 | 'courses.new.*.institution' => 'required', |
||
| 489 | 'courses.new.*.course_status_id' => 'required', |
||
| 490 | 'courses.new.*.start_date' => 'required|date', |
||
| 491 | 'courses.new.*.end_date' => 'required|date', |
||
| 492 | ]); |
||
| 493 | |||
| 494 | // Save new courses. |
||
| 495 | if (isset($courses['new'])) { |
||
| 496 | foreach ($courses['new'] as $courseInput) { |
||
| 497 | $course = new Course(); |
||
| 498 | $course->fill([ |
||
| 499 | 'name' => $courseInput['name'], |
||
| 500 | 'institution' => $courseInput['institution'], |
||
| 501 | 'course_status_id' => $courseInput['course_status_id'], |
||
| 502 | 'start_date' => $courseInput['start_date'], |
||
| 503 | 'end_date' => $courseInput['end_date'] |
||
| 504 | ]); |
||
| 505 | $applicant->courses()->save($course); |
||
| 506 | } |
||
| 507 | } |
||
| 508 | |||
| 509 | // Update old courses. |
||
| 510 | if (isset($courses['old'])) { |
||
| 511 | foreach ($courses['old'] as $id => $courseInput) { |
||
| 512 | // Ensure this course belongs to this applicant. |
||
| 513 | $course = $applicant->courses->firstWhere('id', $id); |
||
| 514 | if ($course != null) { |
||
| 515 | $course->fill([ |
||
| 516 | 'name' => $courseInput['name'], |
||
| 517 | 'institution' => $courseInput['institution'], |
||
| 518 | 'course_status_id' => $courseInput['course_status_id'], |
||
| 519 | 'start_date' => $courseInput['start_date'], |
||
| 520 | 'end_date' => $courseInput['end_date'] |
||
| 521 | ]); |
||
| 522 | $course->save(); |
||
| 523 | } else { |
||
| 524 | Log::warning("Applicant $applicant->id attempted to update course with invalid id: $id"); |
||
| 525 | } |
||
| 526 | } |
||
| 527 | } |
||
| 528 | |||
| 529 | $work_experiences = $request->input('work_experiences'); |
||
| 530 | |||
| 531 | $request->validate([ |
||
| 532 | 'work_experiences.new.*.role' => 'required', |
||
| 533 | 'work_experiences.new.*.company' => 'required', |
||
| 534 | 'work_experiences.new.*.description' => 'required', |
||
| 535 | 'work_experiences.new.*.start_date' => 'required|date', |
||
| 536 | 'work_experiences.new.*.end_date' => 'required|date', |
||
| 537 | ]); |
||
| 538 | |||
| 539 | // Save new work_experiences. |
||
| 540 | if (isset($work_experiences['new'])) { |
||
| 541 | foreach ($work_experiences['new'] as $workExperienceInput) { |
||
| 542 | $workExperience = new WorkExperience(); |
||
| 543 | $workExperience->fill([ |
||
| 544 | 'role' => $workExperienceInput['role'], |
||
| 545 | 'company' => $workExperienceInput['company'], |
||
| 546 | 'description' => $workExperienceInput['description'], |
||
| 547 | 'start_date' => $workExperienceInput['start_date'], |
||
| 548 | 'end_date' => $workExperienceInput['end_date'] |
||
| 549 | ]); |
||
| 550 | $applicant->work_experiences()->save($workExperience); |
||
| 551 | } |
||
| 552 | } |
||
| 553 | |||
| 554 | // Update old work_experiences. |
||
| 555 | if (isset($work_experiences['old'])) { |
||
| 556 | foreach ($work_experiences['old'] as $id => $workExperienceInput) { |
||
| 557 | // Ensure this work_experience belongs to this applicant. |
||
| 558 | $workExperience = $applicant->work_experiences->firstWhere('id', $id); |
||
| 559 | if ($workExperience != null) { |
||
| 560 | $workExperience->fill([ |
||
| 561 | 'role' => $workExperienceInput['role'], |
||
| 562 | 'company' => $workExperienceInput['company'], |
||
| 563 | 'description' => $workExperienceInput['description'], |
||
| 564 | 'start_date' => $workExperienceInput['start_date'], |
||
| 565 | 'end_date' => $workExperienceInput['end_date'] |
||
| 566 | ]); |
||
| 567 | $workExperience->save(); |
||
| 568 | } else { |
||
| 569 | Log::warning("Applicant $applicant->id attempted to update work_experience with invalid id: $id"); |
||
| 570 | } |
||
| 571 | } |
||
| 572 | } |
||
| 573 | |||
| 574 | // Redirect to correct page. |
||
| 575 | switch ($request->input('submit')) { |
||
| 576 | case 'save_and_quit': |
||
| 577 | return redirect()->route('applications.index'); |
||
| 578 | break; |
||
| 579 | case 'save_and_continue': |
||
| 580 | case 'next': |
||
| 581 | return redirect()->route('job.application.edit.3', $jobPoster); |
||
| 582 | break; |
||
| 583 | case 'previous': |
||
| 584 | return redirect()->route('job.application.edit.1', $jobPoster); |
||
| 585 | break; |
||
| 586 | default: |
||
| 587 | return redirect()->back()->withInput(); |
||
| 588 | } |
||
| 589 | } |
||
| 590 | |||
| 591 | /** |
||
| 592 | * Update the Application Essential Skills in storage for the specified job. |
||
| 593 | * |
||
| 594 | * @param \Illuminate\Http\Request $request Incoming Request object. |
||
| 595 | * @param \App\Models\JobPoster $jobPoster Incoming Job Poster object. |
||
| 596 | * @return \Illuminate\Http\Response |
||
| 597 | */ |
||
| 598 | public function updateEssentialSkills(Request $request, JobPoster $jobPoster) |
||
| 671 | } |
||
| 672 | } |
||
| 673 | |||
| 674 | /** |
||
| 675 | * Update the Application Asset Skills in storage for the specified job. |
||
| 676 | * |
||
| 677 | * @param \Illuminate\Http\Request $request Incoming Request object. |
||
| 678 | * @param \App\Models\JobPoster $jobPoster Incoming Job Poster object. |
||
| 679 | * @return \Illuminate\Http\Response |
||
| 680 | */ |
||
| 681 | public function updateAssetSkills(Request $request, JobPoster $jobPoster) |
||
| 682 | { |
||
| 683 | $applicant = Auth::user()->applicant; |
||
| 684 | $application = $this->getApplicationFromJob($jobPoster); |
||
| 685 | |||
| 686 | // Ensure user has permissions to update this application. |
||
| 687 | $this->authorize('update', $application); |
||
| 688 | |||
| 689 | $skillDeclarations = $request->input('skill_declarations'); |
||
| 690 | $claimedStatusId = SkillStatus::where('name', 'claimed')->firstOrFail()->id; |
||
| 691 | |||
| 692 | // Save new skill declarations. |
||
| 693 | if (isset($skillDeclarations['new'])) { |
||
| 694 | foreach ($skillDeclarations['new'] as $skillType => $typeInput) { |
||
| 695 | foreach ($typeInput as $criterion_id => $skillDeclarationInput) { |
||
| 696 | $skillDeclaration = new SkillDeclaration(); |
||
| 697 | $skillDeclaration->skill_id = Criteria::find($criterion_id)->skill->id; |
||
| 698 | $skillDeclaration->skill_status_id = $claimedStatusId; |
||
| 699 | $skillDeclaration->fill([ |
||
| 700 | 'description' => $skillDeclarationInput['description'], |
||
| 701 | 'skill_level_id' => isset($skillDeclarationInput['skill_level_id']) ? $skillDeclarationInput['skill_level_id'] : null, |
||
| 702 | ]); |
||
| 703 | $applicant->skill_declarations()->save($skillDeclaration); |
||
| 704 | |||
| 705 | $referenceIds = $this->getRelativeIds($skillDeclarationInput, 'references'); |
||
| 706 | $skillDeclaration->references()->sync($referenceIds); |
||
| 707 | |||
| 708 | $sampleIds = $this->getRelativeIds($skillDeclarationInput, 'samples'); |
||
| 709 | $skillDeclaration->work_samples()->sync($sampleIds); |
||
| 710 | } |
||
| 711 | } |
||
| 712 | } |
||
| 713 | |||
| 714 | // Update old declarations. |
||
| 715 | if (isset($skillDeclarations['old'])) { |
||
| 716 | foreach ($skillDeclarations['old'] as $skillType => $typeInput) { |
||
| 717 | foreach ($typeInput as $id => $skillDeclarationInput) { |
||
| 718 | // Ensure this declaration belongs to this applicant. |
||
| 719 | $skillDeclaration = $applicant->skill_declarations->firstWhere('id', $id); |
||
| 720 | if ($skillDeclaration != null) { |
||
| 721 | // skill_id and skill_status cannot be changed. |
||
| 722 | $skillDeclaration->fill([ |
||
| 723 | 'description' => $skillDeclarationInput['description'], |
||
| 724 | 'skill_level_id' => isset($skillDeclarationInput['skill_level_id']) ? $skillDeclarationInput['skill_level_id'] : null, |
||
| 725 | ]); |
||
| 726 | $skillDeclaration->save(); |
||
| 727 | |||
| 728 | $referenceIds = $this->getRelativeIds($skillDeclarationInput, 'references'); |
||
| 729 | $skillDeclaration->references()->sync($referenceIds); |
||
| 730 | |||
| 731 | $sampleIds = $this->getRelativeIds($skillDeclarationInput, 'samples'); |
||
| 732 | $skillDeclaration->work_samples()->sync($sampleIds); |
||
| 733 | } else { |
||
| 734 | Log::warning("Applicant $applicant->id attempted to update skill declaration with invalid id: $id"); |
||
| 735 | } |
||
| 736 | } |
||
| 737 | } |
||
| 738 | } |
||
| 739 | |||
| 740 | // Redirect to correct page. |
||
| 741 | switch ($request->input('submit')) { |
||
| 742 | case 'save_and_quit': |
||
| 743 | return redirect()->route('applications.index'); |
||
| 744 | break; |
||
| 745 | case 'save_and_continue': |
||
| 746 | case 'next': |
||
| 747 | return redirect()->route('job.application.edit.5', $jobPoster); |
||
| 748 | break; |
||
| 749 | case 'previous': |
||
| 750 | return redirect()->route('job.application.edit.3', $jobPoster); |
||
| 751 | break; |
||
| 752 | default: |
||
| 753 | return redirect()->back()->withInput(); |
||
| 754 | } |
||
| 755 | } |
||
| 756 | |||
| 757 | /** |
||
| 758 | * Submit the Application for the specified job. |
||
| 759 | * |
||
| 760 | * @param \Illuminate\Http\Request $request Incoming Request object. |
||
| 761 | * @param \App\Models\JobPoster $jobPoster Incoming Job Poster object. |
||
| 762 | * @return \Illuminate\Http\Response |
||
| 763 | */ |
||
| 764 | public function submit(Request $request, JobPoster $jobPoster) |
||
| 815 | } |
||
| 816 | } |
||
| 817 | } |
||
| 818 |