Last active
November 30, 2023 05:15
-
-
Save hasinhayder/0b095766f7cc95b2d136b2ba6454df30 to your computer and use it in GitHub Desktop.
mock login
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
header('Content-Type: application/json'); | |
header('Access-Control-Allow-Origin: *'); | |
header('Access-Control-Allow-Methods: POST, GET'); | |
header('Access-Control-Allow-Headers: Content-Type, Authorization'); | |
$users = [ | |
[ | |
'email' => '[email protected]', | |
'name' => 'Admin', | |
'password' => 'admin', | |
'role' => 'admin', | |
'token' => hash('sha256', 'admin') | |
], | |
[ | |
'email' => '[email protected]', | |
'name' => 'John Doe', | |
'password' => 'john', | |
'role' => 'editor', | |
'token' => hash('sha256', 'john') | |
], | |
[ | |
'email' => '[email protected]', | |
'name' => 'Jane Doe', | |
'password' => 'jane', | |
'role' => 'editor', | |
'token' => hash('sha256', 'jane') | |
] | |
]; | |
// Check if data is sent as JSON payload or form data | |
$jsonData = file_get_contents("php://input"); | |
$data = !empty($jsonData) ? json_decode($jsonData, true) : $_POST; | |
if (isset($data['email']) && isset($data['password'])) { | |
$email = $data['email']; | |
$password = $data['password']; | |
foreach ($users as $user) { | |
if ($user['email'] === $email && $user['password'] === $password) { | |
echo json_encode([ | |
'success' => 1, | |
'name' => $user['name'], | |
'username' => $user['email'], | |
'role' => $user['role'], | |
'token' => $user['token'] | |
]); | |
exit; | |
} | |
} | |
} | |
echo json_encode([ | |
'success' => 0, | |
'error' => 'Invalid credentials' | |
]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment