aboutsummaryrefslogtreecommitdiffstats
path: root/admin/user/delete.php
blob: 18a57cfed18ae5870c9fa220732a893f7a336297 (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
46
47
48
49
50
51
52
53
54
55
56
<?php
#===============================================================================
# DEFINE: Administration
#===============================================================================
define('ADMINISTRATION', TRUE);
define('AUTHENTICATION', TRUE);

#===============================================================================
# INCLUDE: Initialization
#===============================================================================
require '../../core/application.php';

#===============================================================================
# TRY: User\Exception
#===============================================================================
try {
	$User = User\Factory::build(HTTP::GET('id'));
	$Attribute = $User->getAttribute();

	if(HTTP::issetPOST(['token' => Application::getSecurityToken()], 'delete')) {
		try {
			if($Attribute->databaseDELETE($Database)) {
				HTTP::redirect(Application::getAdminURL('user/'));
			}
		} catch(PDOException $Exception) {
			$messages[] = $Exception->getMessage();
		}
	}

	#===============================================================================
	# Build document
	#===============================================================================
	$FormTemplate = Template\Factory::build('user/form');
	$FormTemplate->set('HTML', $User->getHTML());
	$FormTemplate->set('FORM', [
		'TYPE' => 'DELETE',
		'INFO' => $messages ?? [],
		'DATA' => array_change_key_case($Attribute->getAll(['password']), CASE_UPPER),
		'TOKEN' => Application::getSecurityToken()
	]);

	$DeleteTemplate = Template\Factory::build('user/delete');
	$DeleteTemplate->set('HTML', $FormTemplate);

	$MainTemplate = Template\Factory::build('main');
	$MainTemplate->set('NAME', $Language->text('title_user_delete'));
	$MainTemplate->set('HTML', $DeleteTemplate);
	echo $MainTemplate;
}

#===============================================================================
# CATCH: User\Exception
#===============================================================================
catch(User\Exception $Exception) {
	Application::error404();
}