exec.php
6.8 KB
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
190
191
192
193
194
195
196
197
<?php
/*
Title: exec.php
Licenca:
GPL2
i3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet
Direitos Autorais Reservados (c) 2006 Ministério do Meio Ambiente Brasil
Desenvolvedor: Edmar Moretti edmar.moretti@gmail.com
Este programa é software livre; você pode redistribuí-lo
e/ou modificá-lo sob os termos da Licença Pública Geral
GNU conforme publicada pela Free Software Foundation;
Este programa é distribuído na expectativa de que seja útil,
porém, SEM NENHUMA GARANTIA; nem mesmo a garantia implícita
de COMERCIABILIDADE OU ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA.
Consulte a Licença Pública Geral do GNU para mais detalhes.
Você deve ter recebido uma cópia da Licença Pública Geral do
GNU junto com este programa; se não, escreva para a
Free Software Foundation, Inc., no endereço
59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
*/
include_once(dirname(__FILE__)."/../../admin1/php/login.php");
include(dirname(__FILE__)."/../blacklist.php");
verificaBlFerramentas(basename(dirname(__FILE__)),$i3geoBlFerramentas,false);
$funcoesEdicao = array(
"ADICIONAGEOMETRIA",
"ATUALIZAGEOMETRIA",
"EXCLUIREGISTRO",
"SALVAREGISTRO"
);
if(in_array(strtoupper($funcao),$funcoesEdicao)){
if(verificaOperacaoSessao("admin/html/editormapfile") == false){
retornaJSON("Vc nao pode realizar essa operacao. Tente fazer login novamente.");exit;
}
}
$retorno = "";
//faz a busca da função que deve ser executada
switch (strtoupper($funcao))
{
case "ADICIONAGEOMETRIA":
$mapa = ms_newMapObj($map_file);
$layer = $mapa->getlayerbyname($tema);
if(strtolower($layer->getmetadata("EDITAVEL")) != "sim"){
$retorno = "erro";
}
else{
$tabela = $layer->getmetadata("TABELAEDITAVEL");
$esquema = $layer->getmetadata("ESQUEMATABELAEDITAVEL");
$colunaidunico = $layer->getmetadata("COLUNAIDUNICO");
$colunageometria = $layer->getmetadata("COLUNAGEOMETRIA");
if($colunageometria == ""){
$retorno = "erro";
}
$c = stringCon2Array($layer->connection);
try {
$dbh = new PDO('pgsql:dbname='.$c["dbname"].';user='.$c["user"].';password='.$c["password"].';host='.$c["host"].';port='.$c["port"]);
//pega o SRID
$sql = "select ST_SRID($colunageometria) as srid from $esquema"."."."$tabela LIMIT 1";
$q = $dbh->query($sql,PDO::FETCH_ASSOC);
$r = $q->fetchAll();
$srid = $r[0]["srid"];
if($srid == ""){
$sql = "select srid from public.geometry_columns where f_table_schema = '$esquema' and f_table_name = '$tabela'";
$q = $dbh->query($sql,PDO::FETCH_ASSOC);
$r = $q->fetchAll();
$srid = $r[0]["srid"];
if($srid == ""){
$srid = -1;
}
}
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$dbh->beginTransaction();
$sql = "INSERT INTO ".$esquema.".".$tabela." (".$colunageometria.")";
$sql .= " VALUES (ST_GeomFromText('SRID=$srid;".$wkt."'))";
$sth = $dbh->exec($sql);
$dbh->commit();
$retorno = "ok";
} catch (Exception $e) {
$dbh->rollBack();
$retorno = array("Falhou: " . $e->getMessage());
}
}
break;
case "ATUALIZAGEOMETRIA":
$mapa = ms_newMapObj($map_file);
$layer = $mapa->getlayerbyname($tema);
if(strtolower($layer->getmetadata("EDITAVEL")) != "sim"){
$retorno = "erro";
}
else{
$tabela = $layer->getmetadata("TABELAEDITAVEL");
$esquema = $layer->getmetadata("ESQUEMATABELAEDITAVEL");
$colunaidunico = $layer->getmetadata("COLUNAIDUNICO");
$colunageometria = $layer->getmetadata("COLUNAGEOMETRIA");
if($colunageometria == ""){
$retorno = "erro";
}
$c = stringCon2Array($layer->connection);
try {
$dbh = new PDO('pgsql:dbname='.$c["dbname"].';user='.$c["user"].';password='.$c["password"].';host='.$c["host"].';port='.$c["port"]);
//pega o SRID
$sql = "select ST_SRID($colunageometria) as srid from $esquema"."."."$tabela LIMIT 1";
//echo $sql;exit;
$q = $dbh->query($sql,PDO::FETCH_ASSOC);
$r = $q->fetchAll();
$srid = $r[0]["srid"];
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$dbh->beginTransaction();
$sql = "UPDATE ".$esquema.".".$tabela." SET ".$colunageometria." = (ST_GeomFromText('SRID=$srid;".$wkt."')) WHERE $colunaidunico = ".$idunico;
$sth = $dbh->exec($sql);
$dbh->commit();
$retorno = "ok";
} catch (Exception $e) {
$dbh->rollBack();
$retorno = array("Falhou: " . $e->getMessage());
}
}
break;
case "EXCLUIREGISTRO":
$mapa = ms_newMapObj($map_file);
$layer = $mapa->getlayerbyname($tema);
if(strtolower($layer->getmetadata("EDITAVEL")) != "sim"){
$retorno = "erro";
}
else{
$tabela = $layer->getmetadata("TABELAEDITAVEL");
$esquema = $layer->getmetadata("ESQUEMATABELAEDITAVEL");
$colunaidunico = $layer->getmetadata("COLUNAIDUNICO");
$colunageometria = $layer->getmetadata("COLUNAGEOMETRIA");
if($colunageometria == ""){
$retorno = "erro";
}
$c = stringCon2Array($layer->connection);
try {
$dbh = new PDO('pgsql:dbname='.$c["dbname"].';user='.$c["user"].';password='.$c["password"].';host='.$c["host"].';port='.$c["port"]);
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$dbh->beginTransaction();
$sql = "DELETE from ".$esquema.".".$tabela." where ".$colunaidunico."::text = '$identificador' ";
//echo $sql;exit;
$sth = $dbh->exec($sql);
$dbh->commit();
$retorno = "ok";
} catch (Exception $e) {
$dbh->rollBack();
$retorno = array("Falhou: " . $e->getMessage());
}
}
break;
case "SALVAREGISTRO":
$mapa = ms_newMapObj($map_file);
$layer = $mapa->getlayerbyname($tema);
if(strtolower($layer->getmetadata("EDITAVEL")) != "sim"){
$retorno = "erro";
}
else{
$tabela = $layer->getmetadata("TABELAEDITAVEL");
$esquema = $layer->getmetadata("ESQUEMATABELAEDITAVEL");
$colunaidunico = $layer->getmetadata("COLUNAIDUNICO");
if($colunageometria == ""){
$retorno = "erro";
}
$c = stringCon2Array($layer->connection);
try {
$dbh = new PDO('pgsql:dbname='.$c["dbname"].';user='.$c["user"].';password='.$c["password"].';host='.$c["host"].';port='.$c["port"]);
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$dbh->beginTransaction();
$sql = "UPDATE ".$esquema.".".$tabela." SET $coluna = '$valor' where ".$colunaidunico."::text = '$identificador' ";
$sth = $dbh->exec($sql);
$dbh->commit();
} catch (Exception $e) {
$dbh->rollBack();
$retorno = array("Falhou: " . $e->getMessage());
}
}
$retorno = "ok";
break;
}
if (!connection_aborted()){
if(isset($map_file) && isset($postgis_mapa) && $map_file != "")
restauraCon($map_file,$postgis_mapa);
cpjson($retorno);
}
else
{exit();}
?>