Blame view

app/Http/Controllers/EmployerController.php 26.1 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
24
  use App\Models\Message;
  use App\Models\Worker;
f3766c7c1   Андрей Ларионов   Коммит по регистр...
25
26
  use Carbon\Carbon;
  use Illuminate\Auth\Events\Registered;
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
27
  use Illuminate\Database\Eloquent\Builder;
f3766c7c1   Андрей Ларионов   Коммит по регистр...
28
  use Illuminate\Database\Eloquent\Model;
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
29
  use Illuminate\Foundation\Auth\User;
5b68533bb   Андрей Ларионов   Работа над проект...
30
  use Illuminate\Http\Request;
a13ce8670   Андрей Ларионов   Обновление проект...
31
  use Illuminate\Support\Facades\Auth;
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
32
33
34
35
36
  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   Андрей Ларионов   Работа над проект...
37
38
39
  
  class EmployerController extends Controller
  {
d152a3a68   Андрей Ларионов   Создание основных...
40
41
      public function vacancie($vacancy, Request $request) {
          $title = 'Заголовок вакансии';
d152a3a68   Андрей Ларионов   Создание основных...
42
43
44
45
46
47
          $Query = Ad_employer::with('jobs')->
                                with('cat')->
                                with('employer')->
                                with('jobs_code')->
                                select('ad_employers.*')->
                                where('id', '=', $vacancy)->get();
ad2cc280b   Андрей Ларионов   Правки финальные ...
48
49
50
51
          if (isset(Auth()->user()->id))
              $uid = Auth()->user()->id;
          else
              $uid = 0;
d152a3a68   Андрей Ларионов   Создание основных...
52
53
          $title = $Query[0]->name;
          if ($request->ajax()) {
ad2cc280b   Андрей Ларионов   Правки финальные ...
54
              return view('ajax.vacance-item', compact('Query','uid'));
d152a3a68   Андрей Ларионов   Создание основных...
55
          } else {
ad2cc280b   Андрей Ларионов   Правки финальные ...
56
              return view('vacance-item', compact('title', 'Query', 'uid'));
d152a3a68   Андрей Ларионов   Создание основных...
57
58
          }
      }
a13ce8670   Андрей Ларионов   Обновление проект...
59
60
61
62
63
64
  
      public function logout() {
          Auth::logout();
          return redirect()->route('index')
              ->with('success', 'Вы вышли из личного кабинета');
      }
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
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
109
110
111
112
113
114
  
      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'));
      }
  
      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();
          return redirect()->route('employer.cabinet')->with('success', 'Новый корабль был добавлен');
      }
  
      public function delete_flot(Flot $Flot) {
          $data_flots = Flot::query()->where('employer_id', $Flot->employer_id)->get();
  
          if (isset($Flot->id)) $Flot->delete();
          return redirect()->route('employer.cabinet')->with('success', 'Корабль был удален');
      }
  
      // Форма добавления вакансий
      public function cabinet_vacancie() {
          $id = Auth()->user()->id;
          $jobs = Job_title::query()->OrderBy('name')->get();
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
115
          $categories = Category::query()->get();
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
116
117
118
119
          $Employer = Employer::query()->with('users')->with('ads')->with('flots')->
          WhereHas('users',
              function (Builder $query) use ($id) {$query->Where('id', $id);
              })->get();
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
120
          return view('employers.add_vacancy', compact('Employer', 'jobs' , 'categories'));
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
121
122
123
      }
  
      // Сохранение вакансии
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
124
      public function cabinet_vacancy_save1(VacancyRequestEdit $request) {
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
125
126
127
128
129
130
131
132
133
134
          $params = $request->all();
          $jobs['min_salary'] = $params['min_salary'];
          $jobs['max_salary'] = $params['max_salary'];
          $jobs['flot'] = $params['flot'];
          $jobs['power'] = $params['power'];
          $jobs['sytki'] = $params['sytki'];
          $jobs['start'] = $params['start'];
          $jobs['job_title_id'] = $params['job_title_id'];
          $jobs['description'] = $params['description'];
          $jobs['region'] = $params['city'];
365e6ad01   Андрей Ларионов   Реализация проекта
135
          $jobs['position_ship'] = $params['position_ship'];
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
136
137
138
139
140
141
142
143
144
145
146
          unset($params['min_salary']);
          unset($params['max_salary']);
          unset($params['flot']);
          unset($params['sytki']);
          unset($params['start']);
          unset($params['job_title_id']);
          unset($params['description']);
  
          $id = Ad_employer::create($params)->id;
          $jobs['ad_employer_id'] = $id;
          Ad_jobs::create($jobs);
365e6ad01   Андрей Ларионов   Реализация проекта
147
          return redirect()->route('employer.vacancy_list');
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
148
149
150
151
152
153
      }
  
      // Список вакансий
      public function vacancy_list(Request $request) {
          $id = Auth()->user()->id;
          $Employer = Employer::query()->where('user_id', $id)->first();
365e6ad01   Андрей Ларионов   Реализация проекта
154
155
156
157
158
159
160
161
162
163
164
165
166
167
          $vacancy_list = Ad_employer::query()->where('employer_id', $Employer->id);
  
          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;
              }
          }
          $vacancy_list = $vacancy_list->get();
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
168

