Blame view

app/Classes/Tools.php 2.15 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;
3256f8927   Fedor   task-132687 minor...
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
          $workerFields = [
              'telephone',
              'email',
              'old_year',
              'salary_expectations',
              'experience',
              'english_level',
              'ready_boart_date',
              'boart_type_preference',
              'visa_available',
              'confirmation_work_for_vvp',
              'military_id_available',
              'city',
              'telephone2',
          ];
ad0b69c97   Fedor   task-132687 tasks...
43

3256f8927   Fedor   task-132687 minor...
44
45
46
47
48
49
50
          $workerUserFields = [
              'surname',
              'name_man',
              'surname2',
          ];
  
          foreach ($workerFields as $fieldName) {
5c0ae0519   Fedor   task-132687 minor...
51
              if (!empty($Worker->$fieldName) && $Worker->$fieldName !== 'Не указано') {
3256f8927   Fedor   task-132687 minor...
52
53
54
55
56
                  $persent += 2.8;
              }
          }
  
          foreach ($workerUserFields as $fieldName) {
5c0ae0519   Fedor   task-132687 minor...
57
              if (!empty($Worker->users->$fieldName)) {
3256f8927   Fedor   task-132687 minor...
58
59
                  $persent += 2.8;
              }
8a601d5d6   Fedor   task-132687 minor...
60
          }
3256f8927   Fedor   task-132687 minor...
61
62
          if ($Worker->job_titles->count() > 0) {
              $persent += 2.8;
ad0b69c97   Fedor   task-132687 tasks...
63
64
65
          }
  
          if ($Worker->sertificate->count() > 0) {
6bad752f0   Fedor   task-132687 minor...
66
              $persent += 10;
ad0b69c97   Fedor   task-132687 tasks...
67
          }
8a601d5d6   Fedor   task-132687 minor...
68
          if ($Worker->infobloks->where(fn($ib) => $ib->pivot->status === 1)->count() > 0) {
6bad752f0   Fedor   task-132687 minor...
69
              $persent += 10;
ad0b69c97   Fedor   task-132687 tasks...
70
          }
6bad752f0   Fedor   task-132687 minor...
71
72
          if ($Worker->place_worker->count() > 0) {
              $persent += 25;
ad0b69c97   Fedor   task-132687 tasks...
73
          }
6bad752f0   Fedor   task-132687 minor...
74
75
          if ($Worker->prev_company->count() > 0) {
              $persent += 5;
ad0b69c97   Fedor   task-132687 tasks...
76
77
78
79
          }
  
          return $persent;
      }
eb8596db6   Андрей Ларионов   Правки вакансии, ...
80
  }