Blame view
app/Http/Controllers/EmployerController.php
32.5 KB
5b68533bb Работа над проект... |
1 2 3 |
<?php namespace App\Http\Controllers; |
e3c7b0ffb Коммит на понедел... |
4 5 |
use App\Classes\RusDate; use App\Classes\Tools; |
6e2255214 Работа над сообще... |
6 |
use App\Http\Requests\BaseUser_min_Request; |
e3c7b0ffb Коммит на понедел... |
7 8 |
use App\Http\Requests\FlotRequest; use App\Http\Requests\MessagesRequiest; |
7571b20fd Коммит 13 марта 2024 |
9 |
use App\Http\Requests\VacancyRequestEdit; |
d9da47508 changes for tasks... |
10 |
use App\Mail\MailCreateEmployer; |
e3c7b0ffb Коммит на понедел... |
11 |
use App\Mail\MailSotrudnichestvo; |
a67c9d7ef Массовая рассылка... |
12 |
use App\Mail\MassSendingMessages; |
e3c7b0ffb Коммит на понедел... |
13 |
use App\Mail\SendAllMessages; |
d152a3a68 Создание основных... |
14 |
use App\Models\Ad_employer; |
e3c7b0ffb Коммит на понедел... |
15 |
use App\Models\ad_response; |
d152a3a68 Создание основных... |
16 |
use App\Models\Category; |
712f07ca2 часть задачи по р... |
17 |
use App\Models\Chat; |
e3c7b0ffb Коммит на понедел... |
18 |
use App\Models\Employer; |
ab181e741 task-132985 autol... |
19 |
use App\Models\EmployerAutoliftOption; |
e3c7b0ffb Коммит на понедел... |
20 21 |
use App\Models\Flot; use App\Models\Job_title; |
dc2a9a876 Коммит на понедел... |
22 |
use App\Models\Like_worker; |
e3c7b0ffb Коммит на понедел... |
23 24 |
use App\Models\Message; use App\Models\Worker; |
a67c9d7ef Массовая рассылка... |
25 |
use App\Models\MessagesRequests; |
f3766c7c1 Коммит по регистр... |
26 27 |
use Carbon\Carbon; use Illuminate\Auth\Events\Registered; |
e3c7b0ffb Коммит на понедел... |
28 |
use Illuminate\Database\Eloquent\Builder; |
f86fd56d9 task-132985 autor... |
29 |
use Illuminate\Http\RedirectResponse; |
5b68533bb Работа над проект... |
30 |
use Illuminate\Http\Request; |
a13ce8670 Обновление проект... |
31 |
use Illuminate\Support\Facades\Auth; |
664449023 Employer personal... |
32 |
use Illuminate\Support\Facades\Cache; |
e3c7b0ffb Коммит на понедел... |
33 |
use Illuminate\Support\Facades\Hash; |
31e0a8793 task-132687 додел... |
34 |
use Illuminate\Support\Facades\Log; |
e3c7b0ffb Коммит на понедел... |
35 36 37 38 |
use Illuminate\Support\Facades\Mail; use Illuminate\Support\Facades\Storage; use App\Models\User as User_Model; use Illuminate\Support\Facades\Validator; |
d3496aa08 Изменения для раз... |
39 |
use App\Enums\DbExportColumns; |
f86fd56d9 task-132985 autor... |
40 41 |
use Illuminate\View\View; use JsonException; |
31e0a8793 task-132687 додел... |
42 |
use Throwable; |
5b68533bb Работа над проект... |
43 44 45 |
class EmployerController extends Controller { |
d152a3a68 Создание основных... |
46 47 |
public function vacancie($vacancy, Request $request) { $title = 'Заголовок вакансии'; |
d152a3a68 Создание основных... |
48 49 50 51 52 53 |
$Query = Ad_employer::with('jobs')-> with('cat')-> with('employer')-> with('jobs_code')-> select('ad_employers.*')-> where('id', '=', $vacancy)->get(); |
5131abdbe fixes |
54 55 56 57 58 |
if ($Query[0]->active_is===0 || $Query[0]->is_remove!=0){ abort(404); } |
ad2cc280b Правки финальные ... |
59 60 61 62 |
if (isset(Auth()->user()->id)) $uid = Auth()->user()->id; else $uid = 0; |
d152a3a68 Создание основных... |
63 64 |
$title = $Query[0]->name; if ($request->ajax()) { |
ad2cc280b Правки финальные ... |
65 |
return view('ajax.vacance-item', compact('Query','uid')); |
d152a3a68 Создание основных... |
66 |
} else { |
ad2cc280b Правки финальные ... |
67 |
return view('vacance-item', compact('title', 'Query', 'uid')); |
d152a3a68 Создание основных... |
68 69 |
} } |
a13ce8670 Обновление проект... |
70 71 72 73 74 75 |
public function logout() { Auth::logout(); return redirect()->route('index') ->with('success', 'Вы вышли из личного кабинета'); } |
e3c7b0ffb Коммит на понедел... |
76 |
|
6e2255214 Работа над сообще... |
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
public function employer_info() { // код юзера $user_info = Auth()->user(); // вьюшка для вывода данных return view('employers.info', compact('user_info')); } public function employer_info_save(User_Model $user, BaseUser_min_Request $request) { // Все данные через реквест $all = $request->all(); unset($all['_token']); // обновление $user->update($all); return redirect()->route('employer.employer_info'); } |
e3c7b0ffb Коммит на понедел... |
92 93 94 95 96 97 98 99 |
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')); } |
b950f3956 Обновление по про... |
100 101 102 103 104 105 106 107 |
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 Коммит на понедел... |
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
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(); |
b950f3956 Обновление по про... |
134 |
return redirect()->route('employer.slider_flot')->with('success', 'Новый корабль был добавлен'); |
e3c7b0ffb Коммит на понедел... |
135 |
} |
00974dd90 Коммит редактиров... |
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 |
public function edit_flot(Flot $Flot, Employer $Employer) { return view('employers.edit-flot', compact('Flot', 'Employer')); } public function update_flot(FlotRequest $request, Flot $Flot) { $params = $request->all(); if ($request->has('image')) { if (!empty($flot->image)) { Storage::delete($flot->image); } $params['image'] = $request->file('image')->store("flot", 'public'); } else { if (!empty($flot->image)) $params['image'] = $flot->image; } $Flot->update($params); return redirect()->route('employer.slider_flot')->with('success', 'Новый корабль был добавлен'); } |
e3c7b0ffb Коммит на понедел... |
155 156 157 158 |
public function delete_flot(Flot $Flot) { $data_flots = Flot::query()->where('employer_id', $Flot->employer_id)->get(); if (isset($Flot->id)) $Flot->delete(); |
b950f3956 Обновление по про... |
159 |
return redirect()->route('employer.slider_flot')->with('success', 'Корабль был удален'); |
e3c7b0ffb Коммит на понедел... |
160 161 162 163 |
} // Форма добавления вакансий public function cabinet_vacancie() { |
3256f8927 task-132687 minor... |
164 165 |
/** @var User_Model $user */ $user = Auth()->user(); |
231a1f4aa Проект финализация |
166 |
|
3256f8927 task-132687 minor... |
167 |
if ($user->is_public) { |
0fc30621f коммит от пятницы... |
168 |
$categories = Category::query()->active()->get(); |
3256f8927 task-132687 minor... |
169 170 171 172 173 174 175 176 177 178 179 180 |
$jobs = Job_title::query() ->orderByDesc('sort') ->OrderBy('name') ->where('is_remove', '=', '0') ->where('is_bd', '=', '0') ->get(); $Employer = Employer::query() ->with(['users', 'ads', 'flots']) ->whereHas('users', fn (Builder $query) => $query->where('id', $user->id)) ->get(); |
0fc30621f коммит от пятницы... |
181 |
return view('employers.add_vacancy', compact('Employer', 'jobs', 'categories')); |
0fc30621f коммит от пятницы... |
182 |
} |
3256f8927 task-132687 minor... |
183 |
|
674b6d78a not active employ... |
184 185 |
return redirect()->route('page', ['pages' => "Usloviya-razmescheniya"]); // return redirect()->route('employer.cabinet_vacancie_danger'); |
0fc30621f коммит от пятницы... |
186 187 188 189 190 |
} // Форма предупреждения об оплате public function cabinet_vacancie_danger() { return view('employers.add_vacancy_danger'); |
e3c7b0ffb Коммит на понедел... |
191 192 193 |
} // Сохранение вакансии |
7571b20fd Коммит 13 марта 2024 |
194 |
public function cabinet_vacancy_save1(VacancyRequestEdit $request) { |
2be890eea коммит по изменен... |
195 |
$params_emp = $request->all(); |
468369903 Изменение структу... |
196 |
|
2be890eea коммит по изменен... |
197 |
$params_job["job_title_id"] = $params_emp['job_title_id']; |
2be890eea коммит по изменен... |
198 199 |
$ad_jobs = Ad_employer::create($params_emp); |
468369903 Изменение структу... |
200 |
$ad_jobs->jobs()->sync($request->get('job_title_id')); |
d2fa9ea9e add vacancy creat... |
201 |
return redirect()->route('employer.vacancy_list')->with('success', 'Вакансия успешно опубликована'); |
e3c7b0ffb Коммит на понедел... |
202 203 204 205 206 |
} // Список вакансий public function vacancy_list(Request $request) { $id = Auth()->user()->id; |
f364ad5b7 Коммит по вакансиям |
207 |
|
e3c7b0ffb Коммит на понедел... |
208 |
$Employer = Employer::query()->where('user_id', $id)->first(); |
2b8dd10cb Правки по задачам |
209 210 211 212 213 |
$vacancy_list = Ad_employer::query() ->with('jobs') ->with('jobs_code') ->where('employer_id', $Employer->id) ->where('is_remove', 0) |
d62e4b4e7 правки |
214 |
->orderbyDesc('updated_at') |
2b8dd10cb Правки по задачам |
215 |
; |
365e6ad01 Реализация проекта |
216 |
|
f364ad5b7 Коммит по вакансиям |
217 218 219 220 |
if (($request->has('search')) && (!empty($request->get('search')))) { $search = $request->get('search'); $vacancy_list = $vacancy_list->where('name', 'LIKE', "%$search%"); } |
365e6ad01 Реализация проекта |
221 222 223 |
if ($request->get('sort')) { $sort = $request->get('sort'); switch ($sort) { |
3256f8927 task-132687 minor... |
224 225 226 227 228 229 230 231 |
case 'nopublic': $vacancy_list->orderByDesc('updated_at') ->where('active_is', 0); break; case 'public': $vacancy_list->orderByDesc('updated_at') ->where('active_is',1); break; default: $vacancy_list->orderByDesc('updated_at'); break; |
365e6ad01 Реализация проекта |
232 |
} |
8cbda1e86 Изменения для "Мо... |
233 |
} else { |
f0c09cba9 правки |
234 |
$vacancy_list = $vacancy_list->orderByDesc('updated_at')->orderBy('id'); |
365e6ad01 Реализация проекта |
235 |
} |
8cbda1e86 Изменения для "Мо... |
236 237 |
$vacancy_list = $vacancy_list->paginate(10); |
231a1f4aa Проект финализация |
238 |
|
365e6ad01 Реализация проекта |
239 240 241 242 243 |
if ($request->ajax()) { return view('employers.ajax.list_vacancy', compact('vacancy_list', 'Employer')); } else { return view('employers.list_vacancy', compact('vacancy_list', 'Employer')); } |
e3c7b0ffb Коммит на понедел... |
244 245 246 247 248 |
} // Карточка вакансии public function vacancy_edit(Ad_employer $ad_employer) { $id = Auth()->user()->id; |
f8a3cafe5 диалоговые пробле... |
249 |
$Positions = Category::query()->where('is_remove', '=', '0')->get(); |
141812b5d ОБновление среды ... |
250 |
|
c54cbb05e Коммит субботний |
251 252 253 |
$jobs = Job_title::query()->orderByDesc('sort')->OrderBy('name')-> where('is_remove', '=', '0')-> where('is_bd', '=', '0')->get(); |
f8a3cafe5 диалоговые пробле... |
254 |
|
c54cbb05e Коммит субботний |
255 256 |
$Employer = Employer::query()->with('users')->with('ads')-> with('flots')->where('user_id', $id)->first(); |
13522b2d9 Обновление по дол... |
257 |
|
f8a3cafe5 диалоговые пробле... |
258 |
return view('employers.edit_vacancy', compact('ad_employer', 'Positions','Employer', 'jobs')); |
7571b20fd Коммит 13 марта 2024 |
259 |
} |
e3c7b0ffb Коммит на понедел... |
260 |
|
7571b20fd Коммит 13 марта 2024 |
261 262 |
// Сохранение-редактирование записи public function vacancy_save_me(VacancyRequestEdit $request, Ad_employer $ad_employer) { |
231a1f4aa Проект финализация |
263 |
$params = $request->all(); |
7571b20fd Коммит 13 марта 2024 |
264 |
|
231a1f4aa Проект финализация |
265 |
$ad_employer->update($params); |
bae7fd15b task-132985 minor... |
266 267 |
$ad_employer->active_is = 1; $ad_employer->save(); |
c54cbb05e Коммит субботний |
268 |
$ad_employer->jobs()->sync($request->get('job_title_id')); |
231a1f4aa Проект финализация |
269 |
|
96789e002 задаи 16,17,18 + ... |
270 271 272 273 274 275 |
$id = Auth()->user()->id; $Positions = Category::query()->where('is_remove', '=', '0')->get(); $jobs = Job_title::query()->orderByDesc('sort')->OrderBy('name') ->where('is_remove', '=', '0') ->where('is_bd', '=', '0') ->get(); |
7571b20fd Коммит 13 марта 2024 |
276 |
|
96789e002 задаи 16,17,18 + ... |
277 278 |
$Employer = Employer::query() ->with('users')->with('ads')->with('flots')->where('user_id', $id)->first(); |
bbaa986c0 vacancy update an... |
279 |
|
c51424e4b vacancy update re... |
280 |
return redirect()->route('employer.vacancy_list')->with('success', 'Вакансия успешно отредактирована'); |
e3c7b0ffb Коммит на понедел... |
281 282 283 284 285 286 287 288 289 290 291 292 293 294 |
} // Сохранение карточки вакансии 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') |
664449023 Employer personal... |
295 |
->with('success', 'Вакансия удалена'); |
e3c7b0ffb Коммит на понедел... |
296 297 298 299 |
} // Обновление даты public function vacancy_up(Ad_employer $ad_employer) { |
6bad752f0 task-132687 minor... |
300 301 302 |
$up = date('m/d/Y h:i:s', time()); $ad_employer->updated_at = $up; $ad_employer->save(); |
e3c7b0ffb Коммит на понедел... |
303 |
|
664449023 Employer personal... |
304 305 |
return redirect()->route('employer.vacancy_list') ->with('success', 'Вакансия поднята'); |
e3c7b0ffb Коммит на понедел... |
306 307 308 309 |
} //Видимость вакансии public function vacancy_eye(Ad_employer $ad_employer, $status) { |
664449023 Employer personal... |
310 311 312 313 |
$statusMessages = [ 'Вакансия скрыта', 'Вакансия видна работникам' ]; |
e3c7b0ffb Коммит на понедел... |
314 315 316 |
$vac_emp = Ad_employer::findOrFail($ad_employer->id); $vac_emp->active_is = $status; $vac_emp->save(); |
664449023 Employer personal... |
317 318 |
return redirect()->route('employer.vacancy_list') ->with('success', $statusMessages[$status]); |
e3c7b0ffb Коммит на понедел... |
319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 |
} //Вакансия редактирования (шаблон) 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%"); } |
b947a4cd5 Коммит суббота 2 |
334 |
$answer = $answer->with('response')->OrderByDESC('id')->get(); |
e3c7b0ffb Коммит на понедел... |
335 336 337 338 339 340 341 342 343 344 345 346 347 |
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; |
09a2fc9d8 messages and subs... |
348 |
$superAdmin =User_Model::superAdmin(); |
2f592b01f сообщения |
349 |
$chats = Chat::get_user_chats($user_id); |
09a2fc9d8 messages and subs... |
350 |
$admin_chat = Chat::get_user_admin_chat($user_id); |
2f592b01f сообщения |
351 |
$user_type = 'employer'; |
e3c7b0ffb Коммит на понедел... |
352 |
|
09a2fc9d8 messages and subs... |
353 |
return view('employers.messages', compact('chats', 'admin_chat', 'user_id', 'user_type','superAdmin')); |
e3c7b0ffb Коммит на понедел... |
354 355 356 |
} // Диалог между пользователями |
f98ccb92c Массова рассылка |
357 |
public function dialog(Chat $chat, Request $request) { |
6e2255214 Работа над сообще... |
358 359 360 361 362 363 |
// Получение параметров. if ($request->has('ad_employer')){ $ad_employer = $request->get('ad_employer'); } else { $ad_employer = 0; } |
09a2fc9d8 messages and subs... |
364 |
$superAdmin =User_Model::superAdmin(); |
6e2255214 Работа над сообще... |
365 |
|
f98ccb92c Массова рассылка |
366 367 |
$sender = User_Model::query()->with('workers')->with('employers')->where('id', $chat->user_id)->first(); $companion = User_Model::query()->with('workers')->with('employers')->where('id', $chat->to_user_id)->first(); |
e3c7b0ffb Коммит на понедел... |
368 |
|
f98ccb92c Массова рассылка |
369 |
$Messages = Chat::get_chat_messages($chat); |
e3c7b0ffb Коммит на понедел... |
370 |
|
f98ccb92c Массова рассылка |
371 |
Message::where('user_id', '=', $chat->to_user_id)->where('to_user_id', '=', $chat->user_id)->update(['flag_new' => 0]); |
a93910932 рефакторинг сообщ... |
372 |
|
09a2fc9d8 messages and subs... |
373 |
return view('employers.dialog', compact('companion', 'sender', 'ad_employer', 'Messages','chat','superAdmin')); |
e3c7b0ffb Коммит на понедел... |
374 |
} |
2f592b01f сообщения |
375 376 377 |
public function pin_chat(Request $request){ $chat_id = $request->get('id'); $is_fixed = $request->get('is_fixed'); |
15f704551 employer personal... |
378 379 380 |
$chat = Chat::pin_chat($chat_id, $is_fixed); $message = $chat->is_fixed ? 'Сообщение закреплено' : 'Сообщение откреплено'; return redirect()->back()->with('success', $message); |
2f592b01f сообщения |
381 382 383 384 385 386 |
} public function remove_chat(Request $request){ $chat_id = $request->get('id'); Chat::remove_chat($chat_id); } |
f3766c7c1 Коммит по регистр... |
387 |
// Регистрация работодателя |
ef73d19b1 worker/amployer r... |
388 389 |
public function register_employer(Request $request) { |
f3766c7c1 Коммит по регистр... |
390 |
$rules = [ |
ef73d19b1 worker/amployer r... |
391 392 393 |
'surname' => ['nullable', 'string', 'max:255'], 'name_man' => ['nullable', 'string', 'max:255'], 'email' => ['required', 'email', 'max:255', 'unique:users'], |
f3766c7c1 Коммит по регистр... |
394 |
'name_company' => ['required', 'string', 'max:255'], |
e20c428e5 Коммит по 20 числу |
395 |
'password' => ['required', 'string', 'min:6'], |
ef73d19b1 worker/amployer r... |
396 397 |
'password_confirmation' => ['required', 'same:password'], 'politik' => ['required', 'accepted'], |
f3766c7c1 Коммит по регистр... |
398 |
]; |
f3766c7c1 Коммит по регистр... |
399 400 |
$messages = [ 'required' => 'Укажите обязательное поле', |
ef73d19b1 worker/amployer r... |
401 402 403 |
'email' => 'Введите корректный email', 'unique' => 'Email уже зарегистрирован', 'same' => 'Пароль и подтверждение пароля не совпадают', |
f3766c7c1 Коммит по регистр... |
404 |
'min' => [ |
ef73d19b1 worker/amployer r... |
405 |
'string' => 'Поле должно быть не менее :min символов', |
f3766c7c1 Коммит по регистр... |
406 407 |
], 'max' => [ |
ef73d19b1 worker/amployer r... |
408 409 410 |
'string' => 'Поле должно быть не более :max символов', ], 'accepted' => 'Необходимо согласиться с политикой конфиденциальности', |
f3766c7c1 Коммит по регистр... |
411 |
]; |
ef73d19b1 worker/amployer r... |
412 |
$validator = Validator::make($request->all(), $rules, $messages); |
2be890eea коммит по изменен... |
413 |
|
ef73d19b1 worker/amployer r... |
414 415 |
if ($validator->fails()) { return response()->json(['ERRORS' => $validator->errors()], 422); |
f3766c7c1 Коммит по регистр... |
416 |
} |
ef73d19b1 worker/amployer r... |
417 |
$params = $request->all(); |
b17c06a23 Коммит по системе... |
418 |
|
ef73d19b1 worker/amployer r... |
419 |
if (empty($params['surname'])) { |
b950f3956 Обновление по про... |
420 421 |
$params['surname'] = 'Неизвестно'; } |
ef73d19b1 worker/amployer r... |
422 |
if (empty($params['name_man'])) { |
b950f3956 Обновление по про... |
423 424 |
$params['name_man'] = 'Неизвестно'; } |
f3766c7c1 Коммит по регистр... |
425 |
|
ef73d19b1 worker/amployer r... |
426 |
if ($user = $this->create($params)) { |
f3766c7c1 Коммит по регистр... |
427 |
event(new Registered($user)); |
330dc3881 Коммит обновление... |
428 |
|
ad0b69c97 task-132687 tasks... |
429 430 431 |
try { Mail::to(env('EMAIL_ADMIN'))->send(new MailCreateEmployer($params)); } catch (Throwable $e) { |
ef73d19b1 worker/amployer r... |
432 |
Log::error('Ошибка при отправке письма: ' . $e->getMessage()); |
ad0b69c97 task-132687 tasks... |
433 |
} |
d9da47508 changes for tasks... |
434 |
|
f3766c7c1 Коммит по регистр... |
435 |
Auth::guard()->login($user); |
b17c06a23 Коммит по системе... |
436 |
|
ef73d19b1 worker/amployer r... |
437 438 439 |
return response()->json([ 'REDIRECT' => route('employer.cabinet'), ]); |
f3766c7c1 Коммит по регистр... |
440 |
} |
ef73d19b1 worker/amployer r... |
441 442 443 444 |
return response()->json([ 'ERROR' => 'Произошла ошибка при регистрации. Попробуйте снова.', ]); |
f3766c7c1 Коммит по регистр... |
445 446 447 448 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 |
} // Создание пользователя 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 Коммит на понедел... |
477 478 479 |
// Отправка сообщения от работодателя public function send_message(MessagesRequiest $request) { $params = $request->all(); |
7f3406fc6 fix subscribe and... |
480 |
|
e3c7b0ffb Коммит на понедел... |
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 |
$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 = [ |
3d041f3f0 Изменения для соо... |
497 498 |
'text' => 'nullable|required_without:file|min:1|max:150000', 'file' => 'nullable|file|mimes:doc,docx,xlsx,csv,txt,xlx,xls,pdf|max:150000' |
e3c7b0ffb Коммит на понедел... |
499 500 |
]; $messages = [ |
3d041f3f0 Изменения для соо... |
501 |
'required_without' => 'Поле «:attribute» обязательно, если файл не прикреплен', |
e3c7b0ffb Коммит на понедел... |
502 503 504 505 506 507 508 509 510 511 512 513 514 |
'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); |
333b51535 правки |
515 |
if ($validator->fails()) { |
6e9c6423b task-132687 tasks... |
516 517 |
return redirect()->route('cabinet.messages', ['type_message' => 'input'])->withErrors($validator); } |
712f07ca2 часть задачи по р... |
518 |
|
6e9c6423b task-132687 tasks... |
519 520 |
$new_message = Message::add_message($request, $user1, $user2, $request->all(), file_store_path: 'messages'); return redirect()->route('employer.dialog', ['chat' => $new_message->chat_id_from]); |
e3c7b0ffb Коммит на понедел... |
521 |
|
e3c7b0ffb Коммит на понедел... |
522 523 524 |
} //Избранные люди |
ad0b69c97 task-132687 tasks... |
525 526 527 528 529 530 531 |
public function favorites(Request $request) { $likedWorkersIds = Like_worker::query() ->where('user_id', Auth::user()->id) ->get() ->pluck('code_record') ->toArray(); |
dc2a9a876 Коммит на понедел... |
532 |
|
ad0b69c97 task-132687 tasks... |
533 534 |
$workerBuilder = Worker::query() ->whereIn('id', $likedWorkersIds); |
e3c7b0ffb Коммит на понедел... |
535 |
|
e3c7b0ffb Коммит на понедел... |
536 537 |
if (($request->has('search')) && (!empty($request->get('search')))) { $search = $request->get('search'); |
ad0b69c97 task-132687 tasks... |
538 539 |
$workerBuilder->whereHas('users', function (Builder $query) use ($search) { $query->where('surname', 'LIKE', "%$search%") |
6bad752f0 task-132687 minor... |
540 |
->orWhere('name_man', 'LIKE', "%$search%") |
ad0b69c97 task-132687 tasks... |
541 542 |
->orWhere('surname2', 'LIKE', "%$search%"); }); |
e3c7b0ffb Коммит на понедел... |
543 |
} |
ad0b69c97 task-132687 tasks... |
544 |
$Workers = $workerBuilder->get(); |
f3ba708ab Работа с избранными |
545 |
|
e3c7b0ffb Коммит на понедел... |
546 547 548 549 550 |
return view('employers.favorite', compact('Workers')); } // База данных public function bd(Request $request) { |
36b239fd9 user role fixes |
551 552 553 |
if (!Auth::user()->show_database) { return redirect()->route('employer.employer_info'); } |
b67b94477 Задачи 33,34,35 +... |
554 |
$users = User_Model::query()->with('workers')->with('jobtitles'); |
b950f3956 Обновление по про... |
555 556 557 |
if ($request->has('search')) { $find_key = $request->get('search'); |
e3c7b0ffb Коммит на понедел... |
558 |
$users = $users->where('name', 'LIKE', "%$find_key%") |
b950f3956 Обновление по про... |
559 560 |
->orWhere('surname', 'LIKE', "%$find_key%") ->orWhere('name_man', 'LIKE', "%$find_key%") |
e3c7b0ffb Коммит на понедел... |
561 562 563 |
->orWhere('email', 'LIKE', "%$find_key%") ->orWhere('telephone', 'LIKE', "%$find_key%"); } |
664449023 Employer personal... |
564 |
$count_users = $users->count(); |
e3c7b0ffb Коммит на понедел... |
565 566 |
// Данные |
5c0ae0519 task-132687 minor... |
567 568 |
$users = $users ->Baseuser() |
664449023 Employer personal... |
569 570 |
->orderByDesc('created_at') ->paginate(10); |
e3c7b0ffb Коммит на понедел... |
571 |
|
d3496aa08 Изменения для раз... |
572 |
$export_options = DbExportColumns::toArray(); |
eb5ae252d Фиксы |
573 574 |
$jobs_titles = Job_title::select('id', 'name') ->where('is_remove', '=', 0) |
9d99612c9 Фиксы |
575 |
->where('is_bd', '=', 2) |
acac693cc Задачи 36,37,38,4... |
576 |
->orderByDesc('sort') |
eb5ae252d Фиксы |
577 578 579 580 |
->orderBy('name', 'asc') ->get() ->toArray() ; |
b950f3956 Обновление по про... |
581 |
|
d3496aa08 Изменения для раз... |
582 |
return view('employers.bd', compact('users', 'count_users', 'export_options', 'jobs_titles')); |
e3c7b0ffb Коммит на понедел... |
583 584 585 586 |
} //Настройка уведомлений public function subscribe() { |
7f3406fc6 fix subscribe and... |
587 588 589 590 |
$user=Auth::user(); return view('employers.subcribe',compact('user')); |
e3c7b0ffb Коммит на понедел... |
591 592 593 594 |
} //Установка уведомлений сохранение public function save_subscribe(Request $request) { |
09a2fc9d8 messages and subs... |
595 |
|
e3c7b0ffb Коммит на понедел... |
596 |
$msg = $request->validate([ |
09a2fc9d8 messages and subs... |
597 598 599 600 601 602 603 604 605 606 |
'email' => 'required|email|min:5|max:255', ]); $user= Auth::user(); User_Model::updateOrCreate( ['id' => $user->id], ['subscribe_email' => $request->email, 'subscribe' => request()->has('email_msg') && request('email_msg') === 'on' ? 1 : 0 ] ); |
ef85e20c2 show popup on sub... |
607 |
return redirect()->route('employer.subscribe')->with('success', 'Ваши изменения успешно сохранены'); |
e3c7b0ffb Коммит на понедел... |
608 |
} |
e3c7b0ffb Коммит на понедел... |
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 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 |
//Сбросить форму с паролем 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 Коммит по регистр... |
651 |
|
e3c7b0ffb Коммит на понедел... |
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 |
// Форма Удаление пипла 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 Коммит на понедел... |
670 |
$it->delete(); |
e3c7b0ffb Коммит на понедел... |
671 672 673 674 675 676 |
return redirect()->route('index')->with('success', 'Вы успешно удалили свой аккаунт'); } else { return redirect()->route('employer.delete_people') ->withErrors( 'Неверный пароль! Нужен корректный пароль'); } } |
6370754b6 Обновление бага с... |
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 |
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 Коммит на понедел... |
693 694 |
// Рассылка сообщений public function send_all_messages() { |
c32d1a96e Работа по почтовы... |
695 |
$id = Auth()->user()->id; |
2fcce02ca Коммит по работод... |
696 |
$sending = Employer::query()->where('user_id', '=', "$id")->first(); |
f9f63a2c4 Коммит понедельника |
697 |
|
a67c9d7ef Массовая рассылка... |
698 699 |
$job_titles = Job_title::query() ->where('is_remove', '=', 0) |
ad0b69c97 task-132687 tasks... |
700 |
->where('is_bd', '=', 1) |
a67c9d7ef Массовая рассылка... |
701 |
->orderByDesc('sort') |
31e0a8793 task-132687 додел... |
702 |
->get(); |
a67c9d7ef Массовая рассылка... |
703 |
|
c32d1a96e Работа по почтовы... |
704 |
if ($sending->sending_is) |
a67c9d7ef Массовая рассылка... |
705 |
return view('employers.send_all', compact('job_titles')); |
c32d1a96e Работа по почтовы... |
706 707 |
else return view('employers.send_all_danger'); |
e3c7b0ffb Коммит на понедел... |
708 709 710 711 712 |
} // Отправка сообщений для информации public function send_all_post(Request $request) { $data = $request->all(); |
a67c9d7ef Массовая рассылка... |
713 |
$data['user'] = Auth()->user(); |
e3c7b0ffb Коммит на понедел... |
714 |
|
a67c9d7ef Массовая рассылка... |
715 |
$id = MessagesRequests::create([ |
248330cb1 task-132687 bugfix |
716 717 |
'user_id' => $data['user']->id, 'job_titles' => isset($data['job_title_ids']) ? json_encode($data['job_title_ids']) : null, |
a67c9d7ef Массовая рассылка... |
718 719 |
'text' => $data['message_text'], ]); |
e3c7b0ffb Коммит на понедел... |
720 |
|
31e0a8793 task-132687 додел... |
721 722 723 724 725 726 727 |
try { if (!empty($id)) { Mail::to(env('EMAIL_ADMIN'))->send(new MassSendingMessages($data)); } } catch (Throwable $e) { Log::error($e); return redirect()->route('employer.send_all_messages')->with('error', 'Ошибка почтового сервера, пожалуйста, повторите рассылку позднее'); |
a67c9d7ef Массовая рассылка... |
728 |
} |
a67c9d7ef Массовая рассылка... |
729 |
return redirect()->route('employer.send_all_messages')->with('success', 'Запрос на рассылку был успешно отправлен.'); |
e3c7b0ffb Коммит на понедел... |
730 731 732 733 734 735 736 737 |
} // База резюме 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... |
738 739 |
////////////////////////////////////////////////////////////////// |
b6103c749 Обновление js и c... |
740 |
// Отправил сообщение |
b6103c749 Обновление js и c... |
741 |
////////////////////////////////////////////////////////////////// |
ad0b69c97 task-132687 tasks... |
742 743 |
public function new_message(Request $request) { |
b6103c749 Обновление js и c... |
744 |
$params = $request->all(); |
712f07ca2 часть задачи по р... |
745 |
|
465aace57 task-132687 minor... |
746 |
$id = $params['_user_id']; |
712f07ca2 часть задачи по р... |
747 |
$message_params = [ |
465aace57 task-132687 minor... |
748 749 750 |
'title' => $params['title'], 'text' => $params['text'], 'ad_employer_id' => $params['_vacancy'], |
712f07ca2 часть задачи по р... |
751 752 |
'flag_new' => 1 ]; |
b6103c749 Обновление js и c... |
753 |
|
6e9c6423b task-132687 tasks... |
754 |
$message = Message::add_message( |
712f07ca2 часть задачи по р... |
755 |
$request, |
465aace57 task-132687 minor... |
756 757 |
$params['_user_id'], $params['_to_user_id'], |
712f07ca2 часть задачи по р... |
758 759 760 |
$message_params, file_store_path: "worker/$id" ); |
b6103c749 Обновление js и c... |
761 |
|
3256f8927 task-132687 minor... |
762 |
return redirect()->route('employer.dialog', ['chat' => $message->chat_id_to]); |
b6103c749 Обновление js и c... |
763 764 765 766 767 |
} // Восстановление пароля public function repair_password(Request $request) { $params = $request->get('email'); |
231a1f4aa Проект финализация |
768 |
} |
b6103c749 Обновление js и c... |
769 |
|
231a1f4aa Проект финализация |
770 771 772 |
// Избранные люди на корабль public function selected_people(Request $request) { $id = $request->get('id'); |
f364ad5b7 Коммит по вакансиям |
773 774 775 776 777 |
$favorite_people = Job_title::query()->orderByDesc('sort')->OrderBy('name')-> where('is_remove', '=', '0')-> where('is_bd', '=', '0')-> where('position_id', $id)-> get(); |
231a1f4aa Проект финализация |
778 |
return view('favorite_people', compact('favorite_people')); |
b6103c749 Обновление js и c... |
779 |
} |
f86fd56d9 task-132985 autor... |
780 781 782 783 |
/** * @throws JsonException */ |
36b239fd9 user role fixes |
784 |
public function vacancyAutoLiftForm(): View|RedirectResponse |
f86fd56d9 task-132985 autor... |
785 |
{ |
36b239fd9 user role fixes |
786 787 788 |
if (!Auth::user()->can_autolift) { return redirect()->route('employer.employer_info'); } |
f86fd56d9 task-132985 autor... |
789 790 791 792 793 794 |
$employer = Auth::user()->employers[0]; $vacancies = $employer ->ads() ->where('is_remove', 0) ->where('active_is', 1) ->get(); |
ab181e741 task-132985 autol... |
795 |
$options = $employer->autoliftOptions ?? new EmployerAutoliftOption(); |
f86fd56d9 task-132985 autor... |
796 |
|
3801c86ea fix autolift left... |
797 798 799 800 801 802 803 804 |
$leftDays = 0; if ($options->days_repeat) { $leftDays = $options->days_repeat - now()->diffInDays(Carbon::parse($options->created_at)); } return view('employers.vacancy_autolift', compact('vacancies', 'options', 'leftDays')); |
f86fd56d9 task-132985 autor... |
805 806 807 808 809 810 811 812 |
} /** * @throws JsonException */ public function vacancyAutoLiftSave(Request $request) { $employer = Auth::user()->employers[0]; |
ab181e741 task-132985 autol... |
813 814 815 816 817 |
$employer->autoliftOptions()->updateOrCreate( [ 'employer_id' => $employer->id, ], [ |
bae7fd15b task-132985 minor... |
818 |
'is_enabled' => $request->get('is_enabled') === 'true', |
ab181e741 task-132985 autol... |
819 820 821 822 823 824 825 826 |
'times_per_day' => $request->get('times_per_day'), 'days_repeat' => $request->get('days_repeat'), 'time_send_first' => $request->get('time_send_first'), 'time_send_second' => $request->get('time_send_second'), 'time_send_third' => $request->get('time_send_third'), 'time_send_tg' => $request->get('time_send_tg'), ] ); |
f86fd56d9 task-132985 autor... |
827 828 |
foreach ($request->get('vacancies') as $vacancy) { |
8b91f8c7f fix vacancy autolift |
829 830 831 832 833 834 835 836 |
if ($vacancy['autolift_site']) { Ad_employer::query() ->where('id', $vacancy['id']) ->update([ 'autolift_site' => $vacancy['autolift_site'] === 'true', //they're arriving as strings 'autosend_tg' => $vacancy['autosend_tg'] === 'true', ]); } |
f86fd56d9 task-132985 autor... |
837 838 839 840 841 842 843 |
} return response(['success' => true]); } public function autoresponder() { |
8ec6b4403 task-132985 autor... |
844 845 |
$user = Auth::user(); return view('employers.autoresponder', compact('user')); |
f86fd56d9 task-132985 autor... |
846 847 848 849 |
} public function autoresponderSave(Request $request): RedirectResponse { |
8ec6b4403 task-132985 autor... |
850 851 852 853 |
$user = Auth::user(); $user->autoresponder = $request->get('autoresponder', false) === 'on'; $user->autoresponder_message = $request->get('autoresponder_message'); $user->save(); |
f86fd56d9 task-132985 autor... |
854 855 856 |
return redirect(route('employer.autoresponder')); } |
5b68533bb Работа над проект... |
857 |
} |