Blame view

app/Http/Controllers/EmployerController.php 29.6 KB
5b68533bb   Андрей Ларионов   Работа над проект...
1
2
3
  <?php
  
  namespace App\Http\Controllers;
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
4
5
6
7
  use App\Classes\RusDate;
  use App\Classes\Tools;
  use App\Http\Requests\FlotRequest;
  use App\Http\Requests\MessagesRequiest;
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
8
  use App\Http\Requests\VacancyRequestEdit;
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
9
10
11
  use App\Http\Requests\VacansiaRequiest;
  use App\Mail\MailSotrudnichestvo;
  use App\Mail\SendAllMessages;
d152a3a68   Андрей Ларионов   Создание основных...
12
  use App\Models\Ad_employer;
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
13
14
  use App\Models\Ad_jobs;
  use App\Models\ad_response;
d152a3a68   Андрей Ларионов   Создание основных...
15
  use App\Models\Category;
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
16
17
18
19
20
  use App\Models\Education;
  use App\Models\Employer;
  use App\Models\employers_main;
  use App\Models\Flot;
  use App\Models\Job_title;
dc2a9a876   Андрей Ларионов   Коммит на понедел...
21
22
  use App\Models\Like_vacancy;
  use App\Models\Like_worker;
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
23
  use App\Models\Message;
df4edc01d   Андрей Ларионов   Обновление данных
24
  use App\Models\Positions;
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
25
  use App\Models\Worker;
f3766c7c1   Андрей Ларионов   Коммит по регистр...
26
27
  use Carbon\Carbon;
  use Illuminate\Auth\Events\Registered;
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
28
  use Illuminate\Database\Eloquent\Builder;
f3766c7c1   Андрей Ларионов   Коммит по регистр...
29
  use Illuminate\Database\Eloquent\Model;
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
30
  use Illuminate\Foundation\Auth\User;
5b68533bb   Андрей Ларионов   Работа над проект...
31
  use Illuminate\Http\Request;
a13ce8670   Андрей Ларионов   Обновление проект...
32
  use Illuminate\Support\Facades\Auth;
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
33
34
35
36
37
  use Illuminate\Support\Facades\Hash;
  use Illuminate\Support\Facades\Mail;
  use Illuminate\Support\Facades\Storage;
  use App\Models\User as User_Model;
  use Illuminate\Support\Facades\Validator;
