Blame view
app/Http/Controllers/MainController.php
17.3 KB
02a1ed535 Первый коммит Rek... |
1 2 3 |
<?php namespace App\Http\Controllers; |
dc2a9a876 Коммит на понедел... |
4 |
use App\Classes\RusDate; |
b6103c749 Обновление js и c... |
5 6 7 |
use App\Classes\Tools; use App\Mail\MailRegistration; use App\Mail\MailRepair; |
d152a3a68 Создание основных... |
8 |
use App\Models\Ad_employer; |
365e6ad01 Реализация проекта |
9 |
use App\Models\Ad_jobs; |
5b68533bb Работа над проект... |
10 |
use App\Models\Category; |
d152a3a68 Создание основных... |
11 |
use App\Models\Education; |
5b68533bb Работа над проект... |
12 |
use App\Models\Employer; |
2a7870bed Обновление главно... |
13 |
use App\Models\employers_main; |
5b68533bb Работа над проект... |
14 |
use App\Models\Job_title; |
dc2a9a876 Коммит на понедел... |
15 16 |
use App\Models\Like_vacancy; use App\Models\Like_worker; |
5b68533bb Работа над проект... |
17 |
use App\Models\News; |
f950a1227 Коммит обновление... |
18 |
use App\Models\Positions; |
5b68533bb Работа над проект... |
19 |
use App\Models\reclame; |
b6103c749 Обновление js и c... |
20 |
use App\Models\User; |
02a1ed535 Первый коммит Rek... |
21 |
use Illuminate\Http\Request; |
a13ce8670 Обновление проект... |
22 |
use Illuminate\Support\Facades\Auth; |
365e6ad01 Реализация проекта |
23 |
use Illuminate\Support\Facades\DB; |
b6103c749 Обновление js и c... |
24 25 |
use Illuminate\Support\Facades\Hash; use Illuminate\Support\Facades\Mail; |
a13ce8670 Обновление проект... |
26 |
use Illuminate\Support\Facades\Validator; |
a9dfa8c95 Обновление на 7 м... |
27 |
use App\Classes\StatusUser; |
02a1ed535 Первый коммит Rek... |
28 29 30 |
class MainController extends Controller { |
1d1c16604 Фрондэнд - главна... |
31 |
// Главная страница публичной части |
02a1ed535 Первый коммит Rek... |
32 |
public function index() { |
5b68533bb Работа над проект... |
33 34 35 36 37 38 39 |
$news = News::query()->orderBy('id')->limit(6)->get(); $categories = Category::query()->selectRaw('count(ad_employers.id) as cnt, categories.*') ->join('ad_employers', 'ad_employers.category_id', '=', 'categories.id') ->OrderByDesc('created_at') ->GroupBy('categories.id') ->get(); |
f3f96e393 Результат финал |
40 |
$Position = Category::query()->where('is_remove', '=', '0')->get(); |
bb21d1ccb Суббота работа на... |
41 |
|
31fe4e458 Показ проекта зак... |
42 |
/*$BigFlot = Array(); |
f950a1227 Коммит обновление... |
43 44 45 46 47 48 49 50 |
foreach ($Position as $position) { $BigFlot[] = DB::table('ad_jobs')->selectRaw('name, job_titles.id as id_title, count(`ad_jobs`.`id`) as cnt, ad_jobs.position_ship')-> orderBy('job_titles.sort')-> join('job_titles', 'job_titles.id', '=', 'ad_jobs.job_title_id')-> where('position_ship', "$position->name")-> groupby('job_title_id','position_ship')-> get(); } |
bb21d1ccb Суббота работа на... |
51 |
|
31fe4e458 Показ проекта зак... |
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
$BigFlot = Array(); foreach ($Position as $position) { $BigFlot[] = Ad_jobs::query()->with(['job_title' => function($query) { $query->OrderBy('sort'); }])->whereHas('job_title', function ($query) use ($position) { $query->where('position_id', $position->id); })-> distinct('job_title_id')-> get(); }*/ $BigFlot = Array(); foreach ($Position as $position) { $BigFlot[] = DB::table('ad_jobs')-> selectRaw('name, count(`ad_jobs`.`id`) as cnt, job_title_id, job_titles.name')-> orderByDesc('job_titles.sort')-> join('job_titles', 'job_titles.id', '=', 'ad_jobs.job_title_id')-> where('job_titles.position_id', $position->id)-> groupby('job_title_id')-> get(); } |
2a7870bed Обновление главно... |
75 |
$employers = employers_main::query()->with('employer')->orderBy('id')->limit(8)->get(); |
365e6ad01 Реализация проекта |
76 |
$vacancy = Ad_jobs::query()->with('job_title')->orderBy('position_ship')->get(); |
f950a1227 Коммит обновление... |
77 |
return view('index', compact('news', 'categories', 'employers', 'vacancy', 'BigFlot', 'Position')); |
5b68533bb Работа над проект... |
78 |
} |
a13ce8670 Обновление проект... |
79 80 81 82 83 84 85 86 87 |
public function search_vacancies(Request $request) { if ($request->has('search')) { $search = $request->get('search'); $job_titles = Job_title::query()->where('name', 'LIKE', "%$search%")->first(); if (isset($job_titles->id)) if ($job_titles->id > 0) return redirect()->route('vacancies', ['job' => $job_titles->id]); } } |
dc2a9a876 Коммит на понедел... |
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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
// Лайк вакансии public function like_vacancy(Request $request) { $IP_address = RusDate::ip_addr_client(); if ($request->has('code_record')) { if ($request->has('delete')) { $atomic_era = Like_vacancy::select('id')-> where('code_record', '=', $request-> get('code_record'))->first(); DB::table('like_vacancy')->where('code_record', $request->get('code_record'))->delete(); } else { $params = $request->all(); $params['ip_address'] = $IP_address; Like_vacancy::create($params); } } } // Лайк соискателю. public function like_worker(Request $request) { $IP_address = RusDate::ip_addr_client(); if ($request->has('code_record')) { if ($request->has('delete')) { $atomic_era = Like_worker::select('id')-> where('code_record', '=', $request-> get('code_record'))->first(); DB::table('like_worker')->where('code_record', $request->get('code_record'))->delete(); return "Вот и результат удаления!"; } else { $params = $request->all(); $params['ip_address'] = $IP_address; Like_worker::create($params); } } } |
5b68533bb Работа над проект... |
129 130 131 132 133 134 135 136 137 138 |
public function vacancies(Request $request) { //должности $Job_title = Job_title::query()->orderBy('name')->get(); $categories = Category::query()->selectRaw('count(ad_employers.id) as cnt, categories.*') ->selectRaw('min(ad_employers.salary) as min_salary, max(ad_employers.salary) as max_salary') ->join('ad_employers', 'ad_employers.category_id', '=', 'categories.id') ->join('ad_jobs', 'ad_jobs.ad_employer_id', '=', 'ad_employers.id'); //категории и вакансии |
a13ce8670 Обновление проект... |
139 |
if (($request->has('job')) && ($request->get('job') > 0)) { |
6b9776dfb Вторник работа на... |
140 |
$categories = $categories->Where('job_title_id', '=', $request->get('job')); |
5b68533bb Работа над проект... |
141 |
} |
6b9776dfb Вторник работа на... |
142 |
$categories = $categories->OrderByDesc('created_at')->GroupBy('categories.id')->get(); |
f3f96e393 Результат финал |
143 |
$Position = Category::query()->where('is_remove', '=', '0')->get(); |
365e6ad01 Реализация проекта |
144 |
|
31fe4e458 Показ проекта зак... |
145 |
/*$BigFlot = Array(); |
f950a1227 Коммит обновление... |
146 147 148 149 150 151 152 153 154 155 |
foreach ($Position as $position) { $War_flot = DB::table('ad_jobs')->selectRaw('name, job_titles.id as id_title, count(`ad_jobs`.`id`) as cnt, ad_jobs.position_ship')-> orderBy('job_titles.sort')-> join('job_titles', 'job_titles.id', '=', 'ad_jobs.job_title_id')-> where('position_ship', "$position->name"); if (($request->has('job')) && ($request->get('job') > 0)) { $War_flot = $War_flot->where('job_title_id', $request->get('job')); } $War_flot = $War_flot->groupby('job_title_id','position_ship')->get(); $BigFlot[] = $War_flot; |
31fe4e458 Показ проекта зак... |
156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
}*/ $BigFlot = Array(); foreach ($Position as $position) { $WarFlot = DB::table('ad_jobs')-> selectRaw('name, count(`ad_jobs`.`id`) as cnt, job_title_id, job_titles.name')-> orderByDesc('job_titles.sort')-> join('job_titles', 'job_titles.id', '=', 'ad_jobs.job_title_id')-> where('job_titles.position_id', $position->id); if (($request->has('job')) && ($request->get('job') > 0)) { $WarFlot = $WarFlot->where('job_title_id', $request->get('job')); } $WarFlot = $WarFlot->groupby('job_title_id')->get(); $BigFlot[] = $WarFlot; |
98484071e Обновленная стран... |
170 |
} |
dc2a9a876 Коммит на понедел... |
171 |
|
5b68533bb Работа над проект... |
172 |
if ($request->ajax()) { |
f950a1227 Коммит обновление... |
173 |
return view('ajax.new_sky', compact('categories', 'BigFlot', 'Position')); |
5b68533bb Работа над проект... |
174 |
} else { |
f950a1227 Коммит обновление... |
175 |
return view('new_sky', compact('Job_title', 'categories', 'BigFlot', 'Position')); |
5b68533bb Работа над проект... |
176 177 178 179 |
} } //Вакансии категория детальная |
d152a3a68 Создание основных... |
180 |
public function list_vacancies(Category $categories, Request $request) { |
a9dfa8c95 Обновление на 7 м... |
181 182 183 184 |
if (isset(Auth()->user()->id)) $uid = Auth()->user()->id; else $uid = 0; |
d152a3a68 Создание основных... |
185 186 187 188 189 |
$Query = Ad_employer::with('jobs')-> with('cat')-> with('employer')-> whereHas('jobs_code', function ($query) use ($request) { |
a9dfa8c95 Обновление на 7 м... |
190 |
if (null !== ($request->get('job')) && ($request->get('job') !== 0)) { |
d152a3a68 Создание основных... |
191 192 |
$query->where('job_title_id', $request->get('job')); } |
d152a3a68 Создание основных... |
193 194 |
}) ->select('ad_employers.*'); |
a9dfa8c95 Обновление на 7 м... |
195 |
|
ad2cc280b Правки финальные ... |
196 |
if (isset($categories->id) && ($categories->id > 0)) { |
d152a3a68 Создание основных... |
197 198 |
$Query = $Query->where('category_id', '=', $categories->id); $Name_categori = Category::query()->where('id', '=', $categories->id)->get(); |
ad2cc280b Правки финальные ... |
199 200 |
} else { $Name_categori = ''; |
5b68533bb Работа над проект... |
201 |
} |
dc2a9a876 Коммит на понедел... |
202 |
if ($request->get('sort')) { |
a9dfa8c95 Обновление на 7 м... |
203 |
$sort = $request->get('sort'); |
ad2cc280b Правки финальные ... |
204 |
|
a9dfa8c95 Обновление на 7 м... |
205 206 207 208 209 210 211 212 |
switch ($sort) { case 'name_up': $Query = $Query->orderBy('name')->orderBy('id'); break; case 'name_down': $Query = $Query->orderByDesc('name')->orderby('id'); break; case 'created_at_up': $Query = $Query->OrderBy('created_at')->orderBy('id'); break; case 'created_at_down': $Query = $Query->orderByDesc('created_at')->orderBy('id'); break; case 'default': $Query = $Query->orderBy('id')->orderby('updated_at'); break; default: $Query = $Query->orderBy('id')->orderby('updated_at'); break; } |
dc2a9a876 Коммит на понедел... |
213 |
} |
a9dfa8c95 Обновление на 7 м... |
214 |
|
d152a3a68 Создание основных... |
215 |
$Job_title = Job_title::query()->OrderBy('name')->get(); |
5b68533bb Работа над проект... |
216 |
|
d152a3a68 Создание основных... |
217 |
$Query_count = $Query->count(); |
5b68533bb Работа над проект... |
218 |
|
d152a3a68 Создание основных... |
219 |
$Query = $Query->OrderBy('updated_at')->paginate(3); |
7571b20fd Коммит 13 марта 2024 |
220 |
$Reclama = reclame::query()->get(); |
5b68533bb Работа над проект... |
221 |
|
d152a3a68 Создание основных... |
222 223 224 |
if ($request->ajax()) { |
7571b20fd Коммит 13 марта 2024 |
225 226 227 228 229 230 231 232 233 234 235 236 237 |
if ($request->has('title')) { return view('ajax.list_category', compact( 'Name_categori' )); } else { return view('ajax.list_vacancies', compact('Query', 'Query_count', 'Name_categori', 'Reclama', 'categories', 'Job_title', 'uid')); } |
d152a3a68 Создание основных... |
238 239 240 241 242 243 244 |
} else { //Вернуть все return view('list_vacancies', compact('Query', 'Query_count', 'Reclama', 'Name_categori', 'categories', |
a9dfa8c95 Обновление на 7 м... |
245 246 |
'Job_title', 'uid')); |
5b68533bb Работа над проект... |
247 |
} |
d152a3a68 Создание основных... |
248 |
} |
5b68533bb Работа над проект... |
249 |
|
d152a3a68 Создание основных... |
250 251 252 |
// Образование public function education(Request $request) { $educations = Education::query(); |
a9dfa8c95 Обновление на 7 м... |
253 254 |
if (($request->has('search')) && (!empty($request->get('search')))) { $search = trim($request->get('search')); |
d152a3a68 Создание основных... |
255 256 |
$educations = $educations->where('name', 'LIKE', "%$search%"); } |
a9dfa8c95 Обновление на 7 м... |
257 258 259 260 261 262 263 264 265 266 267 268 |
if ($request->get('sort')) { $sort = $request->get('sort'); switch ($sort) { case 'name_up': $educations = $educations->orderBy('name')->orderBy('id'); break; case 'name_down': $educations = $educations->orderByDesc('name')->orderby('id'); break; case 'created_at_up': $educations = $educations->OrderBy('created_at')->orderBy('id'); break; case 'created_at_down': $educations = $educations->orderByDesc('created_at')->orderBy('id'); break; case 'default': $educations = $educations->orderBy('id')->orderby('updated_at'); break; default: $educations = $educations->orderBy('id')->orderby('updated_at'); break; } } |
d152a3a68 Создание основных... |
269 270 |
$count_edu = $educations->count(); $educations = $educations->paginate(6); |
a9dfa8c95 Обновление на 7 м... |
271 272 273 274 275 |
if ($request->ajax()) { return view('ajax.education', compact('educations')); } else { return view('education', compact('educations', 'count_edu')); } |
d152a3a68 Создание основных... |
276 |
} |
5b68533bb Работа над проект... |
277 |
|
d152a3a68 Создание основных... |
278 279 280 |
// Контакты public function contacts() { return view('contacts'); |
02a1ed535 Первый коммит Rek... |
281 |
} |
a13ce8670 Обновление проект... |
282 283 284 285 |
// Вход в личный кабинет public function input_login(Request $request) { |
ad20c698a Результаты на вос... |
286 |
$params = $request->all(); |
a13ce8670 Обновление проект... |
287 288 |
$rules = [ 'email' => 'required|string|email', |
7571b20fd Коммит 13 марта 2024 |
289 |
'password' => 'required|string|min:3|max:25', |
a13ce8670 Обновление проект... |
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 |
]; $messages = [ 'required' => 'Укажите обязательное поле «:attribute»', 'email' => 'Введите корректный email', 'min' => [ 'string' => 'Поле «:attribute» должно быть не меньше :min символов', 'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт' ], 'max' => [ 'string' => 'Поле «:attribute» должно быть не больше :max символов', 'file' => 'Файл «:attribute» должен быть не больше :max Кбайт' ], ]; $validator = Validator::make($request->all(), $rules, $messages); |
ad20c698a Результаты на вос... |
306 |
|
a13ce8670 Обновление проект... |
307 |
if ($validator->fails()) { |
e3c7b0ffb Коммит на понедел... |
308 |
return redirect()->route('index')->with('Error', "Email или пароль невалидный"); |
a13ce8670 Обновление проект... |
309 310 311 312 313 314 315 |
} else { $credentials = $request->only('email', 'password'); if (Auth::attempt($credentials, $request->has('remember'))) { if (is_null(Auth::user()->email_verified_at)) { Auth::logout(); |
e3c7b0ffb Коммит на понедел... |
316 |
return json_encode(Array("ERROR" => "Адрес почты не подтвержден")); |
a13ce8670 Обновление проект... |
317 318 319 |
} if (Auth::user()->is_worker) { |
e3c7b0ffb Коммит на понедел... |
320 |
return json_encode(Array("REDIRECT" => redirect()->route('worker.cabinet')->getTargetUrl())); |
a13ce8670 Обновление проект... |
321 |
} else { |
e3c7b0ffb Коммит на понедел... |
322 |
return json_encode(Array("REDIRECT" => redirect()->route('employer.cabinet')->getTargetUrl())); |
a13ce8670 Обновление проект... |
323 |
} |
e3c7b0ffb Коммит на понедел... |
324 |
return json_encode(Array("SUCCESS" => "Вы успешно вошли в личный кабинет")); |
a13ce8670 Обновление проект... |
325 326 327 |
//->route('index') //->with('success', 'Вы вошли в личный кабинет.'); } else { |
e3c7b0ffb Коммит на понедел... |
328 |
return json_encode(Array("ERROR" => "Неверный логин или пароль!")); |
a13ce8670 Обновление проект... |
329 330 331 |
} } } |
b6103c749 Обновление js и c... |
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 |
// Восстановление пароля public function repair_password(Request $request) { $rules = [ 'email' => 'required|string|email', ]; $messages = [ 'required' => 'Укажите обязательное поле «:attribute»', 'email' => 'Введите корректный email', 'min' => [ 'string' => 'Поле «:attribute» должно быть не меньше :min символов', 'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт' ], 'max' => [ 'string' => 'Поле «:attribute» должно быть не больше :max символов', 'file' => 'Файл «:attribute» должен быть не больше :max Кбайт' ], ]; $validator = Validator::make($request->all(), $rules, $messages); if ($validator->fails()) { return redirect()->back()->with('Error', "Email невалидный"); } else { $new_password = Tools::generator_id(10); $hash_password = Hash::make($new_password); $user = User::query()->where('email', $request->get('email'))->first(); $EditRec = User::find($user->id); $EditRec->password = $hash_password; $EditRec->save(); foreach ([$request->get('email')] as $recipient) { Mail::to($recipient)->send(new MailRepair($new_password)); } |
ad20c698a Результаты на вос... |
367 |
return redirect()->route('index'); |
b6103c749 Обновление js и c... |
368 369 370 |
} } |
99702d426 Коммит вечер воск... |
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 396 397 398 399 400 401 402 403 404 405 |
// Вывод новостей public function news(Request $request) { $Query = News::query(); if ($request->has('search')) { $search = $request->get('search'); $Query = $Query->where('title', 'LIKE', "%$search%")-> orWhere('text', 'LIKE', "%$search%"); } if ($request->ajax()) { if ($request->get('sort')) { $sort = $request->get('sort'); switch ($sort) { case 'name_up': $Query = $Query->orderBy('title')->orderBy('id'); break; case 'name_down': $Query = $Query->orderByDesc('title')->orderby('id'); break; case 'created_at_up': $Query = $Query->OrderBy('created_at')->orderBy('id'); break; case 'created_at_down': $Query = $Query->orderByDesc('created_at')->orderBy('id'); break; case 'default': $Query = $Query->orderBy('id')->orderby('updated_at'); break; default: $Query = $Query->orderBy('id')->orderby('updated_at'); break; } } } $Query_count = $Query->count(); $Query = $Query->paginate(6); if ($request->ajax()) { return view('ajax.news-list', compact('Query', 'Query_count')); } else { return view('news-list', compact('Query', 'Query_count')); } } //Детальная новость public function detail_new(News $new) { |
f950a1227 Коммит обновление... |
406 |
// Наборка |
99702d426 Коммит вечер воск... |
407 408 409 410 411 |
$Query = News::query()->where('id', $new->id)->get(); $title = $Query[0]->title; $All_Query = News::query()->paginate(8); return view('detail_new', compact('Query', 'All_Query', 'title')); } |
02a1ed535 Первый коммит Rek... |
412 |
} |