forked from virtualmin/virtualmin-gpl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create_newmysql.cgi
executable file
·68 lines (61 loc) · 1.89 KB
/
create_newmysql.cgi
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
#!/usr/local/bin/perl
# Add a new MySQL or PostgreSQL clone module
require './virtual-server-lib.pl';
&can_edit_templates() || &error($text{'newmysqls_ecannot'});
&error_setup($text{'newmysqls_err'});
&ReadParse();
# Validate inputs
if ($in{'mode'} == 0) {
&to_ipaddress($in{'host'}) || &error($text{'newmysqls_ehost'});
&check_ipaddress($in{'host'}) && &error($text{'newmysqls_eip'});
$host = $in{'host'};
}
elsif ($in{'mode'} == 1) {
$in{'sock'} =~ /^\/\S+$/ || &error($text{'newmysqls_esock'});
$sock = $in{'sock'};
}
if (!$in{'port_def'}) {
$in{'port'} =~ /^\d+$/ || &error($text{'newmysqls_eport'});
$port = $in{'port'};
}
$in{'myuser'} =~ /^\S+$/ || &error($text{'newmysqls_euser'});
$user = $in{'myuser'};
$pass = $in{'mypass'};
$ssl = $in{'ssl'};
# Add the clone module
$mm = { 'minfo' => { },
'config' => { 'host' => $host,
'port' => $port,
'login' => $user,
'pass' => $pass },
};
if ($in{'type'} eq 'mysql') {
# Add as MySQL module
$mm->{'config'}->{'ssl'} = $ssl;
$mm->{'config'}->{'sock'} = $sock;
&create_remote_mysql_module($mm);
# Check that the MySQL connection works, and delete if not
$mod = $mm->{'minfo'}->{'dir'};
&foreign_require($mod, "mysql-lib.pl");
($ok, $err) = &foreign_call($mod, "is_mysql_running");
if ($ok != 1) {
&delete_remote_mysql_module($mm);
&error(&text('newmysqls_econn', $err));
}
}
else {
# Add as PostgreSQL module
$sock && &error($text{'newmysqls_esock2'});
$mm->{'config'}->{'sslmode'} = 'require' if ($ssl);
&create_remote_postgres_module($mm);
# Check that the connection works
$mod = $mm->{'minfo'}->{'dir'};
&foreign_require($mod, "postgresql-lib.pl");
($ok, $err) = &foreign_call($mod, "is_postgresql_running");
if ($ok != 1) {
&delete_remote_postgres_module($mm);
&error(&text('newmysqls_econn', $err));
}
}
&webmin_log("create", "newmysql", $host || $sock, $mm->{'config'});
&redirect("edit_newmysqls.cgi");