5b68533bb   Андрей Ларионов   Работа над проект...
38
39
40
  
  class EmployerController extends Controller
  {
d152a3a68   Андрей Ларионов   Создание основных...
41
42
      public function vacancie($vacancy, Request $request) {
          $title = 'Заголовок вакансии';
d152a3a68   Андрей Ларионов   Создание основных...
43
44
45
46
47
48
          $Query = Ad_employer::with('jobs')->
                                with('cat')->
                                with('employer')->
                                with('jobs_code')->
                                select('ad_employers.*')->
                                where('id', '=', $vacancy)->get();
ad2cc280b   Андрей Ларионов   Правки финальные ...
49
50
51
52
          if (isset(Auth()->user()->id))
              $uid = Auth()->user()->id;
          else
              $uid = 0;
d152a3a68   Андрей Ларионов   Создание основных...
53
54
          $title = $Query[0]->name;
          if ($request->ajax()) {
ad2cc280b   Андрей Ларионов   Правки финальные ...
55
              return view('ajax.vacance-item', compact('Query','uid'));
d152a3a68   Андрей Ларионов   Создание основных...
56
          } else {
ad2cc280b   Андрей Ларионов   Правки финальные ...
57
              return view('vacance-item', compact('title', 'Query', 'uid'));
d152a3a68   Андрей Ларионов   Создание основных...
58
59
          }
      }
a13ce8670   Андрей Ларионов   Обновление проект...
60
61
62
63
64
65
  
      public function logout() {
          Auth::logout();
          return redirect()->route('index')
              ->with('success', 'Вы вышли из личного кабинета');
      }
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
66
67
68
69
70
71
72
73
74
  
      public function cabinet() {
          $id = Auth()->user()->id;
          $Employer = Employer::query()->with('users')->with('ads')->with('flots')->
                                          WhereHas('users',
                                              function (Builder $query) use ($id) {$query->Where('id', $id);
                                          })->get();
          return view('employers.cabinet45', compact('Employer'));
      }
b3d27fa36   Андрей Ларионов   Обновление проект...
75
76
77
78
79
80
81
82
      public function slider_flot() {
          $id = Auth()->user()->id;
          $Employer = Employer::query()->with('users')->with('ads')->with('flots')->
          WhereHas('users',
              function (Builder $query) use ($id) {$query->Where('id', $id);
              })->get();
          return view('employers.fly-flot', compact('Employer'));
      }
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
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
      public function cabinet_save(Employer $Employer, Request $request) {
          $params = $request->all();
          $params['user_id'] = Auth()->user()->id;
          $id = $Employer->id;
  
          if ($request->has('logo')) {
              if (!empty($Employer->logo)) {
                  Storage::delete($Employer->logo);
              }
              $params['logo'] = $request->file('logo')->store("employer/$id", 'public');
          }
  
          $Employer->update($params);
  
          return redirect()->route('employer.cabinet')->with('success', 'Данные были успешно сохранены');
      }
  
      public function save_add_flot(FlotRequest $request) {
          // отмена
          $params = $request->all();
  
          if ($request->has('image')) {
              $params['image'] = $request->file('image')->store("flot", 'public');
          }
          Flot::create($params);
          $data_flots = Flot::query()->where('employer_id', $request->get('employer_if'))->get();
b3d27fa36   Андрей Ларионов   Обновление проект...
109
          return redirect()->route('employer.slider_flot')->with('success', 'Новый корабль был добавлен');
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
110
111
112
113
114
115
      }
  
      public function delete_flot(Flot $Flot) {
          $data_flots = Flot::query()->where('employer_id', $Flot->employer_id)->get();
  
          if (isset($Flot->id)) $Flot->delete();
b3d27fa36   Андрей Ларионов   Обновление проект...
116
          return redirect()->route('employer.slider_flot')->with('success', 'Корабль был удален');
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
117
118
119
120
121
      }
  
      // Форма добавления вакансий
      public function cabinet_vacancie() {
          $id = Auth()->user()->id;
31fe4e458   Андрей Ларионов   Показ проекта зак...
122

028431ad7   Андрей Ларионов   Активные пункты
123
          $categories = Category::query()->active()->get();
52cd6fac1   Андрей Ларионов   Обновление 5
124
          $Positions = Category::query()->active()->get();
31fe4e458   Андрей Ларионов   Показ проекта зак...
125
          if ($Positions->count()) {
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
126
              $jobs = Job_title::query()->OrderBy('name')->where('is_remove', '=', '0')->Notbdif()->where('position_id', $Positions[0]->id)->get();
31fe4e458   Андрей Ларионов   Показ проекта зак...
127
          } else {
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
128
              $jobs = Job_title::query()->OrderBy('name')->where('is_remove', '=', '0')->Notbdif()->where('position_id', 0)->get();
31fe4e458   Андрей Ларионов   Показ проекта зак...
129
          }
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
130
131
132
133
          $Employer = Employer::query()->with('users')->with('ads')->with('flots')->
          WhereHas('users',
              function (Builder $query) use ($id) {$query->Where('id', $id);
              })->get();
df4edc01d   Андрей Ларионов   Обновление данных
134
          return view('employers.add_vacancy', compact('Employer', 'jobs' , 'categories', 'Positions'));
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
135
136
137
      }
  
      // Сохранение вакансии
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
138
      public function cabinet_vacancy_save1(VacancyRequestEdit $request) {
2be890eea   Андрей Ларионов   коммит по изменен...
139
140
141
142
143
144
145
146
147
148
149
150
151
152
          $params_emp = $request->all();
          $params_job["job_title_id"] = $params_emp['job_title_id'];
          $params_job["min_salary"] = $params_emp['min_salary'];
          $params_job["max_salary"] = $params_emp['max_salary'];
          $params_job["region"] = $params_emp['region'];
          $params_job["power"] = $params_emp['power'];
          $params_job["sytki"] = $params_emp['sytki'];
          $params_job["start"] = $params_emp['start'];
          $params_job["flot"] = $params_emp['flot'];
          $params_job["description"] = $params_emp['description'];
  
          $ad_jobs = Ad_employer::create($params_emp);
          $params_job['ad_employer_id'] = $ad_jobs->id;
          Ad_jobs::create($params_job);
365e6ad01   Андрей Ларионов   Реализация проекта
153
          return redirect()->route('employer.vacancy_list');
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
154
155
156
157
158
159
      }
  
      // Список вакансий
      public function vacancy_list(Request $request) {
          $id = Auth()->user()->id;
          $Employer = Employer::query()->where('user_id', $id)->first();
2be890eea   Андрей Ларионов   коммит по изменен...
160
161
162
          $vacancy_list = Ad_employer::query()->with('jobs')->
                          with('jobs_code')->
                          where('employer_id', $Employer->id);
365e6ad01   Андрей Ларионов   Реализация проекта
163
164
165
166
167
168
169
170
171
172
173
174
  
          if ($request->get('sort')) {
              $sort = $request->get('sort');
              switch ($sort) {
                  case 'name_up': $vacancy_list = $vacancy_list->orderBy('name')->orderBy('id'); break;
                  case 'name_down': $vacancy_list = $vacancy_list->orderByDesc('name')->orderby('id'); break;
                  case 'created_at_up': $vacancy_list = $vacancy_list->OrderBy('created_at')->orderBy('id'); break;
                  case 'created_at_down': $vacancy_list = $vacancy_list->orderByDesc('created_at')->orderBy('id'); break;
                  case 'default': $vacancy_list = $vacancy_list->orderBy('id')->orderby('updated_at'); break;
                  default: $vacancy_list = $vacancy_list->orderBy('id')->orderby('updated_at'); break;
              }
          }
31fe4e458   Андрей Ларионов   Показ проекта зак...
175
          $vacancy_list = $vacancy_list->paginate(4);
365e6ad01   Андрей Ларионов   Реализация проекта
176
177
178
179
180
181
          //ajax
          if ($request->ajax()) {
              return view('employers.ajax.list_vacancy', compact('vacancy_list', 'Employer'));
          } else {
              return view('employers.list_vacancy', compact('vacancy_list', 'Employer'));
          }
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
182
183
184
185
186
      }
  
      // Карточка вакансии
      public function vacancy_edit(Ad_employer $ad_employer) {
          $id = Auth()->user()->id;
31fe4e458   Андрей Ларионов   Показ проекта зак...
187

f8a3cafe5   Андрей Ларионов   диалоговые пробле...
188
          $Positions = Category::query()->where('is_remove', '=', '0')->get();
31fe4e458   Андрей Ларионов   Показ проекта зак...
189
190
191
192
193
          if ($Positions->count()) {
              $jobs = Job_title::query()->OrderBy('name')->where('position_id', $Positions[0]->id)->get();
          } else {
              $jobs = Job_title::query()->OrderBy('name')->where('position_id', 0)->get();
          }
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
194

7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
195
196
          $Employer = Employer::query()->with('users')->with('ads')->with('flots')->
                                      where('user_id', $id)->first();
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
197
          return view('employers.edit_vacancy', compact('ad_employer', 'Positions','Employer', 'jobs'));
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
198
      }
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
199

7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
200
201
      // Сохранение-редактирование записи
      public function vacancy_save_me(VacancyRequestEdit $request, Ad_employer $ad_employer) {
31fe4e458   Андрей Ларионов   Показ проекта зак...
202
          $params = $request->all();
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
203

31fe4e458   Андрей Ларионов   Показ проекта зак...
204
          //$jobs['flot'] = $params['flot'];
d7c3522a7   Андрей Ларионов   Коммит изменение ...
205
          //$jobs['job_title_id'] = $params['job_title_id'];
31fe4e458   Андрей Ларионов   Показ проекта зак...
206
          //$titles['position_id'] = $params['position_id'];
d7c3522a7   Андрей Ларионов   Коммит изменение ...
207
          //unset($params['job_title_id']);
31fe4e458   Андрей Ларионов   Показ проекта зак...
208
209
  
          $ad_employer->update($params);
d7c3522a7   Андрей Ларионов   Коммит изменение ...
210
211
212
213
          //$job_ = Ad_jobs::query()->where('job_title_id', $jobs['job_title_id'])->
          //                      where('ad_employer_id', $ad_employer->id)->first();
          //$data = Ad_jobs::find($job_->id);
          //$ad_jobs = $data->update($jobs);
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
214
215
  
          return redirect()->route('employer.vacancy_list');
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
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
      }
  
      // Сохранение карточки вакансии
      public function vacancy_save(Request $request, Ad_employer $ad_employer) {
          $all = $request->all();
          $ad_employer->update($all);
          return redirect()->route('employer.cabinet_vacancie');
      }
  
      // Удаление карточки вакансии
      public function vacancy_delete(Ad_employer $ad_employer) {
          $ad_employer->delete();
  
          return redirect()->route('employer.vacancy_list')
              ->with('success', 'Данные были успешно сохранены');
      }
  
      // Обновление даты
      public function vacancy_up(Ad_employer $ad_employer) {
          $up = date('m/d/Y h:i:s', time());;
          $vac_emp = Ad_employer::findOrFail($ad_employer->id);
          $vac_emp->updated_at = $up;
          $vac_emp->save();
  
          return redirect()->route('employer.vacancy_list');
          // начало конца
      }
  
      //Видимость вакансии
      public function vacancy_eye(Ad_employer $ad_employer, $status) {
          $vac_emp = Ad_employer::findOrFail($ad_employer->id);
          $vac_emp->active_is = $status;
          $vac_emp->save();
  
          return redirect()->route('employer.vacancy_list');
      }
  
      //Вакансия редактирования (шаблон)
      public function vacancy_update(Ad_employer $id) {
  
      }
  
      //Отклики на вакансию - лист
      public function answers(Employer $employer, Request $request) {
          $user_id = Auth()->user()->id;
          $answer = Ad_employer::query()->where('employer_id', $employer->id);
          if ($request->has('search')) {
              $search = trim($request->get('search'));
              if (!empty($search)) $answer = $answer->where('name', 'LIKE', "%$search%");
          }
  
          $answer = $answer->with('response')->get();
  
          return view('employers.list_answer', compact('answer', 'user_id', 'employer'));
      }
  
      //Обновление статуса
      public function supple_status(employer $employer, ad_response $ad_response,  $flag) {
          $ad_response->update(Array('flag' => $flag));
          return redirect()->route('employer.answers', ['employer' => $employer->id]);
      }
  
      //Страницы сообщений список
      public function messages($type_message) {
          $user_id = Auth()->user()->id;
  
          $messages_input = Message::query()->with('vacancies')->with('user_from')->
                                  Where('to_user_id', $user_id)->OrderByDesc('created_at');
  
          $messages_output = Message::query()->with('vacancies')->
                                      with('user_to')->where('user_id', $user_id)->
                                      OrderByDesc('created_at');
  
  
          $count_input = $messages_input->count();
          $count_output = $messages_output->count();
  
          if ($type_message == 'input') {
              $messages = $messages_input->paginate(15);
          }
  
          if ($type_message == 'output') {
              $messages = $messages_output->paginate(15);
          }
  
          return view('employers.messages', compact('messages', 'count_input', 'count_output', 'type_message', 'user_id'));
      }
  
      // Диалог между пользователями
      public function dialog(User_Model $user1, User_Model $user2) {
          if (isset($user2->id)) {
              $companion = User_Model::query()->with('workers')->
                                          with('employers')->
                                          where('id', $user2->id)->first();
          }
  
          $Messages = Message::query()->with('response')->where(function($query) use ($user1, $user2) {
              $query->where('user_id', $user1->id)->where('to_user_id', $user2->id);
          })->orWhere(function($query) use ($user1, $user2) {
              $query->where('user_id', $user2->id)->where('to_user_id', $user1->id);
          })->OrderBy('created_at')->get();
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
317
318
          $id_vac = $Messages[$Messages->count() - 1]->ad_employer_id;
          /*foreach ($Messages as $it) {
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
319
320
321
322
323
324
325
326
327
328
              if (isset($it->response)) {
                  foreach ($it->response as $r) {
                      if (isset($r->ad_employer_id)) {
                          $id_vac = $r->ad_employer_id;
                          break;
                      }
                  }
              }
              if (!is_null($id_vac)) break;
          }
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
329
          */
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
330
331
332
333
  
          $ad_employer = null;
          if (!is_null($id_vac)) $ad_employer = Ad_employer::query()->where('id', $id_vac)->first();
          $sender = $user1;
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
334
335
          return view('employers.dialog', compact('companion', 'sender', 'Messages', 'ad_employer'));
      }
f3766c7c1   Андрей Ларионов   Коммит по регистр...
336
337
338
339
340
      // Регистрация работодателя
      public function register_employer(Request $request) {
          $params = $request->all();
  
          $rules = [
ac8b91cfd   Андрей Ларионов   Обновление системы.
341
342
              //'surname' => ['required', 'string', 'max:255'],
              //'name_man' => ['required', 'string', 'max:255'],
f3766c7c1   Андрей Ларионов   Коммит по регистр...
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
              'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
              'name_company' => ['required', 'string', 'max:255'],
              'password' => ['required', 'string', 'min:8'],
          ];
  
  
          $messages = [
              'required' => 'Укажите обязательное поле',
              'min' => [
                  'string' => 'Поле «:attribute» должно быть не меньше :min символов',
                  'integer' => 'Поле «:attribute» должно быть :min или больше',
                  'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт'
              ],
              'max' => [
                  'string' => 'Поле «:attribute» должно быть не больше :max символов',
                  'integer' => 'Поле «:attribute» должно быть :max или меньше',
                  'file' => 'Файл «:attribute» должен быть не больше :max Кбайт'
              ]
          ];
2be890eea   Андрей Ларионов   коммит по изменен...
362
363
364
365
          $email =  $request->get('email');
          if (!preg_match("/^[a-zA-Z0-9_\-.]+@[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-.]+$/", $email)) {
              return json_encode(Array("ERROR" => "Error: Отсутствует емайл или некорректный емайл"));
          }
f3766c7c1   Андрей Ларионов   Коммит по регистр...
366
367
368
          if ($request->get('password') !== $request->get('confirmed')){
              return json_encode(Array("ERROR" => "Error: Не совпадают пароль и подтверждение пароля"));
          }
b17c06a23   Андрей Ларионов   Коммит по системе...
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
          if (strlen($request->get('password')) < 8) {
              return json_encode(Array("ERROR" => "Error: Недостаточная длина пароля! Увеличьте себе длину пароля!"));
          }
  
          $specsumbol   = Array('!','~', '#', '$', '%', '^', '&', '*', '(', ')', '-', '=', ';', ':', '<', '>', '?');
          $alpha = Array('Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I', 'O', 'P', 'A', 'S', 'D', 'F', 'G', 'H', 'J', 'K', 'L', 'Z',
              'X', 'C', 'V', 'B', 'N', 'M');
          $spec_bool = false;
          $alpha_bool = false;
  
          $haystack = $request->get('password');
  
          foreach ($specsumbol as $it) {
              if (strpos($haystack, $it) !== false) {
                  $spec_bool = true;
              }
          }
  
          foreach ($alpha as $it) {
              if (strpos($haystack, $it) !== false) {
                  $alpha_bool = true;
              }
          }
  
          if ((!$spec_bool) || (!$alpha_bool)) {
              return json_encode(Array("ERROR" => "Error: Нет спецсимволов в пароле, латинские буквы заглавные, а также один из символов: !~#$%^&*()-=;,:<>?"));
          }
ac8b91cfd   Андрей Ларионов   Обновление системы.
396
397
398
          if (empty($request->get('surname'))) {
              $params['surname'] = 'Неизвестно';
          }
ac8b91cfd   Андрей Ларионов   Обновление системы.
399
400
401
          if (empty($request->get('name_man'))) {
              $params['name_man'] = 'Неизвестно';
          }
ac8b91cfd   Андрей Ларионов   Обновление системы.
402
          $validator = Validator::make($params, $rules, $messages);
f3766c7c1   Андрей Ларионов   Коммит по регистр...
403
404
405
406
407
408
  
          if ($validator->fails()) {
              return json_encode(Array("ERROR" => "Error1: Регистрация оборвалась ошибкой! Не все обязательные поля заполнены. Либо вы уже были зарегистрированы в системе."));
          } else {
              $user = $this->create($params);
              event(new Registered($user));
f3766c7c1   Андрей Ларионов   Коммит по регистр...
409
410
              Auth::guard()->login($user);
          }
b17c06a23   Андрей Ларионов   Коммит по системе...
411

f3766c7c1   Андрей Ларионов   Коммит по регистр...
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
          if ($user) {
              return json_encode(Array("REDIRECT" => redirect()->route('employer.cabinet')->getTargetUrl()));;
          } else {
              return json_encode(Array("ERROR" => "Error2: Данные были утеряны!"));
          }
      }
  
      // Создание пользователя
      protected function create(array $data)
      {
          $Use = new User_Model();
          $Code_user = $Use->create([
              'name' => $data['surname']." ".$data['name_man'],
              'name_man' => $data['name_man'],
              'surname' => $data['surname'],
              'surname2' => $data['surname2'],
              'subscribe_email' => $data['email'],
              'email' => $data['email'],
              'telephone' => $data['telephone'],
              'is_worker' => 0,
              'password' => Hash::make($data['password']),
              'pubpassword' => base64_encode($data['password']),
              'email_verified_at' => Carbon::now()
          ]);
  
          if ($Code_user->id > 0) {
              $Employer = new Employer();
              $Employer->user_id = $Code_user->id;
              $Employer->name_company = $data['name_company'];
              $Employer->email = $data['email'];
              $Employer->telephone = $data['telephone'];
              $Employer->code = Tools::generator_id(10);
              $Employer->save();
  
              return $Code_user;
          }
      }
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
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
      // Отправка сообщения от работодателя
      public function send_message(MessagesRequiest $request) {
          $params = $request->all();
          dd($params);
          $user1 = $params['user_id'];
          $user2 = $params['to_user_id'];
  
          if ($request->has('file')) {
              $params['file'] = $request->file('file')->store("messages", 'public');
          }
          Message::create($params);
          return redirect()->route('employer.dialog', ['user1' => $user1, 'user2' => $user2]);
      }
  
      public function test123(Request $request) {
          $params = $request->all();
          $user1 = $params['user_id'];
          $user2 = $params['to_user_id'];
  
          $rules = [
              'text' => 'required|min:1|max:150000',
              'file' => 'file|mimes:doc,docx,xlsx,csv,txt,xlx,xls,pdf|max:150000'
          ];
          $messages = [
              'required' => 'Укажите обязательное поле',
              'min' => [
                  'string' => 'Поле «:attribute» должно быть не меньше :min символов',
                  'integer' => 'Поле «:attribute» должно быть :min или больше',
                  'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт'
              ],
              'max' => [
                  'string' => 'Поле «:attribute» должно быть не больше :max символов',
                  'integer' => 'Поле «:attribute» должно быть :max или меньше',
                  'file' => 'Файл «:attribute» должен быть не больше :max Кбайт'
              ]
          ];
  
          $validator = Validator::make($request->all(), $rules, $messages);
  
          if ($validator->fails()) {
              return redirect()->route('employer.dialog', ['user1' => $user1, 'user2' => $user2])
                  ->withErrors($validator);
          } else {
              if ($request->has('file')) {
                  $params['file'] = $request->file('file')->store("messages", 'public');
              }
              Message::create($params);
              return redirect()->route('employer.dialog', ['user1' => $user1, 'user2' => $user2]);
  
          }
      }
  
      //Избранные люди
      public function favorites(Request $request) {
dc2a9a876   Андрей Ларионов   Коммит на понедел...
503
504
505
506
507
508
509
510
511
512
          $IP_address = RusDate::ip_addr_client();
          $Arr = Like_worker::Query()->select('code_record')->where('ip_address', '=', $IP_address)->get();
  
          if ($Arr->count()) {
              $A = Array();
              foreach ($Arr as $it) {
                  $A[] = $it->code_record;
              }
  
              $Workers = Worker::query()->whereIn('id', $A);
478431073   Андрей Ларионов   Баг-ошибка это с ...
513
          } else {
136bdb8d2   Андрей Ларионов   Статус избранные
514
              $Workers = Worker::query()->where('id', '=', '0');
478431073   Андрей Ларионов   Баг-ошибка это с ...
515
          }
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
516

e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
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
          if (($request->has('search')) && (!empty($request->get('search')))) {
              $search = $request->get('search');
  
              $Workers =  $Workers->WhereHas('users',
                  function (Builder $query) use ($search) {
                      $query->Where('surname', 'LIKE', "%$search%")
                          ->orWhere('name_man', 'LIKE', "%$search%")
                          ->orWhere('surname2', 'LIKE', "%$search%");
                  });
          } else {
              $Workers = $Workers->with('users');
          }
  
          $Workers = $Workers->get();
          return view('employers.favorite', compact('Workers'));
      }
  
      // База данных
      public function bd(Request $request) {
          // для типа BelongsTo
          //$documents = Document::query()->orderBy(Location::select('name')
          //    ->whereColumn('locations.id', 'documents.location_id')
          //);
  
          // для типа HasOne/Many
          // $documents = Document::::query()->orderBy(Location::select('name')
          //   ->whereColumn('locations.document_id', 'documents.id')
          //);
ac8b91cfd   Андрей Ларионов   Обновление системы.
545

e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
546
          $users = User_Model::query()->with('workers');
ac8b91cfd   Андрей Ларионов   Обновление системы.
547
548
549
  
          if ($request->has('search')) {
              $find_key = $request->get('search');
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
550
              $users = $users->where('name', 'LIKE', "%$find_key%")
ac8b91cfd   Андрей Ларионов   Обновление системы.
551
552
                  ->orWhere('surname', 'LIKE', "%$find_key%")
                  ->orWhere('name_man', 'LIKE', "%$find_key%")
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
553
554
555
556
557
558
                  ->orWhere('email', 'LIKE', "%$find_key%")
                  ->orWhere('telephone', 'LIKE', "%$find_key%");
          }
  
          // Данные
          $users = $users->Baseuser()->
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
559
                          orderBy(Worker::select('position_work')->whereColumn('Workers.user_id', 'users.id'))->
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
560
                          paginate(5);
ac8b91cfd   Андрей Ларионов   Обновление системы.
561

e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
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
          return view('employers.bd', compact('users'));
      }
  
      //Настройка уведомлений
      public function subscribe() {
          return view('employers.subcribe');
      }
  
      //Установка уведомлений сохранение
      public function save_subscribe(Request $request) {
          dd($request->all());
          $msg = $request->validate([
              'subscribe_email' => 'required|email|min:5|max:255',
          ]);
          return redirect()->route('employer.subscribe')->with('Вы успешно подписались на рассылку');
      }
  
      //Сбросить форму с паролем
      public function password_reset() {
          $email = Auth()->user()->email;
          return view('employers.password-reset', compact('email'));
      }
  
      //Обновление пароля
      public function new_password(Request $request) {
          $use = Auth()->user();
          $request->validate([
              'password' => 'required|string',
              'new_password' => 'required|string',
              'new_password2' => 'required|string'
          ]);
  
          if ($request->get('new_password') == $request->get('new_password2'))
              if ($request->get('password') !== $request->get('new_password')) {
                  $credentials = $request->only('email', 'password');
                  if (Auth::attempt($credentials)) {
  
                      if (!is_null($use->email_verified_at)){
  
                          $user_data = User_Model::find($use->id);
                          $user_data->update([
                              'password' => Hash::make($request->get('new_password')),
                              'pubpassword' => base64_encode($request->get('new_password')),
                          ]);
                          return redirect()
                              ->route('employer.password_reset')
                              ->with('success', 'Поздравляю! Вы обновили свой пароль!');
                      }
  
                      return redirect()
                          ->route('employer.password_reset')
                          ->withError('Данная учетная запись не было верифицированна!');
                  }
              }
  
          return redirect()
              ->route('employer.password_reset')
              ->withErrors('Не совпадение данных, обновите пароли!');
      }
f3766c7c1   Андрей Ларионов   Коммит по регистр...
621

e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
      // Форма Удаление пипла
      public function delete_people() {
          $login = Auth()->user()->email;
          return view('employers.delete_people', compact('login'));
      }
  
      // Удаление аккаунта
      public function action_delete_user(Request $request) {
          $Answer = $request->all();
          $user_id = Auth()->user()->id;
          $request->validate([
              'password' => 'required|string',
          ]);
  
          $credentials = $request->only('email', 'password');
          if (Auth::attempt($credentials)) {
              Auth::logout();
              $it = User_Model::find($user_id);
dc2a9a876   Андрей Ларионов   Коммит на понедел...
640
              $it->delete();
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
641
642
643
644
645
646
              return redirect()->route('index')->with('success', 'Вы успешно удалили свой аккаунт');
          } else {
              return redirect()->route('employer.delete_people')
                  ->withErrors( 'Неверный пароль! Нужен корректный пароль');
          }
      }
6370754b6   Андрей Ларионов   Обновление бага с...
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
      public function ajax_delete_user(Request $request) {
          $Answer = $request->all();
          $user_id = Auth()->user()->id;
          $request->validate([
              'password' => 'required|string',
          ]);
          $credentials = $request->only('email', 'password');
          if (Auth::attempt($credentials)) {
  
              return json_encode(Array('SUCCESS' => 'Вы успешно удалили свой аккаунт',
                                       'email' => $request->get('email'),
                                       'password' => $request->get('password')));
          } else {
              return json_encode(Array('ERROR' => 'Неверный пароль! Нужен корректный пароль'));
          }
      }
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
      // FAQ - Вопросы/ответы для работодателей и соискателей
      public function faq() {
          return view('employers.faq');
      }
  
      // Рассылка сообщений
      public function send_all_messages() {
          return view('employers.send_all');
      }
  
      // Отправка сообщений для информации
      public function send_all_post(Request $request) {
          $data = $request->all();
  
          $emails = User_Model::query()->where('is_worker', '1')->get();
  
          foreach ($emails as $e) {
              Mail::to($e->email)->send(new SendAllMessages($data));
          }
  
          return redirect()->route('employer.send_all_messages')->with('success', 'Письма были отправлены');
      }
  
      // База резюме
      public function bd_tupe(Request $request) {
          $Resume = User_Model::query()->with('workers')->where('is_bd', '=', '1')->get();
  
          return view('employers.bd_tupe', compact('Resume'));
      }
b6103c749   Андрей Ларионов   Обновление js и c...
692
693
  
      //////////////////////////////////////////////////////////////////
b6103c749   Андрей Ларионов   Обновление js и c...
694
      // Отправил сообщение
b6103c749   Андрей Ларионов   Обновление js и c...
695
696
697
      //////////////////////////////////////////////////////////////////
      public function new_message(Request $request) {
          $params = $request->all();
b6103c749   Андрей Ларионов   Обновление js и c...
698
699
700
701
702
703
704
705
706
          $id = $params['_user_id'];
          $message = new Message();
          $message->user_id = $params['_user_id'];
          $message->to_user_id = $params['_to_user_id'];
          $message->title = $params['title'];
          $message->text = $params['text'];
          if ($request->has('_file')) {
              $message->file = $request->file('_file')->store("worker/$id", 'public');
          }
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
707
          $message->ad_employer_id = $params['_vacancy'];
b6103c749   Андрей Ларионов   Обновление js и c...
708
709
          $message->flag_new = 1;
          $id_message = $message->save();
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
710
711
712
          //$data['message_id'] = $id_message;
          //$data['ad_employer_id'] = $params['_vacancy'];
          //$data['job_title_id'] = 0;
b6103c749   Андрей Ларионов   Обновление js и c...
713
714
  
          $data['flag'] = 1;
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
715
          //$ad_responce = ad_response::create($data);
b6103c749   Андрей Ларионов   Обновление js и c...
716
717
718
719
720
721
          return redirect()->route('employer.messages', ['type_message' => 'output']);
      }
  
      // Восстановление пароля
      public function repair_password(Request $request) {
          $params = $request->get('email');
31fe4e458   Андрей Ларионов   Показ проекта зак...
722
      }
b6103c749   Андрей Ларионов   Обновление js и c...
723

31fe4e458   Андрей Ларионов   Показ проекта зак...
724
725
726
      // Избранные люди на корабль
      public function selected_people(Request $request) {
          $id = $request->get('id');
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
727
          $favorite_people = Job_title::query()->Notbdif()->where('is_remove', '=', '0')->where('position_id', $id)->get();
31fe4e458   Андрей Ларионов   Показ проекта зак...
728
          return view('favorite_people', compact('favorite_people'));
b6103c749   Андрей Ларионов   Обновление js и c...
729
      }
5b68533bb   Андрей Ларионов   Работа над проект...
730
  }