Blame view
app/Http/Controllers/MainController.php
16.2 KB
02a1ed535 Первый коммит Rek... |
1 2 3 |
<?php namespace App\Http\Controllers; |
5725a3636 Обновление понеде... |
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; |
2a7870bed Обновление главно... |
12 |
use App\Models\employers_main; |
5b68533bb Работа над проект... |
13 |
use App\Models\Job_title; |
5725a3636 Обновление понеде... |
14 15 |
use App\Models\Like_vacancy; use App\Models\Like_worker; |
5b68533bb Работа над проект... |
16 |
use App\Models\News; |
c36ca6c98 Обновление 2 |
17 |
use App\Models\Positions; |
5b68533bb Работа над проект... |
18 |
use App\Models\reclame; |
b6103c749 Обновление js и c... |
19 |
use App\Models\User; |
02a1ed535 Первый коммит Rek... |
20 |
use Illuminate\Http\Request; |
a13ce8670 Обновление проект... |
21 |
use Illuminate\Support\Facades\Auth; |
365e6ad01 Реализация проекта |
22 |
use Illuminate\Support\Facades\DB; |
b6103c749 Обновление js и c... |
23 24 |
use Illuminate\Support\Facades\Hash; use Illuminate\Support\Facades\Mail; |
a13ce8670 Обновление проект... |
25 |
use Illuminate\Support\Facades\Validator; |
3b2e8c4eb редактирование бл... |
26 27 |
use App\Models\PageContent; use App\Enums\MainPageCounters; |
02a1ed535 Первый коммит Rek... |
28 29 30 |
class MainController extends Controller { |
1d1c16604 Фрондэнд - главна... |
31 |
// Главная страница публичной части |
02a1ed535 Первый коммит Rek... |
32 |
public function index() { |
492296b6f Коммит по итогу п... |
33 |
$news = News::query()->orderByDesc('id')->limit(6)->get(); |
5b68533bb Работа над проект... |
34 35 36 37 38 39 |
$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(); |
b947a4cd5 Коммит суббота 2 |
40 |
$Job_title = Job_title::query()->where('is_remove', '=', '0')-> |
b67b94477 Задачи 33,34,35 +... |
41 |
where('is_bd', '=', '0')->orderByDesc('sort')->get(); |
3e8ab15f2 Статусы должносте... |
42 |
|
2be890eea коммит по изменен... |
43 44 |
$Data = DB::table('job_titles')-> selectRaw('job_titles.name as jn, count(`ad_jobs`.`job_title_id`) as cnt, job_titles.id as id_job, categories.name as catname, categories.id as id_cat')-> |
24b44fa6c майн контроллер |
45 46 |
where('categories.is_remove', '=', '0')-> where('job_titles.is_remove', '=', '0')-> |
3e8ab15f2 Статусы должносте... |
47 |
where('job_titles.is_bd', '=' , '0')-> |
2be890eea коммит по изменен... |
48 49 |
leftJoin('ad_jobs', 'ad_jobs.job_title_id', '=', 'job_titles.id')-> join('categories', 'categories.id', '=', 'job_titles.position_id')-> |
b947a4cd5 Коммит суббота 2 |
50 |
groupBy('job_titles.id')->orderBy('categories.id')->orderByDesc('job_titles.position_id')-> |
2be890eea коммит по изменен... |
51 52 53 54 55 56 |
orderByDesc('job_titles.sort')->get()->toArray(); $Main_Job = array(); $name_cat = ''; foreach ($Data as $it) { $it_arr = (array)$it; |
24b44fa6c майн контроллер |
57 |
if ($name_cat != $it_arr['catname']) $name_cat = $it_arr['catname']; |
2be890eea коммит по изменен... |
58 |
$Main_Job[$name_cat][] = $it_arr; |
231a1f4aa Проект финализация |
59 |
} |
4a6e91624 Коммит по кабинету |
60 61 62 63 |
$employers = employers_main::query()->with('employer')-> whereHas('employer', function ($query) { $query->where('status_hidden', '=', '0'); })-> |
066f7f9f8 Коммит по диалогам |
64 |
orderBy('sort')->get(); |
365e6ad01 Реализация проекта |
65 |
$vacancy = Ad_jobs::query()->with('job_title')->orderBy('position_ship')->get(); |
3b2e8c4eb редактирование бл... |
66 67 68 69 70 71 72 73 74 75 |
$block_names = MainPageCounters::values();; $blocks_counters = PageContent::select('name', 'title', 'description', 'extra') ->whereIn('name', $block_names) ->orderBy('name', 'asc') ->get() ->keyBy('name') ->toArray(); return view('index', compact('news', 'Job_title', 'categories', 'employers', 'vacancy', 'Main_Job', 'blocks_counters')); |
5b68533bb Работа над проект... |
76 |
} |
a13ce8670 Обновление проект... |
77 78 79 80 81 82 83 84 85 |
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]); } } |
5725a3636 Обновление понеде... |
86 87 88 89 90 91 |
// Лайк вакансии public function like_vacancy(Request $request) { $IP_address = RusDate::ip_addr_client(); if ($request->has('code_record')) { if ($request->has('delete')) { |
f3ba708ab Работа с избранными |
92 |
$code = $request->get('code_record'); |
5725a3636 Обновление понеде... |
93 |
$atomic_era = Like_vacancy::select('id')-> |
f3ba708ab Работа с избранными |
94 |
where('code_record', '=', $code)->toSql(); |
5725a3636 Обновление понеде... |
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 |
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 Работа над проект... |
126 127 |
public function vacancies(Request $request) { //должности |
b947a4cd5 Коммит суббота 2 |
128 |
$Job_title = Job_title::query()->where('is_remove', '=', '0')-> |
51c4e3944 Update main contr... |
129 130 |
where('is_bd', '=', '0')->orderByDesc('sort')-> orderBy('name')->get(); |
5b68533bb Работа над проект... |
131 132 133 134 135 136 137 |
$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 Обновление проект... |
138 |
if (($request->has('job')) && ($request->get('job') > 0)) { |
6b9776dfb Вторник работа на... |
139 |
$categories = $categories->Where('job_title_id', '=', $request->get('job')); |
5b68533bb Работа над проект... |
140 |
} |
6b9776dfb Вторник работа на... |
141 |
$categories = $categories->OrderByDesc('created_at')->GroupBy('categories.id')->get(); |
248330cb1 task-132687 bugfix |
142 |
|
2be890eea коммит по изменен... |
143 |
$Data = DB::table('job_titles')-> |
248330cb1 task-132687 bugfix |
144 145 146 147 |
selectRaw('job_titles.name as jn, count(`ad_jobs`.`job_title_id`) as cnt, job_titles.id as id_job, categories.name as catname, categories.id as id_cat')-> where('categories.is_remove', '=', '0')-> where('job_titles.is_bd', '=' , '0')-> where('job_titles.is_remove', '=', '0'); |
2be890eea коммит по изменен... |
148 |
if (($request->has('job')) && ($request->get('job') > 0)) { |
248330cb1 task-132687 bugfix |
149 |
$Data->where('job_title_id', $request->get('job')); |
2be890eea коммит по изменен... |
150 |
} |
248330cb1 task-132687 bugfix |
151 152 153 154 155 156 157 158 159 |
$Data->leftJoin('ad_jobs', 'ad_jobs.job_title_id', '=', 'job_titles.id') ->join('categories', 'categories.id', '=', 'job_titles.position_id') ->groupBy('job_titles.id') ->orderBy('categories.id') ->orderByDesc('job_titles.position_id') ->orderByDesc('job_titles.sort') ->get() ->toArray(); |
2be890eea коммит по изменен... |
160 161 162 163 164 |
$Main_Job = array(); $name_cat = ''; foreach ($Data as $it) { $it_arr = (array)$it; |
248330cb1 task-132687 bugfix |
165 |
if ($name_cat != $it_arr['catname']) { |
2be890eea коммит по изменен... |
166 |
$name_cat = $it_arr['catname']; |
248330cb1 task-132687 bugfix |
167 |
} |
2be890eea коммит по изменен... |
168 169 |
$Main_Job[$name_cat][] = $it_arr; } |
5725a3636 Обновление понеде... |
170 |
|
5b68533bb Работа над проект... |
171 |
if ($request->ajax()) { |
2be890eea коммит по изменен... |
172 |
return view('ajax.new_sky', compact('categories', 'Main_Job')); |
5b68533bb Работа над проект... |
173 |
} else { |
2be890eea коммит по изменен... |
174 |
return view('new_sky', compact('Job_title', 'categories', 'Main_Job')); |
5b68533bb Работа над проект... |
175 176 177 178 |
} } //Вакансии категория детальная |
d152a3a68 Создание основных... |
179 |
public function list_vacancies(Category $categories, Request $request) { |
a9dfa8c95 Обновление на 7 м... |
180 181 182 183 |
if (isset(Auth()->user()->id)) $uid = Auth()->user()->id; else $uid = 0; |
d152a3a68 Создание основных... |
184 |
|
b950f3956 Обновление по про... |
185 186 187 188 |
if ($request->get('job') == 0) $job_search = ''; else $job_search = $request->get('job'); |
7c475b9ed правки |
189 190 191 192 193 194 195 196 197 198 |
$Query = Ad_employer::with('jobs') ->with('cat') ->with('employer') ->where('is_remove', 0) ->whereHas('jobs_code', function ($query) use ($job_search) { if (!empty($job_search)) { $query->where('job_title_id', $job_search); } }) ->select('ad_employers.*'); |
a9dfa8c95 Обновление на 7 м... |
199 |
|
ad2cc280b Правки финальные ... |
200 |
if (isset($categories->id) && ($categories->id > 0)) { |
d152a3a68 Создание основных... |
201 202 |
$Query = $Query->where('category_id', '=', $categories->id); $Name_categori = Category::query()->where('id', '=', $categories->id)->get(); |
ad2cc280b Правки финальные ... |
203 204 |
} else { $Name_categori = ''; |
5b68533bb Работа над проект... |
205 |
} |
5725a3636 Обновление понеде... |
206 |
if ($request->get('sort')) { |
a9dfa8c95 Обновление на 7 м... |
207 208 209 210 211 212 213 |
$sort = $request->get('sort'); 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; |
23eadb7ed Коммит пятницы |
214 |
default: $Query = $Query->orderbyDesc('updated_at')->orderBy('id'); break; |
a9dfa8c95 Обновление на 7 м... |
215 |
} |
5725a3636 Обновление понеде... |
216 |
} |
a9dfa8c95 Обновление на 7 м... |
217 |
|
51c4e3944 Update main contr... |
218 219 220 |
$Job_title = Job_title::query()->where('is_remove', '=', '0')-> where('is_bd', '=', '0')->orderByDesc('sort')-> orderBy('name')->get(); |
5b68533bb Работа над проект... |
221 |
|
d152a3a68 Создание основных... |
222 |
$Query_count = $Query->count(); |
5b68533bb Работа над проект... |
223 |
|
fb45bb186 Фиксы по задачам ... |
224 |
$Query = $Query->OrderByDesc('updated_at')->paginate(10); |
d152a3a68 Создание основных... |
225 |
|
7571b20fd Коммит 13 марта 2024 |
226 |
$Reclama = reclame::query()->get(); |
5b68533bb Работа над проект... |
227 |
|
d152a3a68 Создание основных... |
228 |
if ($request->ajax()) { |
7571b20fd Коммит 13 марта 2024 |
229 230 231 232 233 234 235 236 237 238 239 240 241 |
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 Создание основных... |
242 243 244 245 246 247 248 |
} else { //Вернуть все return view('list_vacancies', compact('Query', 'Query_count', 'Reclama', 'Name_categori', 'categories', |
a9dfa8c95 Обновление на 7 м... |
249 250 |
'Job_title', 'uid')); |
5b68533bb Работа над проект... |
251 |
} |
d152a3a68 Создание основных... |
252 |
} |
5b68533bb Работа над проект... |
253 |
|
d152a3a68 Создание основных... |
254 255 256 |
// Контакты public function contacts() { return view('contacts'); |
02a1ed535 Первый коммит Rek... |
257 |
} |
a13ce8670 Обновление проект... |
258 259 260 261 |
// Вход в личный кабинет public function input_login(Request $request) { |
ad20c698a Результаты на вос... |
262 |
$params = $request->all(); |
a13ce8670 Обновление проект... |
263 264 |
$rules = [ 'email' => 'required|string|email', |
7571b20fd Коммит 13 марта 2024 |
265 |
'password' => 'required|string|min:3|max:25', |
a13ce8670 Обновление проект... |
266 267 268 269 270 271 272 273 274 275 276 277 278 279 |
]; $messages = [ 'required' => 'Укажите обязательное поле «:attribute»', 'email' => 'Введите корректный email', 'min' => [ 'string' => 'Поле «:attribute» должно быть не меньше :min символов', 'file' => 'Файл «:attribute» должен быть не меньше :min Кбайт' ], 'max' => [ 'string' => 'Поле «:attribute» должно быть не больше :max символов', 'file' => 'Файл «:attribute» должен быть не больше :max Кбайт' ], ]; |
a13ce8670 Обновление проект... |
280 |
$validator = Validator::make($request->all(), $rules, $messages); |
a13ce8670 Обновление проект... |
281 |
if ($validator->fails()) { |
7243b8e24 Обновление проект... |
282 283 284 285 |
if (Auth::check()) $user_id = $request->user()->id; else $user_id = 0; |
6e2255214 Работа над сообще... |
286 287 288 289 |
if ($user_id > 0) return json_encode(Array("ERROR" => "Email или пароль невалидный!")); else return redirect()->route('index')->with('Error', "Email или пароль невалидный"); |
a13ce8670 Обновление проект... |
290 291 292 293 294 295 296 |
} else { $credentials = $request->only('email', 'password'); if (Auth::attempt($credentials, $request->has('remember'))) { if (is_null(Auth::user()->email_verified_at)) { Auth::logout(); |
e3c7b0ffb Коммит на понедел... |
297 |
return json_encode(Array("ERROR" => "Адрес почты не подтвержден")); |
a13ce8670 Обновление проект... |
298 299 300 |
} if (Auth::user()->is_worker) { |
e3c7b0ffb Коммит на понедел... |
301 |
return json_encode(Array("REDIRECT" => redirect()->route('worker.cabinet')->getTargetUrl())); |
a13ce8670 Обновление проект... |
302 |
} else { |
e3c7b0ffb Коммит на понедел... |
303 |
return json_encode(Array("REDIRECT" => redirect()->route('employer.cabinet')->getTargetUrl())); |
a13ce8670 Обновление проект... |
304 |
} |
e3c7b0ffb Коммит на понедел... |
305 |
return json_encode(Array("SUCCESS" => "Вы успешно вошли в личный кабинет")); |
a13ce8670 Обновление проект... |
306 307 308 |
//->route('index') //->with('success', 'Вы вошли в личный кабинет.'); } else { |
e3c7b0ffb Коммит на понедел... |
309 |
return json_encode(Array("ERROR" => "Неверный логин или пароль!")); |
a13ce8670 Обновление проект... |
310 311 312 |
} } } |
b6103c749 Обновление js и c... |
313 314 315 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 |
// Восстановление пароля 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 Результаты на вос... |
348 |
return redirect()->route('index'); |
b6103c749 Обновление js и c... |
349 350 351 |
} } |
99702d426 Коммит вечер воск... |
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 |
// Вывод новостей 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) { |
c36ca6c98 Обновление 2 |
387 |
// Наборка |
99702d426 Коммит вечер воск... |
388 389 390 391 392 |
$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... |
393 |
} |