1 | <?php
|
---|
2 |
|
---|
3 | namespace App\Http\Controllers;
|
---|
4 |
|
---|
5 | use App\Models\Officer;
|
---|
6 | use Illuminate\Http\Request;
|
---|
7 | use Illuminate\Support\Facades\Auth;
|
---|
8 | use Illuminate\Support\Facades\DB;
|
---|
9 | use Illuminate\Support\Facades\Session;
|
---|
10 | use Illuminate\Support\Facades\Hash;
|
---|
11 |
|
---|
12 | class SessionsController extends Controller
|
---|
13 | {
|
---|
14 | function verifyPassword($inputPassword, $storedHash, $salt)
|
---|
15 | {
|
---|
16 | $hashedInputPassword = crypt($inputPassword . $salt, $storedHash);
|
---|
17 |
|
---|
18 | return $hashedInputPassword === $storedHash;
|
---|
19 | }
|
---|
20 | public function store()
|
---|
21 | {
|
---|
22 | $credentials = request()->validate([
|
---|
23 | 'badge_no' => 'required',
|
---|
24 | 'password' => 'required'
|
---|
25 | ]);
|
---|
26 | $password = $credentials['password'];
|
---|
27 | $badge_no = $credentials['badge_no'];
|
---|
28 | // mozhe da se najavi kako policaec i kako officer, znaeme koj e koj po znachkata
|
---|
29 |
|
---|
30 | $policeman = true;
|
---|
31 | $is_policeman = DB::select('select * from policeman where badge_no = :badge_no;', ['badge_no' => $badge_no]);
|
---|
32 | $is_officer = DB::select('select * from officer where o_badge_no = :badge_no;', ['badge_no' => $badge_no]);
|
---|
33 | if($is_officer==null && $is_policeman==null) {
|
---|
34 | return back()->withErrors(['password' => 'Invalid credentials']);
|
---|
35 | }
|
---|
36 | if($is_officer!=null) {
|
---|
37 | $pass = DB::select('select o_password from officer where o_badge_no = :o_badge_no;', ['o_badge_no' => $badge_no]);
|
---|
38 | $salt = DB::select('select salt from officer where o_badge_no = :o_badge_no;', ['o_badge_no' => $badge_no]);
|
---|
39 | $policeman = false;
|
---|
40 | } else {
|
---|
41 | $pass = DB::select('select p_password from policeman where badge_no = :badge_no;', ['badge_no' => $badge_no]);
|
---|
42 | $salt = DB::select('select salt from policeman where badge_no = :badge_no;', ['badge_no' => $badge_no]);
|
---|
43 |
|
---|
44 | }
|
---|
45 |
|
---|
46 | foreach ($pass[0] as $key => $val) {
|
---|
47 | $value = $val;
|
---|
48 | break; // Break after the first key-value pair
|
---|
49 | }
|
---|
50 | foreach ($salt[0] as $key => $val) {
|
---|
51 | $value2 = $val;
|
---|
52 | break; // Break after the first key-value pair
|
---|
53 | }
|
---|
54 | if ($this->verifyPassword($password, $value, $value2)) {
|
---|
55 | // Authentication passed
|
---|
56 | Session::put('badge_no', $badge_no);
|
---|
57 | Session::put('is_policeman', $policeman);
|
---|
58 | if($policeman){
|
---|
59 | Session::put('pe_id', $is_policeman[0]->pe_id);
|
---|
60 | Session::put('p_id', $is_policeman[0]->p_id);
|
---|
61 | } else {
|
---|
62 | Session::put('pe_id', $is_officer[0]->pe_id);
|
---|
63 | }
|
---|
64 | return view('welcome');
|
---|
65 | }
|
---|
66 |
|
---|
67 | // Authentication failed
|
---|
68 | return back()->withErrors(['password' => 'Invalid credentials']);
|
---|
69 | }
|
---|
70 |
|
---|
71 | public function logout()
|
---|
72 | {
|
---|
73 | Session::forget('badge_no');
|
---|
74 | Session::forget('p_id');
|
---|
75 | Session::forget('pe_id');
|
---|
76 | Session::forget('is_policeman');
|
---|
77 | return redirect('/login');
|
---|
78 | }
|
---|
79 | }
|
---|