forked from lattera/drupal-jailadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jailadmin.helpers.inc
98 lines (68 loc) · 2.11 KB
/
jailadmin.helpers.inc
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
<?php
function get_all_jails_for_select() {
$all = Jail::LoadAll();
$jails = array();
foreach ($all as $jail)
$jails[$jail->name] = $jail->name;
return $jails;
}
function get_all_networks_for_select() {
$all = Network::LoadAll();
$networks = array();
foreach ($all as $network) {
$ip = "";
if (!count($network->ips))
$ip = "NO IP";
foreach ($network->ips as $rawip) {
if (strlen($ip))
$ip .= ", ";
$ip .= (strlen($rawip)) ? $rawip : "NO IP";
}
$networks[$network->name] = $network->name . ' (' . $ip . ')';
}
return $networks;
}
function get_all_network_devices_for_select($jail) {
$networks = array();
foreach ($jail->network as $network) {
$ip = "";
if ($network->is_span)
$ip .= "(SPAN) ";
if (!count($network->ips))
$ip .= "(NO IP)";
foreach ($network->ips as $rawip) {
if (strlen($ip))
$ip .= ", ";
$ip .= (strlen($rawip)) ? $rawip : "NO IP";
}
$networks[$network->device] = t($network->device . ' (' . $ip . ')');
}
return $networks;
}
function get_all_services_for_select($jail) {
$services = array();
foreach ($jail->services as $service)
$services[$service->path] = $service->path;
return $services;
}
function get_all_templates_for_select() {
$result = db_query('SELECT * FROM {jailadmin_templates}');
$templates = array();
$templates[] = '[NO TEMPLATE]';
foreach ($result as $record)
$templates[$record->snapshot] = $record->name;
return $templates;
}
function get_all_mounts_for_select($jail) {
$mounts = array();
foreach ($jail->mounts as $mount)
$mounts[$mount->target] = $mount->target;
return $mounts;
}
function get_all_routes_for_select($jail) {
$routes = array();
$i=0;
foreach ($jail->routes as $route)
$routes[$route['source'] . '^' . $route['destination'] . '^' . $i++] = $route['source'] . '->' . $route['destination'];
return $routes;
}