365e6ad01   Андрей Ларионов   Реализация проекта
169
170
171
172
173
174
          //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   Андрей Ларионов   Коммит на понедел...
175
176
177
178
179
180
      }
  
      // Карточка вакансии
      public function vacancy_edit(Ad_employer $ad_employer) {
          $id = Auth()->user()->id;
          $jobs = Job_title::query()->OrderBy('name')->get();
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
181
182
183
184
185
186
          $categories = Category::query()->get();
          $Employer = Employer::query()->with('users')->with('ads')->with('flots')->
                                      where('user_id', $id)->first();
  
          return view('employers.edit_vacancy', compact('ad_employer', 'categories','Employer', 'jobs'));
      }
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
187

7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
188
189
190
191
192
193
194
      // Сохранение-редактирование записи
      public function vacancy_save_me(VacancyRequestEdit $request, Ad_employer $ad_employer) {
          $all = $request->all();
  
          $ad_employer->update($all);
  
          return redirect()->route('employer.vacancy_list');
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
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
      }
  
      // Сохранение карточки вакансии
      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();
  
          $id_vac = null;
          foreach ($Messages as $it) {
              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;
          }
  
          $ad_employer = null;
          if (!is_null($id_vac)) $ad_employer = Ad_employer::query()->where('id', $id_vac)->first();
          $sender = $user1;
  
          return view('employers.dialog', compact('companion', 'sender', 'Messages', 'ad_employer'));
      }
f3766c7c1   Андрей Ларионов   Коммит по регистр...
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
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
      // Регистрация работодателя
      public function register_employer(Request $request) {
          $params = $request->all();
  
          $rules = [
              'surname' => ['required', 'string', 'max:255'],
              'name_man' => ['required', 'string', 'max:255'],
              '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 Кбайт'
              ]
          ];
  
          if ($request->get('password') !== $request->get('confirmed')){
              return json_encode(Array("ERROR" => "Error: Не совпадают пароль и подтверждение пароля"));
          }
  
          $validator = Validator::make($request->all(), $rules, $messages);
  
          if ($validator->fails()) {
              return json_encode(Array("ERROR" => "Error1: Регистрация оборвалась ошибкой! Не все обязательные поля заполнены. Либо вы уже были зарегистрированы в системе."));
          } else {
              $user = $this->create($params);
              event(new Registered($user));
  
              Auth::guard()->login($user);
          }
          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   Андрей Ларионов   Коммит на понедел...
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
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
      // Отправка сообщения от работодателя
      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   Андрей Ларионов   Коммит на понедел...
448
449
450
451
452
453
454
455
456
457
          $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   Андрей Ларионов   Баг-ошибка это с ...
458
          } else {
136bdb8d2   Андрей Ларионов   Статус избранные
459
              $Workers = Worker::query()->where('id', '=', '0');
478431073   Андрей Ларионов   Баг-ошибка это с ...
460
          }
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
461

e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
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
          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')
          //);
  
          $users = User_Model::query()->with('workers');
          if (isset($request->find)) {
              $find_key = $request->find;
              $users = $users->where('name', 'LIKE', "%$find_key%")
                  ->orWhere('email', 'LIKE', "%$find_key%")
                  ->orWhere('telephone', 'LIKE', "%$find_key%");
          }
  
          // Данные
          $users = $users->Baseuser()->
142d287bd   Андрей Ларионов   Шаблоны кабинета ...
501
                          orderBy(Worker::select('position_work')->whereColumn('Workers.user_id', 'users.id'))->
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
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
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
                          paginate(5);
  
          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   Андрей Ларионов   Коммит по регистр...
563

e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
      // Форма Удаление пипла
      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   Андрей Ларионов   Коммит на понедел...
582
              $it->delete();
e3c7b0ffb   Андрей Ларионов   Коммит на понедел...
583
584
585
586
587
588
              return redirect()->route('index')->with('success', 'Вы успешно удалили свой аккаунт');
          } else {
              return redirect()->route('employer.delete_people')
                  ->withErrors( 'Неверный пароль! Нужен корректный пароль');
          }
      }
6370754b6   Андрей Ларионов   Обновление бага с...
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
      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   Андрей Ларионов   Коммит на понедел...
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
      // 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...
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
  
      //////////////////////////////////////////////////////////////////
      //
      //
      // Отправил сообщение
      //
      //
      //
      //
      //////////////////////////////////////////////////////////////////
      public function new_message(Request $request) {
          $params = $request->all();
  
          $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');
          }
          $message->flag_new = 1;
          $id_message = $message->save();
  
          $data['message_id'] = $id_message;
          $data['ad_employer_id'] = $params['_vacancy'];
          $data['job_title_id'] = 0;
  
          $data['flag'] = 1;
          $ad_responce = ad_response::create($data);
          return redirect()->route('employer.messages', ['type_message' => 'output']);
      }
  
      // Восстановление пароля
      public function repair_password(Request $request) {
          $params = $request->get('email');
  
  
      }
5b68533bb   Андрей Ларионов   Работа над проект...
674
  }