Blame view

app/Classes/Tools.php 2.01 KB
eb8596db6   Андрей Ларионов   Правки вакансии, ...
1
2
3
4
  <?php
  
  
  namespace App\Classes;
ad0b69c97   Fedor   task-132687 tasks...
5
  use App\Models\Worker;
eb8596db6   Андрей Ларионов   Правки вакансии, ...
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  class Tools
  {
      static function generator_id($length = 6)
      {
          $word = '';
          $arr = array(
              'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',
              'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
              'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M',
              'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
              '1', '2', '3', '4', '5', '6', '7', '8', '9', '0'
          );
  
          for ($i = 0; $i < $length; $i++) {
              $word .= $arr[random_int(0, count($arr) - 1)];
          }
          return $word;
      }
ad0b69c97   Fedor   task-132687 tasks...
24
25
26
  
      public static function getWorkerProfilePercent(Worker $Worker): int
      {
6bad752f0   Fedor   task-132687 minor...
27
          $persent = 0;
ad0b69c97   Fedor   task-132687 tasks...
28

6bad752f0   Fedor   task-132687 minor...
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
          if (
              (!empty($Worker->users->surname)) &&
              (!empty($Worker->users->name_man)) &&
              (!empty($Worker->users->surname2)) &&
              (!empty($Worker->old_year)) &&
              ($Worker->job_titles->count() > 0) &&
              (!empty($Worker->salary_expectations)) &&
              (!empty($Worker->experience)) &&
              (!empty($Worker->english_level)) &&
              (!empty($Worker->ready_boart_date)) &&
              (!empty($Worker->boart_type_preference)) &&
              (!empty($Worker->visa_available)) &&
              (!empty($Worker->confirmation_work_for_vvp)) &&
              (!empty($Worker->military_id_available)) &&
              (!empty($Worker->city)) &&
              (!empty($Worker->telephone)) &&
              (!empty($Worker->email)) &&
              (!empty($Worker->telephone2))
          ) {
              $persent += 50;
ad0b69c97   Fedor   task-132687 tasks...
49
50
51
          }
  
          if ($Worker->sertificate->count() > 0) {
6bad752f0   Fedor   task-132687 minor...
52
              $persent += 10;
ad0b69c97   Fedor   task-132687 tasks...
53
54
55
          }
  
          if ($Worker->infobloks->count() > 0) {
6bad752f0   Fedor   task-132687 minor...
56
              $persent += 10;
ad0b69c97   Fedor   task-132687 tasks...
57
          }
6bad752f0   Fedor   task-132687 minor...
58
59
          if ($Worker->place_worker->count() > 0) {
              $persent += 25;
ad0b69c97   Fedor   task-132687 tasks...
60
          }
6bad752f0   Fedor   task-132687 minor...
61
62
          if ($Worker->prev_company->count() > 0) {
              $persent += 5;
ad0b69c97   Fedor   task-132687 tasks...
63
64
65
66
          }
  
          return $persent;
      }
eb8596db6   Андрей Ларионов   Правки вакансии, ...
67
  }