Neue MySQL-Verwaltung
Bernd Wurst authored 11 years ago
|
6) Bernd Wurst <bernd@schokokeks.org>
7) Hanno Böck <hanno@schokokeks.org>
8)
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10)
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
12) http://creativecommons.org/publicdomain/zero/1.0/
13)
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
16)
17) require_once('session/start.php');
18) require_once('inc/icons.php');
19) require_role(array(ROLE_SYSTEMUSER));
20)
21) global $prefix;
22)
23) require_once('mysql.php');
24)
25) if (isset($_GET['action']) && $_GET['action'] == 'permchange') {
26) check_form_token('mysql_permchange');
27) set_mysql_access($_GET['db'], $_GET['user'], ($_GET['access'] == 1));
28) redirect('overview');
29) }
30)
31) if (isset($_GET['action']) && $_GET['action'] == 'newdb') {
32) check_form_token('mysql_newdb');
33) $dbname = $_POST['newdb'];
34) $desc = $_POST['description'];
35) $server = NULL;
36) if (isset($_POST['server'])) {
37) $server = $_POST['server'];
38) }
39) create_mysql_database($dbname, $desc, $server);
40) if (isset($_POST['access'])) {
41) foreach ($_POST['access'] as $user) {
42) set_mysql_access($dbname, $user, true);
43) }
44) }
45) redirect('overview');
46) }
47)
48) if (isset($_GET['action']) && $_GET['action'] == 'newuser') {
49) check_form_token('mysql_newuser');
50) $username = $_POST['newuser'];
51) $desc = $_POST['description'];
52) $password = $_POST['newpass'];
53) create_mysql_account($username, $desc);
54) set_mysql_password($username, $password);
55) if (isset($_POST['access'])) {
56) foreach ($_POST['access'] as $dbname) {
57) set_mysql_access($dbname, $username, true);
58) }
59) }
60) redirect('overview');
61) }
62)
63) if (isset($_GET['action']) && $_GET['action'] == 'description') {
64) check_form_token('mysql_description');
65) if (isset($_GET['db'])) {
66) $db = $_GET['db'];
67) $description = $_POST['description'];
68) set_database_description($db, $description);
69) }
70) if (isset($_GET['username'])) {
71) $user = $_GET['username'];
72) $description = $_POST['description'];
73) set_dbuser_description($user, $description);
74) }
75) redirect('overview');
76) }
77)
78)
79) if (isset($_GET['action'])) {
80) switch ($_GET['action'])
81) {
82) case 'delete_db':
83) if (! has_mysql_database($_GET['db']))
84) system_failure('Ungültige Datenbank');
85) $sure = user_is_sure();
86) if ($sure === NULL)
87) {
88) are_you_sure("action=delete_db&db={$_GET['db']}", "Möchten Sie die Datenbank »{$_GET['db']}« wirklich löschen?");
89) }
90) elseif ($sure === true)
91) {
92) delete_mysql_database($_GET['db']);
93) redirect('overview');
94) }
95) elseif ($sure === false)
96) {
97) redirect('overview');
98) }
99) break;
100) case 'delete_user':
101) if (! has_mysql_user($_GET['user']))
102) system_failure('Ungültiger Benutzer');
103) $sure = user_is_sure();
104) if ($sure === NULL)
105) {
106) are_you_sure("action=delete_user&user={$_GET['user']}", "Möchten Sie den Benutzer »{$_GET['user']}« wirklich löschen?");
107) }
108) elseif ($sure === true)
109) {
110) delete_mysql_account($_GET['user']);
111) redirect('overview');
112) }
113) elseif ($sure === false)
114) {
115) redirect('overview');
116) }
117) break;
118) case 'change_pw':
119) check_form_token('mysql_databases');
|