aboutsummaryrefslogtreecommitdiffstats
path: root/admin/database.php
blob: bc25b761358b6864cf5b063844baa29b558a1baa (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
<?php
#===============================================================================
# DEFINE: Administration
#===============================================================================
define('ADMINISTRATION', TRUE);
define('AUTHENTICATION', TRUE);

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

#===============================================================================
# Execute database command(s)
#===============================================================================
if(HTTP::issetPOST(['token' => Application::getSecurityToken()], 'command')) {
	try {
		$Statement = $Database->query(HTTP::POST('command'));

		do {
			$result[] = print_r($Statement->fetchAll(), TRUE);
		} while($Statement->nextRowset());
	} catch(PDOException $Exception) {
		$messages[] = $Exception->getMessage();
	}
}

#===============================================================================
# TRY: Template\Exception
#===============================================================================
try {
	$DatabaseTemplate = Template\Factory::build('database');
	$DatabaseTemplate->set('FORM', [
		'INFO' => $messages ?? [],
		'TOKEN' => Application::getSecurityToken(),
		'RESULT' => implode(NULL, $result ?? []),
		'COMMAND' => HTTP::POST('command'),
	]);

	$MainTemplate = Template\Factory::build('main');
	$MainTemplate->set('NAME', 'SQL');
	$MainTemplate->set('HTML', $DatabaseTemplate);
	echo $MainTemplate;
}

#===============================================================================
# CATCH: Template\Exception
#===============================================================================
catch(Template\Exception $Exception) {
	Application::exit($Exception->getMessage());
}
?>