1
0
This repository has been archived on 2017-06-06. You can view files and clone it, but cannot push or open issues or pull requests.
informaticaD4P-2017/src/Application/Login.php

52 lines
1.3 KiB
PHP
Raw Normal View History

2017-02-23 14:31:25 +00:00
<?php
/**
* Informatica Eindproject D4p
* 6in3, Stedelijk Gymnasium Nijmegen
* Docent: Hans de Wolf
*
* ==================
*
* Daniel Boutros,
* Christiaan Goossens,
* Jelmer Hinssen
*/
namespace Inforbank\Application;
2017-02-23 14:31:25 +00:00
use \Slim\App;
use Inforbank\Application\Helper\Redirect;
2017-02-23 14:31:25 +00:00
class Login
{
public function __construct(App $app)
{
2017-02-23 14:31:25 +00:00
$app->get('/login', function ($request, $response, $args) {
// Render index view
return $this->renderer->render($response, 'login.phtml', $args);
});
$app->post('/login', function ($request, $response, $args) {
2017-02-23 14:31:25 +00:00
// Render index view
$post = $request->getParsedBody();
try {
$resp = $this->auth->login($post['rekeningnr'], $post['pascode']);
if ($resp) {
return Redirect::create($request, $response, '/');
} else {
return Redirect::create($request, $response, '/login?error');
}
} catch (\Exception $e) {
return Redirect::create($request, $response, '/login?error');
}
});
$app->get('/logout', function ($request, $response, $args) {
$this->auth->logout();
return Redirect::create($request, $response, '/login');
2017-02-23 14:31:25 +00:00
});
}
}