1 | <?php |
---|
2 | /** |
---|
3 | * |
---|
4 | * Copyright (C) 2011 Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) |
---|
5 | * |
---|
6 | * This program is free software; you can redistribute it and/or modify it under |
---|
7 | * the terms of the GNU Affero General Public License version 3 as published by |
---|
8 | * the Free Software Foundation with the addition of the following permission |
---|
9 | * added to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED |
---|
10 | * WORK IN WHICH THE COPYRIGHT IS OWNED BY FUNAMBOL, FUNAMBOL DISCLAIMS THE |
---|
11 | * WARRANTY OF NON INFRINGEMENT OF THIRD PARTY RIGHTS. |
---|
12 | * |
---|
13 | * This program is distributed in the hope that it will be useful, but WITHOUT |
---|
14 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
---|
15 | * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more |
---|
16 | * details. |
---|
17 | * |
---|
18 | * You should have received a copy of the GNU Affero General Public License |
---|
19 | * along with this program; if not, see www.gnu.org/licenses or write to |
---|
20 | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
---|
21 | * MA 02110-1301 USA. |
---|
22 | * |
---|
23 | * This code is based on the OpenXchange Connector and on the Prognus pSync |
---|
24 | * Connector both developed by the community and licensed under the GPL |
---|
25 | * version 2 or above as published by the Free Software Foundation. |
---|
26 | * |
---|
27 | * You can contact Prognus Software Livre headquarters at Av. Tancredo Neves, |
---|
28 | * 6731, PTI, Bl. 05, Esp. 02, Sl. 10, Foz do Iguaçu - PR - Brasil or at |
---|
29 | * e-mail address prognus@prognus.com.br. |
---|
30 | * |
---|
31 | * Descrição rápida do arquivo |
---|
32 | * |
---|
33 | * Arquivo responsável pela manipulação dos filtros |
---|
34 | * |
---|
35 | * @package filters |
---|
36 | * @license http://www.gnu.org/copyleft/gpl.html GPL |
---|
37 | * @author Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) |
---|
38 | * @version 1.0 |
---|
39 | * @sponsor Caixa Econômica Federal |
---|
40 | * @since Arquivo disponibilizado na versão 2.4 |
---|
41 | */ |
---|
42 | |
---|
43 | use prototype\api\Config as Config; |
---|
44 | |
---|
45 | /** |
---|
46 | * Classe responsável pela manipulação dos filtros. |
---|
47 | * |
---|
48 | * |
---|
49 | * @package prototype |
---|
50 | * @license http://www.gnu.org/copyleft/gpl.html GPL |
---|
51 | * @author Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) |
---|
52 | * @author Airton Bordin Junior <airton@prognus.com.br> |
---|
53 | * @author Gustavo Pereira dos Santos <gustavo@prognus.com.br> |
---|
54 | * @version 1.0 |
---|
55 | * @since Classe disponibilizada na versão 2.4 |
---|
56 | */ |
---|
57 | class FilterMapping |
---|
58 | { |
---|
59 | var $service; |
---|
60 | var $msgs_apply = array(); |
---|
61 | /** |
---|
62 | * Método que cria o ID da regra que está sendo criada. |
---|
63 | * |
---|
64 | * @license http://www.gnu.org/copyleft/gpl.html GPL |
---|
65 | * @author Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) |
---|
66 | * @sponsor Caixa Econômica Federal |
---|
67 | * @author Airton Bordin Junior <airton@prognus.com.br> |
---|
68 | * @author Gustavo Pereira dos Santos <gustavo@prognus.com.br> |
---|
69 | * @author Natan Fonseca <natan@prognus.com.br> |
---|
70 | * @param <$uri> |
---|
71 | * @param <$result> |
---|
72 | * @param <$criteria> |
---|
73 | * @param <$original> |
---|
74 | * @access <public> |
---|
75 | */ |
---|
76 | public function makeId(&$uri , &$result , &$criteria , $original) { |
---|
77 | $result['id'] = $uri['id']; |
---|
78 | } |
---|
79 | |
---|
80 | |
---|
81 | /** |
---|
82 | * Método que formata o Script de acordo com a sintaxe do Sieve. |
---|
83 | * |
---|
84 | * @license http://www.gnu.org/copyleft/gpl.html GPL |
---|
85 | * @author Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) |
---|
86 | * @sponsor Caixa Econômica Federal |
---|
87 | * @author Airton Bordin Junior <airton@prognus.com.br> |
---|
88 | * @author Gustavo Pereira dos Santos <gustavo@prognus.com.br> |
---|
89 | * @param <Array> <$rules> <Array com as regras do usuário> |
---|
90 | * @return <Regra de acordo com a sintaxe do Sieve> |
---|
91 | * @access <public> |
---|
92 | */ |
---|
93 | public function formatSieveScript( $rules ) |
---|
94 | { |
---|
95 | $require_fileinto = $require_flag = $require_reject = $require_vacation = $require_body = $require_imapflag = $vacation = $startswith = $endswith = false; |
---|
96 | $script_rules = $script_header = $script_criteria = $vacation_action = ""; |
---|
97 | $i = 0; |
---|
98 | |
---|
99 | foreach( $rules as $name => $data ) |
---|
100 | { |
---|
101 | if( $data['enabled'] == 'false' ) |
---|
102 | continue; |
---|
103 | |
---|
104 | if(array_key_exists("block", $data)) |
---|
105 | { |
---|
106 | /* Usado na opção Bloquear usuário do ExpressoMail */ |
---|
107 | if($data['block']) { |
---|
108 | ($i >0) ? $script_match = 'elsif anyof' : $script_match = 'if anyof'; |
---|
109 | $script_match = $script_match . "(address :is \"from\" [\"" .$data['name'] . "\"]) {\r\n"; |
---|
110 | $script_match .= "fileinto \"INBOX/Spam\"; \r\n}\r\n"; |
---|
111 | $script_rules .= $script_match; |
---|
112 | $script_match = ""; |
---|
113 | $script_criteria = ""; |
---|
114 | $require_fileinto = true; |
---|
115 | ++$i; |
---|
116 | continue; |
---|
117 | } |
---|
118 | } |
---|
119 | |
---|
120 | $vacation = false; |
---|
121 | $criteria = $data['criteria']; |
---|
122 | $action = $data['actions']; |
---|
123 | |
---|
124 | ($i >0 && $verifyNextRule == 'false') ? $script_match = 'els' : $script_match = ''; |
---|
125 | $data['isExact'] == 'false' ? $script_match .= 'if anyof (' : $script_match .= 'if allof ('; |
---|
126 | |
---|
127 | $verifyNextRule = 'false'; |
---|
128 | |
---|
129 | if( is_array($criteria) ) |
---|
130 | foreach ($criteria as $j => $value) |
---|
131 | { |
---|
132 | if ($criteria[$j]['operator'] == '!*') $script_criteria .= "not "; |
---|
133 | |
---|
134 | switch(strtoupper($criteria[$j]['field'])) { |
---|
135 | case 'TO': |
---|
136 | case 'CC': |
---|
137 | $criteria[$j]['field'] = "[\"To\", \"TO\", \"Cc\", \"CC\"]"; |
---|
138 | $script_criteria .= "address :"; |
---|
139 | break; |
---|
140 | case 'FROM': |
---|
141 | $criteria[$j]['field'] = "\"" . $criteria[$j]['field'] . "\""; |
---|
142 | $script_criteria .= "address :"; |
---|
143 | break; |
---|
144 | case 'SIZE': |
---|
145 | $criteria[$j]['field'] = ''; |
---|
146 | $script_criteria .= "size :"; |
---|
147 | break; |
---|
148 | case 'SUBJECT': |
---|
149 | $criteria[$j]['field'] = "\"" . $criteria[$j]['field'] . "\""; |
---|
150 | $script_criteria .= "header :"; |
---|
151 | if($criteria[$j]['operator'] == "$") { |
---|
152 | $criteria[$j]['value'] = "" . $criteria[$j]['value'] . "\", \"*" . base64_encode($criteria[$j]['value']) . ""; |
---|
153 | break; |
---|
154 | } |
---|
155 | if($criteria[$j]['operator'] == "^") { |
---|
156 | $criteria[$j]['value'] = "" . $criteria[$j]['value'] . "*\", \"" . base64_encode($criteria[$j]['value']) . ""; |
---|
157 | break; |
---|
158 | } |
---|
159 | $criteria[$j]['value'] = "" . $criteria[$j]['value'] . "\", \"" . base64_encode($criteria[$j]['value']) . ""; |
---|
160 | break; |
---|
161 | case 'BODY': |
---|
162 | $criteria[$j]['field'] = ''; |
---|
163 | $script_criteria .= "body :"; |
---|
164 | $require_body = true; |
---|
165 | break; |
---|
166 | case 'VACATION': |
---|
167 | continue; |
---|
168 | case 'HASATTACHMENT': |
---|
169 | $criteria[$j]['field'] = ''; |
---|
170 | $script_criteria .= "body :"; |
---|
171 | $criteria[$j]['operator'] = "^^"; |
---|
172 | $require_body = true; |
---|
173 | break; |
---|
174 | default: |
---|
175 | $script_criteria .= "header :"; |
---|
176 | break; |
---|
177 | } |
---|
178 | |
---|
179 | switch ($criteria[$j]['operator']) { |
---|
180 | case '>': |
---|
181 | $criteria[$j]['operator'] = "over"; |
---|
182 | $criteria[$j]['value'] = $criteria[$j]['value'] . "K"; |
---|
183 | break; |
---|
184 | case '<': |
---|
185 | $criteria[$j]['operator'] = "under"; |
---|
186 | $criteria[$j]['value'] = $criteria[$j]['value'] . "K"; |
---|
187 | break; |
---|
188 | case '=': |
---|
189 | $criteria[$j]['operator'] = "is"; |
---|
190 | $criteria[$j]['value'] = "[\"" . $criteria[$j]['value'] . "\"]"; |
---|
191 | break; |
---|
192 | case '*': |
---|
193 | $criteria[$j]['operator'] = "contains"; |
---|
194 | $criteria[$j]['value'] = "[\"" . $criteria[$j]['value'] . "\"]"; |
---|
195 | break; |
---|
196 | case '^': |
---|
197 | $criteria[$j]['operator'] = "matches"; |
---|
198 | $criteria[$j]['value'] = "[\"" . $criteria[$j]['value'] . "*\"]"; |
---|
199 | $startswith = true; |
---|
200 | break; |
---|
201 | case '^^': |
---|
202 | $criteria[$j]['operator'] = "raw :matches"; |
---|
203 | $criteria[$j]['value'] = "[\"*filename=*\"]"; |
---|
204 | $startswith = true; |
---|
205 | break; |
---|
206 | case '$': |
---|
207 | $criteria[$j]['operator'] = "matches"; |
---|
208 | $criteria[$j]['value'] = "[\"*" . $criteria[$j]['value'] . "\"]"; |
---|
209 | $endswith = true; |
---|
210 | break; |
---|
211 | case '!*': |
---|
212 | $criteria[$j]['operator'] = "contains"; |
---|
213 | $criteria[$j]['value'] = "[\"" . $criteria[$j]['value'] . "\"]"; |
---|
214 | break; |
---|
215 | } |
---|
216 | |
---|
217 | if ($criteria[$j]['field'] == "" || $criteria[$j]['field'] == "\"subject\"" || $startswith || $endswith) |
---|
218 | { |
---|
219 | $script_criteria .= $criteria[$j]['operator'] . " " . $criteria[$j]['field'] . " " . $criteria[$j]['value'] . ", "; |
---|
220 | $startswith = $endswith = false; |
---|
221 | } |
---|
222 | else |
---|
223 | $script_criteria .= $criteria[$j]['operator'] . " " . $criteria[$j]['field'] . " " . $criteria[$j]['value'] . ", "; |
---|
224 | } |
---|
225 | $script_criteria = substr($script_criteria,0,-2); |
---|
226 | $script_criteria .= ")"; |
---|
227 | |
---|
228 | $action_addFlag = ''; |
---|
229 | |
---|
230 | if( is_array($action) ) |
---|
231 | foreach ($action as $k => $value) |
---|
232 | { |
---|
233 | switch ($action[$k]['type']) { |
---|
234 | case 'setflag': |
---|
235 | $require_flag = true; |
---|
236 | $action[$k]['parameter'] = "\\\\" . $action[$k]['parameter']; |
---|
237 | break; |
---|
238 | case 'addflag': |
---|
239 | $require_flag = true; |
---|
240 | $action_addFlag = "addflag \"" . $action[$k]['parameter'] . "\";\r\n "; |
---|
241 | break; |
---|
242 | case 'redirect': |
---|
243 | break; |
---|
244 | case 'reject': |
---|
245 | $require_reject = true; |
---|
246 | break; |
---|
247 | case 'fileinto': |
---|
248 | $require_fileinto = true; |
---|
249 | $action[$k]['parameter'] = mb_convert_encoding($action[$k]['parameter'], "UTF7-IMAP","UTF-8, ISO-8859-1, UTF7-IMAP"); |
---|
250 | break; |
---|
251 | case 'vacation': |
---|
252 | $require_vacation = true; |
---|
253 | $action[$k]['parameter'] = "\"" . $action[$k]['parameter'] . "\""; |
---|
254 | $vacation_action = ' :subject "=?ISO-8859-1?Q?Fora_do_Escrit=F3rio?=" :days 1 :addresses ["'.config::me('mail').'"] ' . $action[$k]['parameter'] . ";"; |
---|
255 | $vacation = true; |
---|
256 | continue; |
---|
257 | case 'discard': |
---|
258 | break; |
---|
259 | } |
---|
260 | if ($vacation == false && $action[$k]['type'] != 'addflag') $script_action .= $action[$k]['type'] . " \"" . $action[$k]['parameter'] . "\";\r\n "; |
---|
261 | } |
---|
262 | |
---|
263 | /* ATENÇÃO: Colocar sempre o comando addflag antes de qualquer outro no caso de ações compostas no Sieve */ |
---|
264 | if ($action_addFlag != '') $script_action = $action_addFlag . $script_action; |
---|
265 | |
---|
266 | $script_action = "{\r\n " . $script_action . "}"; |
---|
267 | $action_addFlag = ''; |
---|
268 | if($vacation == false) |
---|
269 | $script_rules .= $script_match . $script_criteria . $script_action . "\r\n"; |
---|
270 | |
---|
271 | if($data['id'] != "vacation") |
---|
272 | ++$i; |
---|
273 | $script_match = ""; |
---|
274 | $script_criteria = ""; |
---|
275 | $script_action = ""; |
---|
276 | $data['applyMessages'] = ""; |
---|
277 | |
---|
278 | $verifyNextRule = $data['verifyNextRule']; |
---|
279 | } |
---|
280 | |
---|
281 | if($require_reject || $require_fileinto || $require_vacation || $require_body || $require_flag) |
---|
282 | { |
---|
283 | /* Para habilitar as funções desejadas, edite a diretiva sieve_extensions no arquivo de configuração "/etc/imapd.conf" */ |
---|
284 | $script_header .= "require ["; |
---|
285 | $require_reject ? $script_header .= "\"reject\", " : ""; |
---|
286 | $require_fileinto ? $script_header .= "\"fileinto\", " : ""; |
---|
287 | $require_vacation? $script_header .= "\"vacation\", " : ""; |
---|
288 | $require_flag ? $script_header .= "\"imapflags\", " : ""; |
---|
289 | $require_body ? $script_header .= "\"body\", " : ""; |
---|
290 | $script_header = substr($script_header,0,-2); |
---|
291 | $script_header .= "];\r\n"; |
---|
292 | } |
---|
293 | |
---|
294 | if( $vacation_action ) |
---|
295 | $script_rules .= "vacation" . $vacation_action . "\r\n"; |
---|
296 | |
---|
297 | foreach ($rules as &$values) { |
---|
298 | if($values['applyMessages']) |
---|
299 | $this->msgs_apply[] = $values['applyMessages']; |
---|
300 | $values['applyMessages'] = array(); |
---|
301 | } |
---|
302 | |
---|
303 | $json_data = json_encode($rules); |
---|
304 | $script_begin = "#Filtro gerado por Expresso Livre\r\n\r\n"; |
---|
305 | $content = $script_begin . $script_header . $script_rules . "\r\n\r\n#PseudoScript#" . "\r\n#" . $json_data; |
---|
306 | |
---|
307 | return( $content ); |
---|
308 | } |
---|
309 | |
---|
310 | /** |
---|
311 | * Método que lê e faz o parser dos filtros antigos |
---|
312 | * |
---|
313 | * @license http://www.gnu.org/copyleft/gpl.html GPL |
---|
314 | * @author Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) |
---|
315 | * @sponsor Caixa Econômica Federal |
---|
316 | * @author Airton Bordin Junior <airton@prognus.com.br> |
---|
317 | * @author Gustavo Pereira dos Santos <gustavo@prognus.com.br> |
---|
318 | * @param <$scriptName> <Regras do usuário> |
---|
319 | * @return <Regra do usuário parseada> |
---|
320 | * @access <public> |
---|
321 | */ |
---|
322 | public function readOldScript($scriptName) |
---|
323 | { |
---|
324 | // Recebe o conteúdo do array; |
---|
325 | $lines = array(); |
---|
326 | $lines = preg_split("/\n/", $scriptName); |
---|
327 | |
---|
328 | // Pega o tamanho da regra na primeira do script; |
---|
329 | $size_rule = array_shift($lines); |
---|
330 | |
---|
331 | // Recebe o tamanho do script, pela primeira linha; |
---|
332 | //$this->size = trim($size_rule); |
---|
333 | |
---|
334 | // Verifica a composição do script; */ |
---|
335 | $line = array_shift($lines); |
---|
336 | |
---|
337 | // Variaveis para a regra e o campo ferias; |
---|
338 | $regexps = array('##PSEUDO', '#rule', '#vacation', '#mode'); |
---|
339 | $retorno['rule'] = array(); |
---|
340 | |
---|
341 | $line = array_shift($lines); |
---|
342 | while (isset($line)) { |
---|
343 | foreach ($regexps as $regp) { |
---|
344 | if (preg_match("/$regp/i", $line)) { |
---|
345 | // Recebe todas as regras criadas no servidor; |
---|
346 | if (preg_match("/#rule&&/i", $line)) { |
---|
347 | $retorno['rule'][] = ltrim($line) . "\n"; |
---|
348 | } |
---|
349 | } |
---|
350 | } |
---|
351 | // Pega a proxima linha do sript; |
---|
352 | $line = array_shift($lines); |
---|
353 | } |
---|
354 | return $retorno; |
---|
355 | } |
---|
356 | |
---|
357 | |
---|
358 | |
---|
359 | |
---|
360 | /** |
---|
361 | * Método que faz o parsing do Script Sieve, transformando em Array. |
---|
362 | * |
---|
363 | * @license http://www.gnu.org/copyleft/gpl.html GPL |
---|
364 | * @author Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) |
---|
365 | * @sponsor Caixa Econômica Federal |
---|
366 | * @author Airton Bordin Junior <airton@prognus.com.br> |
---|
367 | * @author Gustavo Pereira dos Santos <gustavo@prognus.com.br> |
---|
368 | * @param <String> <$script> <Script Sieve com as regras do usuário> |
---|
369 | * @return <Regras do usuário em Array> |
---|
370 | * @access <public> |
---|
371 | */ |
---|
372 | public function parseSieveScript( $script ) |
---|
373 | { |
---|
374 | $old_rule = strripos($script, "##PSEUDO script start"); |
---|
375 | /* Tem regra antiga */ |
---|
376 | if($old_rule) { |
---|
377 | $parsed_rule = $this->readOldScript($script); |
---|
378 | $old_rules = array(); |
---|
379 | $i_return = 0; |
---|
380 | foreach ($parsed_rule['rule'] as $i => $value) { |
---|
381 | $array_rule = explode("&&", $parsed_rule['rule'][$i]); |
---|
382 | |
---|
383 | $action_type = array(); |
---|
384 | $action_parameter = array(); |
---|
385 | $criteria_value = array(); |
---|
386 | $criteria_operator = array(); |
---|
387 | $criteria_field = array(); |
---|
388 | |
---|
389 | $i_criteria = 0; |
---|
390 | $i_action = 0; |
---|
391 | |
---|
392 | /* TO-DO: Ver as actions possíveis além de reject e fileinto */ |
---|
393 | switch($array_rule[6]) { |
---|
394 | case 'reject': |
---|
395 | $action_type[$i_action] = 'reject'; |
---|
396 | $action_parameter[$i_action] = $array_rule[7]; |
---|
397 | ++$i_action; |
---|
398 | break; |
---|
399 | case 'folder': |
---|
400 | $action_type[$i_action] = 'fileinto'; |
---|
401 | $action_parameter[$i_action] = $array_rule[7]; |
---|
402 | ++$i_action; |
---|
403 | break; |
---|
404 | case 'flagged': |
---|
405 | $action_type[$i_action] = 'setflag'; |
---|
406 | $action_parameter[$i_action] = 'flagged'; |
---|
407 | ++$i_action; |
---|
408 | break; |
---|
409 | case 'address': |
---|
410 | $action_type[$i_action] = 'redirect'; |
---|
411 | $action_parameter[$i_action] = $array_rule[7]; |
---|
412 | ++$i_action; |
---|
413 | break; |
---|
414 | /* Somente para tratar casos em que a ação não é suportada */ |
---|
415 | default: |
---|
416 | $action_type[$i_action] = 'setflag'; |
---|
417 | $action_parameter[$i_action] = 'flagged'; |
---|
418 | ++$i_action; |
---|
419 | break; |
---|
420 | // Recuperar o cyrus_delimiter para forçar um fileinto para INBOX/trash |
---|
421 | //case 'discard': |
---|
422 | //$action_type[$i_action] = 'fileinto'; |
---|
423 | //$action_parameter[$i_action] =; |
---|
424 | //$i_action++; |
---|
425 | //break; |
---|
426 | } |
---|
427 | if($array_rule[3] != "") { |
---|
428 | $criteria_value[$i_criteria] = $array_rule[3]; |
---|
429 | $criteria_operator[$i_criteria] = '='; |
---|
430 | $criteria_field[$i_criteria] = 'from'; |
---|
431 | ++$i_criteria; |
---|
432 | } |
---|
433 | if($array_rule[4] != "") { |
---|
434 | $criteria_value[$i_criteria] = $array_rule[4]; |
---|
435 | $criteria_operator[$i_criteria] = '='; |
---|
436 | $criteria_field[$i_criteria] = 'to'; |
---|
437 | ++$i_criteria; |
---|
438 | } |
---|
439 | if($array_rule[5] != "") { |
---|
440 | $criteria_value[$i_criteria] = $array_rule[5]; |
---|
441 | $criteria_operator[$i_criteria] = '='; |
---|
442 | $criteria_field[$i_criteria] = 'subject'; |
---|
443 | ++$i_criteria; |
---|
444 | } |
---|
445 | $old_retorno = array(); |
---|
446 | $old_retorno['isExact'] = true; |
---|
447 | $old_retorno['name'] = 'regra_migrada_' . $array_rule[1]; |
---|
448 | |
---|
449 | $old_retorno['criteria'] = array(); |
---|
450 | foreach($criteria_value as $j => $value) { |
---|
451 | $old_retorno['criteria'][$j] = array(); |
---|
452 | $old_retorno['criteria'][$j]['value'] = $criteria_value[$j]; |
---|
453 | $old_retorno['criteria'][$j]['operator'] = $criteria_operator[$j]; |
---|
454 | $old_retorno['criteria'][$j]['field'] = $criteria_field[$j]; |
---|
455 | } |
---|
456 | |
---|
457 | $old_retorno['actions'] = array(); |
---|
458 | foreach($action_parameter as $j => $value) { |
---|
459 | $old_retorno['actions'][$j] = array(); |
---|
460 | $old_retorno['actions'][$j]['parameter'] = $action_parameter[$j]; |
---|
461 | $old_retorno['actions'][$j]['type'] = $action_type[$j]; |
---|
462 | } |
---|
463 | |
---|
464 | $old_retorno['enabled'] = ($array_rule[2] == 'ENABLED') ? 'true' : 'false'; |
---|
465 | $old_retorno['id'] = 'Regra_migrada_' . $i_return; |
---|
466 | $old_retorno['applyMessages'] = ''; |
---|
467 | |
---|
468 | $old_rules[$i_return] = $old_retorno; |
---|
469 | ++$i_return; |
---|
470 | } |
---|
471 | return $old_rules; |
---|
472 | } |
---|
473 | /* Não tem regra antiga */ |
---|
474 | $pos = strripos($script, "#PseudoScript#"); |
---|
475 | $pseudo_script = substr( $script, $pos+17 ); |
---|
476 | |
---|
477 | $return = json_decode( $pseudo_script, true ); |
---|
478 | |
---|
479 | return $return; |
---|
480 | } |
---|
481 | |
---|
482 | var $rules = false; |
---|
483 | |
---|
484 | /** |
---|
485 | * Construtor da classe. |
---|
486 | * |
---|
487 | * @license http://www.gnu.org/copyleft/gpl.html GPL |
---|
488 | * @author Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) |
---|
489 | * @sponsor Caixa Econômica Federal |
---|
490 | * @author Airton Bordin Junior <airton@prognus.com.br> |
---|
491 | * @author Gustavo Pereira dos Santos <gustavo@prognus.com.br> |
---|
492 | * @access <public> |
---|
493 | */ |
---|
494 | public function __construct() |
---|
495 | { |
---|
496 | $this->service = Controller::service("Sieve"); |
---|
497 | } |
---|
498 | |
---|
499 | |
---|
500 | /** |
---|
501 | * Método que recupera as regras do usuário. |
---|
502 | * |
---|
503 | * @license http://www.gnu.org/copyleft/gpl.html GPL |
---|
504 | * @author Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) |
---|
505 | * @sponsor Caixa Econômica Federal |
---|
506 | * @author Airton Bordin Junior <airton@prognus.com.br> |
---|
507 | * @author Gustavo Pereira dos Santos <gustavo@prognus.com.br> |
---|
508 | * @return <Regras do usuário> |
---|
509 | * @access <public> |
---|
510 | */ |
---|
511 | public function getRules() |
---|
512 | { |
---|
513 | $this->rules = Controller::find( array( 'concept' => 'filter' ) ); |
---|
514 | |
---|
515 | if( !$this->rules ) { |
---|
516 | $this->rules = array(); |
---|
517 | } |
---|
518 | return( $this->rules ); |
---|
519 | } |
---|
520 | |
---|
521 | |
---|
522 | /** |
---|
523 | * Método que aplica o filtro para as mensagens do usuário. |
---|
524 | * |
---|
525 | * @license http://www.gnu.org/copyleft/gpl.html GPL |
---|
526 | * @author Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) |
---|
527 | * @sponsor Caixa Econômica Federal |
---|
528 | * @author Airton Bordin Junior <airton@prognus.com.br> |
---|
529 | * @author Gustavo Pereira dos Santos <gustavo@prognus.com.br> |
---|
530 | * @param <$uri> |
---|
531 | * @param <$result> |
---|
532 | * @param <$criteria> |
---|
533 | * @param <$original> |
---|
534 | * @access <public> |
---|
535 | */ |
---|
536 | public function applySieveFilter( &$uri , &$result , &$criteria , $original ) |
---|
537 | { |
---|
538 | $rule_apply = array(); |
---|
539 | |
---|
540 | $filter = Controller::read($uri); |
---|
541 | $filter_ = $this->parseSieveScript($filter['content']); |
---|
542 | |
---|
543 | foreach ($filter_ as $f_) { |
---|
544 | if($f_['id'] == $uri['id']) { |
---|
545 | $rule_apply = $f_; |
---|
546 | } |
---|
547 | } |
---|
548 | |
---|
549 | $actions = array(); |
---|
550 | $actions['type'] = $rule_apply['actions'][0]['type']; |
---|
551 | $actions['parameter'] = $rule_apply['actions'][0]['parameter']; |
---|
552 | /* Hardcoded */ |
---|
553 | $actions['keep'] = false; |
---|
554 | |
---|
555 | //$messages = $rule_apply['applyMessages']; |
---|
556 | $messages = $this->msgs_apply[0]; |
---|
557 | $this->msgs_apply = array(); |
---|
558 | |
---|
559 | $imap = Controller::service( 'Imap' ); |
---|
560 | $imap->apliSieveFilter($messages, $actions); |
---|
561 | return $result; |
---|
562 | } |
---|
563 | |
---|
564 | |
---|
565 | /** |
---|
566 | * Método que lê o script do usuário. |
---|
567 | * |
---|
568 | * @license http://www.gnu.org/copyleft/gpl.html GPL |
---|
569 | * @author Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) |
---|
570 | * @sponsor Caixa Econômica Federal |
---|
571 | * @author Airton Bordin Junior <airton@prognus.com.br> |
---|
572 | * @author Gustavo Pereira dos Santos <gustavo@prognus.com.br> |
---|
573 | * @param <$uri> |
---|
574 | * @param <$result> |
---|
575 | * @param <$criteria> |
---|
576 | * @param <$original> |
---|
577 | * @return <Script do usuário> |
---|
578 | * @access <public> |
---|
579 | */ |
---|
580 | public function readUserScript( &$uri , &$params , &$criteria , $original ) |
---|
581 | { |
---|
582 | $uri['id'] = $this->service->config['user']; |
---|
583 | } |
---|
584 | |
---|
585 | |
---|
586 | /** |
---|
587 | * Método que seta o script do usuário. |
---|
588 | * |
---|
589 | * @license http://www.gnu.org/copyleft/gpl.html GPL |
---|
590 | * @author Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) |
---|
591 | * @sponsor Caixa Econômica Federal |
---|
592 | * @author Airton Bordin Junior <airton@prognus.com.br> |
---|
593 | * @author Gustavo Pereira dos Santos <gustavo@prognus.com.br> |
---|
594 | * @param <$uri> |
---|
595 | * @param <$result> |
---|
596 | * @param <$criteria> |
---|
597 | * @param <$original> |
---|
598 | * @return <Script do usuário> |
---|
599 | * @access <public> |
---|
600 | */ |
---|
601 | public function setRule( &$uri , &$params , &$criteria , $original ) |
---|
602 | { |
---|
603 | if( !$this->rules ) |
---|
604 | $this->rules = $this->getRules(); |
---|
605 | |
---|
606 | $uri['id'] = $params['id'] = isset($params['id']) ? $params['id'] : urlencode($params['name']); |
---|
607 | |
---|
608 | $i = 0; |
---|
609 | |
---|
610 | for( ; isset($this->rules[$i]) && $this->rules[$i]['id'] !== $params['id']; ++$i ); |
---|
611 | |
---|
612 | $this->rules[$i] = array_merge( ( isset($this->rules[$i]) ? $this->rules[$i] : array() ), $params ); |
---|
613 | |
---|
614 | $params = array( 'name' => $this->service->config['user'], |
---|
615 | 'content' => $this->formatSieveScript( $this->rules ), |
---|
616 | 'active' => true ); |
---|
617 | } |
---|
618 | |
---|
619 | |
---|
620 | /** |
---|
621 | * Método que deleta o script do usuário. |
---|
622 | * |
---|
623 | * @license http://www.gnu.org/copyleft/gpl.html GPL |
---|
624 | * @author Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) |
---|
625 | * @sponsor Caixa Econômica Federal |
---|
626 | * @author Airton Bordin Junior <airton@prognus.com.br> |
---|
627 | * @author Gustavo Pereira dos Santos <gustavo@prognus.com.br> |
---|
628 | * @param <$uri> |
---|
629 | * @param <$result> |
---|
630 | * @param <$criteria> |
---|
631 | * @param <$original> |
---|
632 | * @access <public> |
---|
633 | */ |
---|
634 | public function deleteRule( &$uri, &$params, &$criteria, $original ) |
---|
635 | { |
---|
636 | if( !$this->rules ) { |
---|
637 | $this->rules = $this->getRules(); |
---|
638 | } |
---|
639 | $params['id'] = $uri['id']; |
---|
640 | |
---|
641 | $rules = array(); |
---|
642 | |
---|
643 | foreach( $this->rules as $i => $rule ) |
---|
644 | if( $rule['id'] !== $uri['id'] ) |
---|
645 | $rules[] = $this->rules[$i]; |
---|
646 | |
---|
647 | $this->rules = $rules; |
---|
648 | |
---|
649 | $uri['id'] = ''; |
---|
650 | |
---|
651 | $params = array( 'name' => $this->service->config['user'], |
---|
652 | 'content' => $this->formatSieveScript( $this->rules ), |
---|
653 | 'active' => true ); |
---|
654 | |
---|
655 | $URI = Controller::URI( $uri['concept'], $this->service->config['user'] ); |
---|
656 | $this->service->update( $URI, $params ); |
---|
657 | |
---|
658 | return( false ); |
---|
659 | } |
---|
660 | |
---|
661 | |
---|
662 | /** |
---|
663 | * Método que pega o script do usuário. |
---|
664 | * |
---|
665 | * @license http://www.gnu.org/copyleft/gpl.html GPL |
---|
666 | * @author Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) |
---|
667 | * @sponsor Caixa Econômica Federal |
---|
668 | * @author Airton Bordin Junior <airton@prognus.com.br> |
---|
669 | * @author Gustavo Pereira dos Santos <gustavo@prognus.com.br> |
---|
670 | * @param <$uri> |
---|
671 | * @param <$result> |
---|
672 | * @param <$criteria> |
---|
673 | * @param <$original> |
---|
674 | * @return <Script do usuário> |
---|
675 | * @access <public> |
---|
676 | */ |
---|
677 | public function getSieveRule( &$uri , &$params , &$criteria , $original ) |
---|
678 | { |
---|
679 | $script = $this->parseSieveScript( $params['content'] ); |
---|
680 | |
---|
681 | foreach( $script as $i => $rule ) |
---|
682 | if(is_array ($rule['name']) && is_array($original['id'])) |
---|
683 | if( $rule['name'] === $original['id'] ) |
---|
684 | return( $params = $rule ); |
---|
685 | } |
---|
686 | |
---|
687 | |
---|
688 | /** |
---|
689 | * Método que lista as regras do usuário. |
---|
690 | * |
---|
691 | * @license http://www.gnu.org/copyleft/gpl.html GPL |
---|
692 | * @author Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) |
---|
693 | * @sponsor Caixa Econômica Federal |
---|
694 | * @author Airton Bordin Junior <airton@prognus.com.br> |
---|
695 | * @author Gustavo Pereira dos Santos <gustavo@prognus.com.br> |
---|
696 | * @param <$uri> |
---|
697 | * @param <$result> |
---|
698 | * @param <$criteria> |
---|
699 | * @param <$original> |
---|
700 | * @return <Regras do usuário> |
---|
701 | * @access <public> |
---|
702 | */ |
---|
703 | public function listSieveRules( &$uri , &$params , &$criteria , $original ) |
---|
704 | { |
---|
705 | $return = $params = $this->parseSieveScript( $params[0]['content'] ); |
---|
706 | return( $return ); |
---|
707 | } |
---|
708 | |
---|
709 | /** |
---|
710 | * Método que insere no ldap as informações do vacation |
---|
711 | * |
---|
712 | * @license http://www.gnu.org/copyleft/gpl.html GPL |
---|
713 | * @author Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) |
---|
714 | * @sponsor Caixa Econômica Federal |
---|
715 | * @author Cristiano Corrêa Schmidt |
---|
716 | * @param <$uri> |
---|
717 | * @param <$result> |
---|
718 | * @param <$criteria> |
---|
719 | * @param <$original> |
---|
720 | * @return <void> |
---|
721 | * @access public |
---|
722 | */ |
---|
723 | public function verifyVacationRule( &$uri , &$params , &$criteria , $original ) |
---|
724 | { |
---|
725 | if( $original['properties']['id'] === 'vacation' ) |
---|
726 | { |
---|
727 | |
---|
728 | $user = Controller::read(array('concept' => 'user' , 'id' => config::me('uidNumber') , 'service' => 'OpenLDAP')); |
---|
729 | $ldapConf = Config::service('OpenLDAP', 'config'); |
---|
730 | $con = ldap_connect( $ldapConf['host'] ); |
---|
731 | ldap_set_option( $con,LDAP_OPT_PROTOCOL_VERSION, 3 ); |
---|
732 | ldap_bind( $con, $ldapConf['user'], $ldapConf['password']); |
---|
733 | |
---|
734 | $info = array(); |
---|
735 | if(!in_array('Vacation', $user['objectClass'])) |
---|
736 | $info['objectClass'] = 'Vacation'; |
---|
737 | |
---|
738 | $info['vacationActive'] = strtoupper($original['properties']['enabled']); |
---|
739 | |
---|
740 | if(isset($original['properties']['actions']) && isset($original['properties']['actions'][0]['parameter'])) |
---|
741 | $info['vacationInfo'] = $original['properties']['actions'][0]['parameter']; |
---|
742 | else if( !isset($user['vacationInfo']) ) |
---|
743 | { |
---|
744 | $rules = $this->getRules(); |
---|
745 | if(is_array($rules)) |
---|
746 | foreach ($rules as $rule) |
---|
747 | if($rule['id'] === 'vacation') |
---|
748 | $info['vacationInfo'] = $rule['actions'][0]['parameter']; |
---|
749 | } |
---|
750 | |
---|
751 | if(!in_array('Vacation', $user['objectClass'])) |
---|
752 | ldap_mod_add ( $con , $user['dn'] , $info ); |
---|
753 | else |
---|
754 | ldap_modify ( $con , $user['dn'] , $info ); |
---|
755 | |
---|
756 | |
---|
757 | ldap_close($con); |
---|
758 | |
---|
759 | } |
---|
760 | |
---|
761 | } |
---|
762 | |
---|
763 | /** |
---|
764 | * Método que remove do ldap as informações do vacation |
---|
765 | * |
---|
766 | * @license http://www.gnu.org/copyleft/gpl.html GPL |
---|
767 | * @author Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br) |
---|
768 | * @sponsor Caixa Econômica Federal |
---|
769 | * @author Cristiano Corrêa Schmidt |
---|
770 | * @param <$uri> |
---|
771 | * @param <$result> |
---|
772 | * @param <$criteria> |
---|
773 | * @param <$original> |
---|
774 | * @return <void> |
---|
775 | * @access public |
---|
776 | */ |
---|
777 | public function deleteVacationRule( &$uri , &$params , &$criteria , $original ) |
---|
778 | { |
---|
779 | if( $original['URI']['id'] === 'vacation' ) |
---|
780 | { |
---|
781 | $user = Controller::read(array('concept' => 'user' , 'id' => config::me('uidNumber') , 'service' => 'OpenLDAP')); |
---|
782 | $ldapConf = Config::service('OpenLDAP', 'config'); |
---|
783 | $con = ldap_connect( $ldapConf['host'] ); |
---|
784 | ldap_set_option( $con,LDAP_OPT_PROTOCOL_VERSION, 3 ); |
---|
785 | ldap_bind( $con, $ldapConf['user'], $ldapConf['password']); |
---|
786 | $info = array(); |
---|
787 | $info['vacationActive'] = 'FALSE'; |
---|
788 | $info['vacationInfo'] = ""; |
---|
789 | ldap_modify ( $con , $user['dn'] , $info ); |
---|
790 | ldap_close($con); |
---|
791 | } |
---|
792 | } |
---|
793 | } |
---|