2021-03-04 08:18:32 +00:00
|
|
|
<?php
|
2021-03-04 12:13:07 +00:00
|
|
|
|
2021-03-08 12:01:01 +00:00
|
|
|
require "../../../bootstrap.php";
|
2021-03-04 12:13:07 +00:00
|
|
|
|
|
|
|
use Backend\Models\Group;
|
|
|
|
use Backend\Models\Password;
|
2021-03-09 12:16:34 +00:00
|
|
|
use Illuminate\Support\Str;
|
2021-03-04 12:13:07 +00:00
|
|
|
|
|
|
|
//Start the php session
|
|
|
|
session_start();
|
|
|
|
|
|
|
|
if(isset($_POST['login'])){
|
|
|
|
|
|
|
|
$groupName = $_POST["groupName"];
|
|
|
|
$password = $_POST["password"];
|
|
|
|
|
2021-03-08 12:09:50 +00:00
|
|
|
$group = Group::firstWhere('group_name', $groupName );
|
2021-03-04 12:13:07 +00:00
|
|
|
if($group){
|
2021-03-04 13:12:14 +00:00
|
|
|
$hashedPassword = $group->password->password;
|
2021-03-04 12:13:07 +00:00
|
|
|
if(password_verify($password, $hashedPassword )){
|
2021-03-09 12:16:34 +00:00
|
|
|
$token = Str::random(100);
|
|
|
|
$grouppassword = Password::firstWhere('group_id', $group->id);
|
|
|
|
$grouppassword->remember_token = $token;
|
|
|
|
if($grouppassword->save()){
|
|
|
|
$_SESSION['groupName'] = $groupName;
|
|
|
|
$_SESSION['token'] = $token;
|
|
|
|
$_SESSION['success'] = "You are now logged in";
|
|
|
|
header('location: ../../../Frontend/index.php?login=success');
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
session_destroy();
|
|
|
|
header('location: ../../../Frontend/index.php?login=failed&?reason=token');
|
|
|
|
}
|
|
|
|
|
2021-03-08 09:05:31 +00:00
|
|
|
}else{
|
|
|
|
session_destroy();
|
2021-03-09 12:16:34 +00:00
|
|
|
header('location: ../../../Frontend/index.php?login=failed&?reason=password');
|
2021-03-04 12:13:07 +00:00
|
|
|
}
|
2021-03-08 09:05:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
session_destroy();
|
2021-03-09 12:16:34 +00:00
|
|
|
header('location: ../../../Frontend/index.php?login=failed&?reason=group');
|
2021-03-04 12:13:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|