-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZonaClass.php
executable file
·145 lines (108 loc) · 4.02 KB
/
ZonaClass.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
<?php
// Classe Zona, adiciona, remove, .......
class Zona{
public $domain;
public $type;
//Contrutor passa 2 paramentros
public function __construct($domain, $type){
$this->domain = $domain;
$this->type = $type;
}
public function getDomain(){
return "Valor domain: $this->domain";
}
public function add($conection){
//WoW FUNCIONA!!!
$remote_file = "/etc/bind/named.conf.local"; #way arq a ser copiado
$local_file = "/tmp/named.conf.local.cpy"; #way arq copiado
// Copiando arquivo do server remote
if(!ssh2_scp_recv($conection, $remote_file, $local_file)){
//echo "nao copiou..";
return false;
}
ssh2_exec($conection, "echo 'zone $this->domain {' >> $remote_file");
ssh2_exec($conection, "echo ' type $this->type;' >> $remote_file");
ssh2_exec($conection, "echo ' file /etc/bind/db.$this->domain;' >> $remote_file");
ssh2_exec($conection, "echo '};' >> $remote_file");
//shell_exec("echo zone $this->domain { >> $local_file");
//shell_exec("echo file /etc/bind/db.$this->domain; >> $local_file");
//shell_exec("echo }; >> $local_file");
/*
/////////////////////////////////////////////
// Abrindo, escrevendo e fechando arquivo...
$file = fopen($local_file, 'a');
//fwrite($file, $text);
fwrite($file, "zone $this->domain {\n");
fwrite($file, "\ttype $this->type;\n");
fwrite($file, "\tfile /etc/bind/db.$this->domain;\n");
fwrite($file, "};\n");
fclose($file);
/////////////////////////////////////////////
*/
// Copiando arquivo alterado para server remote
// Retornado false se nao copiou
//return ssh2_scp_send($conection, $local_file, $remote_file);
return true;
}
//Registros de Recursos Dominio - Hosts cadastrados no dominio
public function getRRDominio($conection, $domain){
// Retornar uma matriz em que cada linha representa uma linha
// do arquivo de dados da zona, cada indice dessa linha contem os dados da linha...
// Ex.:
//Array ( [0] => Array ( [0] => @ [1] => IN [2] => NS [3] => localhost. )
// [1] => Array ( [0] => @ [1] => IN [2] => A [3] => 127.0.0.1 )
// [2] => Array ( [0] => @ [1] => IN [2] => AAAA [3] => ::1 )
// [3] => Array ( [0] => ) )
$remote_file = "/etc/bind/db.$domain";
$local_file = "/tmp/db.$domain.cpy";
// Copiando arquivo do server remote
if(!ssh2_scp_recv($conection, $remote_file, $local_file)){
return false;
}
// Transforma o arquivo na string e guarda...
$file = file_get_contents($local_file);
// Quebra a string em linha guardando num array,
// onde cada indice eh uma linha...
$convert = explode("\n", $file);
$array = array(); //array para guardar dados resgatados..
for ($i=8, $k=0; $i<count($convert); $i++, $k++) {
// i -> var represnt linha atual do arq...
// k -> var representa indice no array q ira retornar...inicia com 0
$array[$k] = explode(" ", $convert[$i]);
}
return $array;
}
// Pesquisa zona pelo seu domain(que deve ser passado como parametro)
// retornar array com dados da zona
public function pesquisaZona($conection, $domain){
$remote_file = "/etc/bind/named.conf.local"; #way arq a ser copiado
$local_file = "/tmp/named.conf.local.cpy"; #way arq copiado
// Copiando arquivo do server remote
if(!ssh2_scp_recv($conection, $remote_file, $local_file)){
return false;
}
$file = file_get_contents($local_file);
$convert = explode("\n", $file);
$encontrado = false;
for ($i=0; $i < count($convert); $i++) {
if(strstr($convert[$i], $domain)){
//echo "Domain: ".$convert[$i]."<br>";
//echo "Type: ".$convert[$i+1]."<br>";
//echo "File: ".$convert[$i+2]."<br><br>";
$type = explode(" ", $convert[$i+1]);
$file = explode(" ", $convert[$i+2]);
$encontrado = true;
break;
}
}
if(!$encontrado){
return false;
}
$array = array('0' => $type[1], '1' => $file[1]);
return $array;
}
public function toString(){
return "domain:$this->domain; type:$this->type";
}
}
?>