blob: fd1931cd9a3645bf1680a289799f44e1431d404d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<?php /* Copyright (c) 2024 Freya Murphy */
class Auth_controller extends XSS_Controller {
private $auth_model;
function __construct() {
parent::__construct();
$this->auth_model = $this->load_model('auth');
$this->load_lang('auth');
}
public function index(): void {
$this->load_controller('index')->index();
}
public function login(): void {
if ($this->auth_model->session())
$this->redirect('/home');
parent::index();
$data = $this->auth_model->get_data();
$this->view('head', $data);
$this->view('auth/main', $data);
$this->view('footer', $data);
}
public function logout(): void {
if ($this->auth_model->session())
$_SESSION['jwt'] = NULL;
$this->redirect('/auth/login');
}
public function update(): void {
$key = $this->post_data('key');
$value = $this->post_data('value');
if (!$key || !$value)
$this->error(400);
$_SESSION[$key] = $value;
}
}
?>
|