Blame view
app/Http/Controllers/MainController.php
12.7 KB
02a1ed535 Первый коммит Rek... |
1 2 3 |
<?php namespace App\Http\Controllers; |
b6103c749 Обновление js и c... |
4 5 6 |
use App\Classes\Tools; use App\Mail\MailRegistration; use App\Mail\MailRepair; |
d152a3a68 Создание основных... |
7 |
use App\Models\Ad_employer; |
5b68533bb Работа над проект... |
8 |
use App\Models\Category; |
d152a3a68 Создание основных... |
9 |
use App\Models\Education; |
5b68533bb Работа над проект... |
10 11 12 13 |
use App\Models\Employer; use App\Models\Job_title; use App\Models\News; use App\Models\reclame; |
b6103c749 Обновление js и c... |
14 |
use App\Models\User; |
02a1ed535 Первый коммит Rek... |
15 |
use Illuminate\Http\Request; |
a13ce8670 Обновление проект... |
16 |
use Illuminate\Support\Facades\Auth; |
b6103c749 Обновление js и c... |
17 18 |
use Illuminate\Support\Facades\Hash; use Illuminate\Support\Facades\Mail; |
a13ce8670 Обновление проект... |
19 |
use Illuminate\Support\Facades\Validator; |
a9dfa8c95 Обновление на 7 м... |
20 |
use App\Classes\StatusUser; |
02a1ed535 Первый коммит Rek... |
21 22 23 |
class MainController extends Controller { |
1d1c16604 Фрондэнд - главна... |
24 |
// Главная страница публичной части |
02a1ed535 Первый коммит Rek... |
25 |
public function index() { |
5b68533bb Работа над проект... |
26 27 28 29 30 31 32 33 34 35 36 37 |
$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(); $employers = Employer::query()->orderBy('id')->limit(20)->get(); return view('index', compact('news', 'categories', 'employers')); } |
a13ce8670 Обновление проект... |
38 39 40 41 42 43 44 45 46 |
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]); } } |
5b68533bb Работа над проект... |
47 48 49 50 51 52 53 54 55 56 |
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 Обновление проект... |
57 |
if (($request->has('job')) && ($request->get('job') > 0)) { |
6b9776dfb Вторник работа на... |
58 |
$categories = $categories->Where('job_title_id', '=', $request->get('job')); |
5b68533bb Работа над проект... |
59 |
} |
6b9776dfb Вторник работа на... |
60 |
$categories = $categories->OrderByDesc('created_at')->GroupBy('categories.id')->get(); |
5b68533bb Работа над проект... |
61 62 63 64 65 66 67 68 |
if ($request->ajax()) { return view('ajax.vacancies', compact('categories')); } else { return view('vacancies', compact('Job_title', 'categories')); } } //Вакансии категория детальная |
d152a3a68 Создание основных... |
69 |
public function list_vacancies(Category $categories, Request $request) { |
a9dfa8c95 Обновление на 7 м... |
70 71 72 73 |
if (isset(Auth()->user()->id)) $uid = Auth()->user()->id; else $uid = 0; |
d152a3a68 Создание основных... |
74 75 76 77 78 79 |
$Query = Ad_employer::with('jobs')-> with('cat')-> with('employer')-> whereHas('jobs_code', function ($query) use ($request) { if ($request->ajax()) { |
a9dfa8c95 Обновление на 7 м... |
80 |
if (null !== ($request->get('job')) && ($request->get('job') !== 0)) { |
d152a3a68 Создание основных... |
81 82 83 84 85 |
$query->where('job_title_id', $request->get('job')); } } }) ->select('ad_employers.*'); |
a9dfa8c95 Обновление на 7 м... |
86 |
|
d152a3a68 Создание основных... |
87 88 89 |
if ($categories->id > 0) { $Query = $Query->where('category_id', '=', $categories->id); $Name_categori = Category::query()->where('id', '=', $categories->id)->get(); |
5b68533bb Работа над проект... |
90 |
} |
a9dfa8c95 Обновление на 7 м... |
91 92 93 94 95 96 97 98 99 100 101 |
if ($request->get('sort')) { $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; default: $Query = $Query->orderBy('id')->orderby('updated_at'); break; } } |
d152a3a68 Создание основных... |
102 |
$Job_title = Job_title::query()->OrderBy('name')->get(); |
5b68533bb Работа над проект... |
103 |
|
d152a3a68 Создание основных... |
104 |
$Query_count = $Query->count(); |
5b68533bb Работа над проект... |
105 |
|
d152a3a68 Создание основных... |
106 107 108 |
$Query = $Query->OrderBy('updated_at')->paginate(3); $Reclama = reclame::query()->limit(3)->get(); |
5b68533bb Работа над проект... |
109 |
|
d152a3a68 Создание основных... |
110 111 112 |
if ($request->ajax()) { |
a9dfa8c95 Обновление на 7 м... |
113 114 115 116 117 118 |
return view('ajax.list_vacancies', compact('Query', 'Query_count', 'Name_categori', 'Reclama', 'categories', 'uid')); |
d152a3a68 Создание основных... |
119 120 121 122 123 124 125 |
} else { //Вернуть все return view('list_vacancies', compact('Query', 'Query_count', 'Reclama', 'Name_categori', 'categories', |
a9dfa8c95 Обновление на 7 м... |
126 127 |
'Job_title', 'uid')); |
5b68533bb Работа над проект... |
128 |
} |
d152a3a68 Создание основных... |
129 |
} |
5b68533bb Работа над проект... |
130 |
|
d152a3a68 Создание основных... |
131 132 133 |
// Образование public function education(Request $request) { $educations = Education::query(); |
a9dfa8c95 Обновление на 7 м... |
134 135 |
if (($request->has('search')) && (!empty($request->get('search')))) { $search = trim($request->get('search')); |
d152a3a68 Создание основных... |
136 137 |
$educations = $educations->where('name', 'LIKE', "%$search%"); } |
a9dfa8c95 Обновление на 7 м... |
138 139 140 141 142 143 144 145 146 147 148 149 |
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 Создание основных... |
150 151 |
$count_edu = $educations->count(); $educations = $educations->paginate(6); |
a9dfa8c95 Обновление на 7 м... |
152 153 154 155 156 |
if ($request->ajax()) { return view('ajax.education', compact('educations')); } else { return view('education', compact('educations', 'count_edu')); } |
d152a3a68 Создание основных... |
157 |
} |
5b68533bb Работа над проект... |
158 |
|
d152a3a68 Создание основных... |
159 160 161 |
// Контакты public function contacts() { return view('contacts'); |
02a1ed535 Первый коммит Rek... |
162 |
} |
a13ce8670 Обновление проект... |
163 164 165 166 |
// Вход в личный кабинет public function input_login(Request $request) { |
ad20c698a Результаты на вос... |
167 |
$params = $request->all(); |
a13ce8670 Обновление проект... |
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
$rules = [ 'email' => 'required|string|email', 'password' => 'required|string', ]; $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 Результаты на вос... |
187 |
|
a13ce8670 Обновление проект... |
188 |
if ($validator->fails()) { |
e3c7b0ffb Коммит на понедел... |
189 |
return redirect()->route('index')->with('Error', "Email или пароль невалидный"); |
a13ce8670 Обновление проект... |
190 191 192 193 194 195 196 |
} else { $credentials = $request->only('email', 'password'); if (Auth::attempt($credentials, $request->has('remember'))) { if (is_null(Auth::user()->email_verified_at)) { Auth::logout(); |
e3c7b0ffb Коммит на понедел... |
197 |
return json_encode(Array("ERROR" => "Адрес почты не подтвержден")); |
a13ce8670 Обновление проект... |
198 199 200 |
} if (Auth::user()->is_worker) { |
e3c7b0ffb Коммит на понедел... |
201 |
return json_encode(Array("REDIRECT" => redirect()->route('worker.cabinet')->getTargetUrl())); |
a13ce8670 Обновление проект... |
202 |
} else { |
e3c7b0ffb Коммит на понедел... |
203 |
return json_encode(Array("REDIRECT" => redirect()->route('employer.cabinet')->getTargetUrl())); |
a13ce8670 Обновление проект... |
204 |
} |
e3c7b0ffb Коммит на понедел... |
205 |
return json_encode(Array("SUCCESS" => "Вы успешно вошли в личный кабинет")); |
a13ce8670 Обновление проект... |
206 207 208 |
//->route('index') //->with('success', 'Вы вошли в личный кабинет.'); } else { |
e3c7b0ffb Коммит на понедел... |
209 |
return json_encode(Array("ERROR" => "Неверный логин или пароль!")); |
a13ce8670 Обновление проект... |
210 211 212 |
} } } |
b6103c749 Обновление js и c... |
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 |
// Восстановление пароля 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 Результаты на вос... |
248 |
return redirect()->route('index'); |
b6103c749 Обновление js и c... |
249 250 251 |
} } |
99702d426 Коммит вечер воск... |
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 |
// Вывод новостей 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) { // Выборка $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... |
293 |
} |