exec.php
11.1 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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
<?php
if(empty($_GET)){
echo "
Esse programa gera um arquivo gif a partir de uma camada existente em i3geo/temas <br>
O arquivo gif é gerado na pasta temporária e reaproveitado como cache <br>
<br>Parâmetros: <br>
&tema = código do tema (mapfile) existente em i3geo/temas<br>
&colunat = coluna da tabela de atributos do tema que contém o período.
Essa coluna será utilizada para gerar o filtro para o desenho de cada frame que comporá o gif<br>
&tempo = tempo em milisegundos entre cada frame<br>
&w = largura da imagem em pixels<br>
&h = altura da imagem em pixels<br>
&cache = sim|nao utiliza cache do arquivo gif?<br>
&mapext = extensão geográfica xmin,ymin,xmax,ymax que será usada nas imagens<br>
&legenda = sim|nao<br>
&transparente = sim|nao<br>
&operador = operador que será utilizado no filtro. Por default utilza-se 'igual a'. Pode ser ainda lt (menor que) ou gt (maior que)<br>
&nulos = lista de valores, separados por ',' que não serão considerados ao aplicar o filtro, por exemplo &nulos=-, ,0<br>
&tipocolunat = string|numero tipo de dados existentes na coluna que contém os valores para o filtro<br>
O tema pode ter parâmetros já armazenados no METADATA animagif, criado pelo formulário do i3Geo.
Para forçar o uso desses parâmetros, basta passar &colunat como vazio.
";
exit;
}
//http://localhost/i3geo/ferramentas/animagif/exec.php?operador=lt&nulos=-&transparente=nao&legenda=sim&tema=_llocalianimagif&colunat=ANOCRIA&w=500&h=500&mapext=-74%20-32%20-34%204
//http://localhost:8014/i3geo/ferramentas/animagif/exec.php?transparente=nao&legenda=sim&tema=dengue_casos_provaveis&colunat=semana_ano_epidemiologico&w=500&h=500&mapext=-74%20-32%20-34%204
//http://localhost/i3geo/ferramentas/animagif/exec.php?nulos=-,0&transparente=sim&legenda=nao&tema=_llocalianimagif&colunat=ANOCRIA&w=500&h=500&mapext=-74%20-32%20-34%204&tipocolunat=string
include("../../ms_configura.php");
include("../blacklist.php");
verificaBlFerramentas(basename(dirname(__FILE__)),$i3geoBlFerramentas,false);
include("../../classesphp/funcoes_gerais.php");
include("../../classesphp/carrega_ext.php");
include_once (dirname(__FILE__)."/../../classesphp/sani_request.php");
$_GET = array_merge($_GET,$_POST);
//
//verifica se existem parametros definidos no proprio mapfile
//
if(empty($_GET["colunat"])){
$nmapa = ms_newMapObj($locaplic."/temas/".$_GET["tema"].".map");
$layer = $nmapa->getlayerbyname($_GET["tema"]);
$animagif = $layer->getmetadata("animagif");
$animagif = json_decode(str_replace("'",'"',$animagif),true);
$_GET["colunat"] = $animagif["colunat"];
$_GET["tempo"] = $animagif["tempo"];
$_GET["w"] = $animagif["w"];
$_GET["h"] = $animagif["h"];
$_GET["cache"] = $animagif["cache"];
$_GET["mapext"] = $animagif["mapext"];
$_GET["legenda"] = $animagif["legenda"];
$_GET["transparente"] = $animagif["transparente"];
$_GET["operador"] = $animagif["operador"];
$_GET["nulos"] = $animagif["nulos"];
$_GET["tipocolunat"] = $animagif["tipocolunat"];
}
//podem vir da url tbm
$tema = $_GET["tema"];
$colunat = $_GET["colunat"];
$tempo = $_GET["tempo"];
$w = $_GET["w"];
$h = $_GET["h"];
$cache = $_GET["cache"];
$mapext = $_GET["mapext"];
$legenda = $_GET["legenda"];
$transparente = $_GET["transparente"];
$operador = $_GET["operador"];
$nulos = $_GET["nulos"];
$tipocolunat = $_GET["tipocolunat"];
$v = versao();
$vi = $v["inteiro"];
$v = $v["principal"];
if($cache == "nao"){
$nometemp = nomeRandomico();
} else {
$nometemp = md5(implode("",$_GET));
}
$nometemp = "animagif".$nometemp;
if(empty($tempo)){
$tempo = 40;
}
if(empty($w)){
$w = 500;
}
if(empty($h)){
$h = 500;
}
if(empty($nulos)){
$nulos = "";
}
if(empty($tipocolunat)){
$tipocolunat = "string";
}
if(empty($operador)){
$operador = "=";
}
else{
if($operador == "lt"){
$operador = "<";
} elseif ($operador == "gt"){
$operador = ">";
}
}
if(!in_array($operador,array("=","<",">"))){
exit;
}
$nulos = explode(",",$nulos);
$arqtemp = $dir_tmp."/".$nometemp;
if(file_exists($arqtemp.".gif")){
if(getimagesize($arqtemp.".gif") == false){
echo "";
exit;
}
$gifBinary = file_get_contents($arqtemp.".gif");
//retorna o gif para o navegador
header('Content-type: image/gif');
header('Content-Disposition: filename="'.$tema.'.gif"');
echo $gifBinary;
exit;
}
//
//carrega o phpmapscript
//
if (!function_exists('ms_GetVersion')){
if (strtoupper(substr(PHP_OS, 0, 3) == 'WIN')){
if(!@dl('php_mapscript_48.dll'))
dl('php_mapscript.dll');
}
else{
dl('php_mapscript.so');
}
}
$versao = versao();
$versao = $versao["principal"];
//cria um mapa temporario
//base vem de ms_configura
if($base == "" or !isset($base)){
$base = "";
if (strtoupper(substr(PHP_OS, 0, 3) == 'WIN')){
$base = $locaplic."/aplicmap/geral1windowsv".$versao.".map";
}
else{
if($base == "" && file_exists('/var/www/i3geo/aplicmap/geral1debianv'.$versao.'.map')){
$base = "/var/www/i3geo/aplicmap/geral1debianv".$versao.".map";
}
if($base == "" && file_exists('/var/www/html/i3geo/aplicmap/geral1fedorav'.$versao.'.map')){
$base = "/var/www/html/i3geo/aplicmap/geral1fedorav".$versao.".map";
}
if($base == "" && file_exists('/opt/www/html/i3geo/aplicmap/geral1fedorav'.$versao.'.map')){
$base = "/opt/www/html/i3geo/aplicmap/geral1v".$versao.".map";
}
if($base == ""){
$base = $locaplic."/aplicmap/geral1v".$versao.".map";
}
}
}
else{
if(!file_exists($base)){
$base = $locaplic."/aplicmap/".$base;
}
}
//desenv /var/www/html/i3geo/i3geo/sage/camadas/base_linux.map
$mapa = ms_newMapObj($base);
//remove as camadas do mapa base
$numlayers = $mapa->numlayers;
for ($i=0;$i < $numlayers;$i++){
$layern = $mapa->getlayer($i);
if($layern->name != "copyright"){
$layern->set("status",MS_DELETE);
}
else{
$layern->set("status",MS_DEFAULT);
}
}
//ajusta o label
$copyright = $mapa->getlayerbyname("copyright");
if($copyright != ""){
$classe = $copyright->getclass(0);
if($vi >= 60200){
$label = $classe->getLabel(0);
}
else{
$label = $classe->label;
}
$label->updatefromstring("LABEL TYPE TRUETYPE END");
$label->set("font","arial");
$label->set("size",15);
$label->updatefromstring("LABEL POSITION lr END");
$label->updatefromstring('LABEL STYLE GEOMTRANSFORM "labelpoly" COLOR 255 255 255 END END');
}
//adiciona ao mapa base as camadas do mapfile indicado em $tema
$nmapa = ms_newMapObj($locaplic."/temas/".$tema.".map");
$numlayers = $nmapa->numlayers;
for ($i=0;$i < $numlayers;$i++){
$layern = $nmapa->getlayer($i);
$layern->set("status",MS_DEFAULT);
if (!empty($postgis_mapa)){
if ($layern->connectiontype == MS_POSTGIS){
$lcon = $layern->connection;
//error_reporting(0);
if (($lcon == " ") || ($lcon == "") || (in_array($lcon,array_keys($postgis_mapa)))){
if(($lcon == " ") || ($lcon == "")){
$layern->set("connection",$postgis_mapa);
}
else{
$layern->set("connection",$postgis_mapa[$lcon]);
}
}
}
}
autoClasses($layern,$nmapa);
cloneInlineSymbol($layern,$nmapa,$mapa);
ms_newLayerObj($mapa, $layern);
}
//aplica a extensao geografica
$layer = $mapa->getlayerbyname($tema);
$extatual = $mapa->extent;
$ret = "";
if(isset($mapext)){
$ret = str_replace(","," ",$mapext);
}
else{
$ret = $layer->getmetadata("extensao");
}
if ($ret != ""){
$ret = explode(" ",$ret);
$extatual->setextent($ret[0],$ret[1],$ret[2],$ret[3]);
}
$mapa->setsize($w,$h);
$sca = $mapa->scalebar;
$sca->set("status",MS_OFF);
if($legenda == "sim"){
$leg = $mapa->legend;
$leg->set("status",MS_EMBED);
$cor = $leg->imagecolor;
$cor->setrgb(250,250,250);
$labelleg = $leg->label;
$labelleg->updatefromstring("LABEL TYPE TRUETYPE END");
$labelleg->set("font","arial");
$labelleg->set("size",12);
$leg->set("keyspacingy",0);
$leg->set("keysizey",20);
$layer = $mapa->getlayerbyname($tema);
$nclass = $layer->numclasses;
for($i=0;$i<$nclass;$i++){
$classe = $layer->getclass($i);
if($classe->title === ""){
$classe->title = $classe->name;
}
}
}
$c = $mapa->imagecolor;
$c->setrgb(-1,-1,-1);
$o = $mapa->outputformat;
$o->set("imagemode",MS_IMAGEMODE_RGBA);
if($transparente == "sim"){
$o->set("transparent",MS_TRUE);
}
restauraConObj($mapa,$postgis_mapa);
$mapa->save($arqtemp.".map");
/*
if(validaAcessoTemas($arqtemp.".map",false) == true){
echo "Existem temas restritos";exit;
}
*/
//pega a lista de valores unicos da $colunat
include_once("../../classesphp/classe_atributos.php");
$m = new Atributos($arqtemp.".map",$tema);
$lista = $m->listaUnicoRapida($colunat);
$listaunica = array();
foreach($lista as $l){
$l = str_replace($nulos,"",$l);
if($l != ""){
$listaunica[] = $l;
}
}
$mapa = ms_newMapObj($arqtemp.".map");
//cria as imagens para cada periodo
$layer = $mapa->getlayerbyname($tema);
$copyright = $mapa->getlayerbyname("copyright");
if($copyright != ""){
$classe = ms_newClassObj($copyright);
$classet = ms_newClassObj($copyright);
$classet->title = " ";
}
$mapa->moveLayerdown(0);
$mapa->save($arqtemp.".map");
substituiCon($mapa,$postgis_mapa);
$mapa = ms_newMapObj($arqtemp.".map");
$copyright = $mapa->getlayerbyname("copyright");
if($copyright != ""){
$c = $copyright->getclass(0);
if($vi >= 60200){
$label = $c->getLabel(0);
}
else{
$label = $c->label;
}
}
//$classe = ms_newClassObj($copyright);
$imagens = array();
$duracao = array();
$objImagem = "";
foreach($listaunica as $d){
$layer = $mapa->getlayerbyname($tema);
if(strtoupper($colunat) == $colunat){
$filtro = "(('[$colunat]' $operador '$d'))";
if($tipocolunat == "numerico" || $tipocolunat == "numero"){
$filtro = "(([$colunat] $operador $d))";
}
}
else{
$filtro = "$colunat $operador '$d'";
if($tipocolunat == "numerico" || $tipocolunat == "numero"){
$filtro = "$colunat $operador $d";
}
}
$layer->setfilter($filtro);
$nomec = $arqtemp.$d.".png";
if($copyright != "" && $vi >= 60300){
$s = "LABEL TEXT '".$d."' END";
$label->updateFromString($s);
}
else{
$classe->title = $d;
}
//$mapa->save($arqtemp."teste.map");
$mapa->save($arqtemp.".map");
if(!file_exists($nomec)){
if($objImagem == ""){
$objImagem = $mapa->draw();
$objImagem->saveImage($nomec);
}
else{
$i = $mapa->draw();
$objImagem->pasteImage($i,-1);
$objImagem->saveImage($nomec);
}
}
$imagens[] = $nomec;
$duracao[] = $tempo;
//$mapa->save($arqtemp.".map");exit;
}
restauraConObj($mapa,$postgis_mapa);
$mapa->save($arqtemp.".map");
unlink($arqtemp.".map");
$mapa = null;
//junta as imagens no gif
include("../../pacotes/gifcreator/GifCreator.php");
$gc = new GifCreator();
$gc->create($imagens, $duracao, 0);
$gifBinary = $gc->getGif();
file_put_contents($arqtemp.".gif", $gifBinary);
//retorna o gif para o navegador
ob_clean();
header('Content-type: image/gif');
header('Content-Disposition: filename="'.$tema.'.gif"');
echo $gifBinary;
exit;
?>