-
Notifications
You must be signed in to change notification settings - Fork 0
/
mgmt_mysql.pl
189 lines (150 loc) · 4.21 KB
/
mgmt_mysql.pl
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
use Mojolicious::Lite;
#
# Copyright (C) 2015 by Mateusz Hromada
# Approved by Zawoor (znalazł błąd => dostał wafelka)
#
use strict;
use utf8;
use Carp;
use DBI;
my $DB;
my $DRH;
my $config = plugin 'JSONConfig' => { file => 'mgmt_mysql.conf' };
app->secret( $config->{app}->{secret} );
$DB = DBI->connect(
$config->{db}->{dsn},
$config->{db}->{user},
$config->{db}->{password},
{ RaiseError => 1, PrintError => 0, mysql_auto_reconnect => 1 }
) or die $DBI::errstr;
$DRH = DBI->install_driver('mysql');
get '/mysql/users' => sub {
my $c = shift;
$c->res->headers->cache_control('max-age=1, no-cache');
my $sth = $DB->prepare_cached("SELECT user FROM mysql.user");
eval { $sth->execute(); };
if ($@) {
$c->rendered(503);
return;
}
my @users = map @$_, @{ $sth->fetchall_arrayref };
$c->render( json => [@users] );
};
post '/mysql/users' => sub {
my $c = shift;
$c->res->headers->cache_control('max-age=1, no-cache');
my $content_type = $c->req->headers->content_type;
if ( $content_type !~ q|^application/json(?:;\S+)?$| ) {
$c->rendered(415);
return;
}
my $req = $c->req->json;
unless ( defined $req ) {
$c->rendered(400);
return;
}
my $name = $req->{name};
my $sth = $DB->prepare_cached("CREATE USER ?");
eval { $sth->execute($name); };
if ($@) {
$c->render( json => { error => $@ }, status => 409 );
return;
}
$c->rendered(204);
};
put '/mysql/users/#name' => sub {
my $c = shift;
$c->res->headers->cache_control('max-age=1, no-cache');
my $content_type = $c->req->headers->content_type;
if ( $content_type !~ q|^application/json(?:;\S+)?$| ) {
$c->rendered(415);
return;
}
my $req = $c->req->json;
unless ( defined $req ) {
$c->rendered(400);
return;
}
my $name = $c->param('name');
my $password = $req->{password};
if ( $name eq 'root' ) {
$c->render( json => { error => 'Bad user: root' }, status => 403 );
return;
}
my $sth = $DB->prepare_cached("SET PASSWORD FOR ? = PASSWORD(?)");
eval { $sth->execute( $name, $password ); };
if ($@) {
$c->render( json => { error => $@ }, status => 404 );
return;
}
$c->rendered(204);
};
get '/mysql/databases' => sub {
my $c = shift;
$c->res->headers->cache_control('max-age=1, no-cache');
my $sth = $DB->prepare_cached("SHOW DATABASES");
eval { $sth->execute(); };
if ($@) {
$c->rendered(503);
return;
}
my @dbs = map @$_, @{ $sth->fetchall_arrayref };
$c->render( json => [@dbs] );
};
post '/mysql/databases' => sub {
my $c = shift;
$c->res->headers->cache_control('max-age=1, no-cache');
my $content_type = $c->req->headers->content_type;
if ( $content_type !~ q|^application/json(?:;\S+)?$| ) {
$c->rendered(415);
return;
}
my $req = $c->req->json;
unless ( defined $req ) {
$c->rendered(400);
return;
}
my $owner = $req->{owner};
my $name = $req->{name};
unless (
$DRH->func(
'createdb', $DB->quote_identifier($name),
$config->{db}->{host}, $config->{db}->{user},
$config->{db}->{password}, 'admin'
)
)
{
$c->rendered(409);
return;
}
my $sth =
$DB->prepare_cached( "GRANT ALL PRIVILEGES ON "
. $DB->quote_identifier($name)
. ".* TO ?\@'%'" );
$sth->execute($owner);
$c->rendered(204);
};
del '/mysql/databases/#name' => sub {
my $c = shift;
my $name = $c->param('name');
if ( $name eq 'mysql' ) {
$c->render( json => { error => 'Bad database: mysql' }, status => 403 );
return;
}
$DRH->func(
'dropdb',
$DB->quote_identifier($name),
$config->{db}->{host},
$config->{db}->{user},
$config->{db}->{password}, 'admin'
);
my $sth = $DB->prepare_cached("DELETE FROM mysql.db WHERE db = ?");
$sth->execute($name);
$DB->do('flush privileges');
$c->rendered(204);
};
any '/*any' => { any => '' } => sub {
my $c = shift;
$c->rendered(404);
};
app->start;