Game-Jaming/Backend/Controllers/Group/Login.php

52 lines
1.4 KiB
PHP
Raw Normal View History

2021-03-04 08:18:32 +00:00
<?php
2021-03-04 12:13:07 +00:00
2021-03-17 08:43:09 +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()){
2021-03-09 12:16:34 +00:00
$_SESSION['groupName'] = $groupName;
$_SESSION['token'] = $token;
$_SESSION['success'] = "You are now logged in";
2021-03-17 08:43:09 +00:00
header('location: ../../../Frontend/index.php?login=success');
exit();
2021-03-09 12:16:34 +00:00
}
else{
session_destroy();
header('location: ../../../Frontend/index.php?login=failed&?reason=token');
2021-03-17 08:43:09 +00:00
exit();
2021-03-09 12:16:34 +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=password');
2021-03-17 08:43:09 +00:00
exit();
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-17 08:43:09 +00:00
exit();
2021-03-04 12:13:07 +00:00
}
2021-03-12 10:10:14 +00:00
}