-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBind.php
186 lines (156 loc) · 3.73 KB
/
Bind.php
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
<?php
/**
* Bind class
*
* @package Framework
*/
define('BIND_TEMPLATE_NOTFOUND', 'The template file could not be loaded.');
require_once('Meta.php');
require_once('API.php');
define('NAMED_DIR', '/etc/bind');
/**
* Bind management class.
*
* @author Marco Ceppi <[email protected]>
* @package Framework
* @subpackage Bind
*/
class Bind extends Meta
{
public static $path = '/etc/meta/dns';
public static function defaults( $template )
{
$template_file = OWN_PATH . '/templates/' . $template . '.tpl';
if( is_file( OWN_PATH . '/templates/' . $template . '.tpl') )
{
if( preg_match_all("/\[([A-Z_-]*?)\]/", file_get_contents($template_file), $matches) > 0 )
{
$defaults = array_unique($matches[1]);
return $defaults;
}
else
{
return false;
}
}
else
{
throw new Exception(BIND_TEMPLATE_NOTFOUND);
}
}
public static function validate( $raw, $type )
{
switch(strtoupper($type))
{
case 'CNAME':
case 'MX':
// NEED TO IMPLEMENT
return true;
break;
case 'A':
return (filter_var($raw, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) === false) ? false : true;
break;
case 'AAAA':
return (filter_var($raw, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) === false) ? false : true;
case 'TXT':
return true;
break;
}
return false;
}
}
class Bind_Client extends Bind
{
// This needs to be a call to the API!
protected static function get_raw( $path )
{
return API::get('dns', str_replace('/etc/', '', $path));
}
protected static function set_raw( $path, $data )
{
return API::set('dns', str_replace('/etc/', '', $path), $data);
}
public static function del_raw( $path )
{
return API::del('dns', str_replace('/etc/', '', $path));
}
}
class Bind_Server extends Bind
{
public static function reload()
{
return self::_cmd('reload');
}
public static function restart()
{
return self::_cmd('restart');
}
public static function stop()
{
return self::_cmd('stop');
}
public static function start()
{
return self::_cmd('start');
}
private static function _cmd( $action )
{
system("/etc/init.d/bind9 $action", $status);
return ( $status > 0 ) ? false : true;
}
public static function generate( $user, $domain )
{
// This will pull the META data from disk and return in an assoc array
$meta = Bind_Client::get($user, $domain, true);
$template_path = OWN_PATH . '/templates';
$parsed = array();
foreach( $meta['lines'] as $key => $entries )
{
$is_opt = $is_ns = false;
switch( $key )
{
case 'SOA':
$zone = str_replace('[USER]', $user, file_get_contents("$template_path/zone.tpl"));
$zone = str_replace('[DOMAIN]', $domain, $zone);
$zone = str_replace('[TTL]', $meta['zone']['ttl'], $zone);
foreach( $entries as $el => $val )
{
$el = strtoupper($el);
$zone = str_replace("[$el]", $val, $zone);
}
break;
case 'MX':
case 'TXT':
$is_opt = true;
case 'NS':
case 'A':
case 'CNAME':
default:
if( !array_key_exists($key, $parsed) )
{
$parsed[$key] = array();
}
foreach( $entries as $entry )
{
$line = ($is_opt) ? file_get_contents("$template_path/opt-line.tpl") : file_get_contents("$template_path/line.tpl");
$line = str_replace('[CLASS]', $key, $line);
foreach( $entry as $el => $val )
{
$el = strtoupper($el);
$line = str_replace("[$el]", $val, $line);
}
$parsed[$key][] = $line;
unset($line);
}
break;
}
}
$zone .= implode('', $parsed['NS']);
unset($parsed['NS']);
foreach( $parsed as $lines )
{
$zone .= implode('', $lines);
}
file_put_contents(NAMED_DIR . "/zones/$user/$domain.db", $zone);
}
}