source: sandbox/2.4.1-3/expressoMail1_2/inc/class.ldap_functions.inc.php @ 6409

Revision 6409, 44.2 KB checked in by gustavo, 12 years ago (diff)

Ticket #2768 - Melhorias na criação de mensagens

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2                /***************************************************************************
3                * Expresso Livre                                                           *
4                * http://www.expressolivre.org                                             *
5                * --------------------------------------------                             *
6                *  This program is free software; you can redistribute it and/or modify it *
7                *  under the terms of the GNU General Public License as published by the   *
8                *  Free Software Foundation; either version 2 of the License, or (at your  *
9                *  option) any later version.                                              *
10                \**************************************************************************/
11               
12require_once(dirname(__FILE__).'/../../services/class.servicelocator.php');
13include_once("class.imap_functions.inc.php");
14include_once("class.functions.inc.php");
15
16function ldapRebind($ldap_connection, $ldap_url)
17{
18        @ldap_bind($ldap_connection, $_SESSION['phpgw_info']['expressomail']['ldap_server']['acc'],$_SESSION['phpgw_info']['expressomail']['ldap_server']['pw']);
19}
20
21class ldap_functions
22{
23        var $ds;
24        var $ldap_host;
25        var $ldap_context;
26        var $imap;
27        var $external_srcs;
28        var $max_result;
29        var $functions;
30        var $ldapService;
31       
32        function ldap_functions(){
33        // todo: Page Configuration for External Catalogs.
34                @include("../contactcenter/setup/external_catalogs.inc.php");
35                $this->ldapService = ServiceLocator::getService('ldap');
36                if(isset($external_srcs))
37                $this->external_srcs = $external_srcs;
38                $this->max_result = $this->ldapService->limit;
39                $this->functions = new functions();
40        }
41        // Using ContactCenter configuration.
42        function ldapConnect($refer = false,$catalog = 0){
43                if ($catalog > 0 && is_array($this->external_srcs)){
44                        $this->ldap_host        = $this->external_srcs[$catalog]['host'];
45                        $this->ldap_context = $this->external_srcs[$catalog]['dn'];
46                        $this->bind_dn          = $this->external_srcs[$catalog]['acc'];
47                        $this->bind_dn_pw       = $this->external_srcs[$catalog]['pw'];
48                        $this->object_class = $this->external_srcs[$catalog]['obj'];
49                        $this->base_dn          = $this->external_srcs[$catalog]['dn'];
50                        $this->branch           = $this->external_srcs[$catalog]['branch'];
51                }else {
52                        $this->ldap_host        = $_SESSION['phpgw_info']['expressomail']['ldap_server']['host'];
53                        $this->ldap_context = $_SESSION['phpgw_info']['expressomail']['ldap_server']['dn'];
54                        $this->bind_dn = $_SESSION['phpgw_info']['expressomail']['ldap_server']['acc'];
55                        $this->bind_dn_pw = $_SESSION['phpgw_info']['expressomail']['ldap_server']['pw'];
56                        $this->branch = 'ou';
57                }
58
59                $this->ds = ldap_connect($this->ldap_host);
60                ldap_set_option($this->ds, LDAP_OPT_PROTOCOL_VERSION, 3);
61                ldap_set_option($this->ds, LDAP_OPT_REFERRALS, $refer);
62                if ($refer)     {
63                        ldap_set_rebind_proc($this->ds, ldapRebind);
64                }
65                @ldap_bind($this->ds,$this->bind_dn,$this->bind_dn_pw );
66        }
67
68        //Teste jakjr retornando o DS
69        function ldapConnect2($refer = false){
70                $ds = ldap_connect($_SESSION['phpgw_info']['expressomail']['ldap_server']['host']);
71
72                if (!$ds)
73                        return false;
74
75                ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
76                ldap_set_option($ds, LDAP_OPT_REFERRALS, $refer);
77                if ($refer)
78                        ldap_set_rebind_proc($ds, 'rebind');
79                @ldap_bind($ds, $_SESSION['phpgw_info']['expressomail']['ldap_server']['acc'],$_SESSION['phpgw_info']['expressomail']['ldap_server']['pw']);
80
81                return $ds;
82        }
83
84
85        // usa o host e context do setup.
86        function ldapRootConnect($refer = false){
87                $this->ldap_host        = $_SESSION['phpgw_info']['expressomail']['server']['ldap_host'];
88                $this->ldap_context = $_SESSION['phpgw_info']['expressomail']['server']['ldap_context'];
89
90                if($_SESSION['phpgw_info']['expressomail']['server']['ldap_master_host'] &&
91                        $_SESSION['phpgw_info']['expressomail']['server']['ldap_master_root_dn'] &&
92                        $_SESSION['phpgw_info']['expressomail']['server']['ldap_master_root_pw']) {
93                        $this->ds = ldap_connect($_SESSION['phpgw_info']['expressomail']['server']['ldap_master_host']);
94                        ldap_set_option($this->ds, LDAP_OPT_PROTOCOL_VERSION, 3);
95                        ldap_set_option($this->ds, LDAP_OPT_REFERRALS,0);
96                        ldap_bind($this->ds, $_SESSION['phpgw_info']['expressomail']['server']['ldap_master_root_dn'], $_SESSION['phpgw_info']['expressomail']['server']['ldap_master_root_pw']);
97                }else{
98                        $this->ds = ldap_connect($this->ldap_host);
99                        ldap_set_option($this->ds, LDAP_OPT_PROTOCOL_VERSION, 3);
100                        ldap_set_option($this->ds, LDAP_OPT_REFERRALS, $refer);
101                        ldap_bind($this->ds, $_SESSION['phpgw_info']['expressomail']['server']['ldap_root_dn'],$_SESSION['phpgw_info']['expressomail']['server']['ldap_root_pw']);
102                }
103        }
104
105        function quicksearch($params)
106        {
107                include_once("class.functions.inc.php");
108                $functions = new functions;
109
110                $field          = $params['field'];
111                $ID                     = $params['ID'];
112               
113                $ldapService = ServiceLocator::getService('ldap');
114                $filter =  $ldapService->getSearchFilter($params['search_for']);
115
116                $contacts_result = array();
117                $contacts_result['field'] = $field;
118                $contacts_result['ID'] = $ID;
119                $search_for = utf8_encode($params['search_for']);
120               
121                if($_SESSION['phpgw_info']['user']['preferences']['expressoMail']['extended_info'])
122                        $extendedinfo=true;
123                else
124                        $extendedinfo=false;
125
126                // follow the referral
127                $this->ldapConnect(true);
128
129                if ($this->ds)
130                {
131                    $ldapService->connection = $this->ds;
132                                if($extendedinfo)
133                                        $justthese = array("cn", "mail", "telephonenumber", "uid","uidNumber", "mobile", "phpgwaccountvisible", "employeenumber", "ou");
134                                else
135                                        $justthese = array("cn", "mail", "telephoneNumber", "phpgwAccountVisible", "uidNumber","uid");
136                $types = false;
137
138                if( $field == 'null' || $ID == 'null' )
139                        {
140                    $justthese[] = "jpegphoto";
141                    $types = 'u';
142                }
143
144                $filter = $ldapService->getSearchFilter( $params['search_for'], $types );
145
146                $sr=@ldap_search($this->ds, $this->ldap_context, $filter, $justthese, 0, $this->max_result);
147                       
148                                if(!$sr)
149                                        return null;
150
151                                $count_entries = ldap_count_entries($this->ds,$sr);
152
153                $info = ldap_get_entries($this->ds, $sr);
154
155            // New search only on user sector
156            if ($count_entries == $this->max_result)
157            {
158                $overload = $count_entries;
159                                }
160                                else
161                                {
162                                $catalogsNum=count($this->external_srcs);
163                for ($i=0; $i<=$catalogsNum; $i++)      {
164                                        if ($this->external_srcs[$i]["quicksearch"]) {
165                                                $this->ldapConnect(true,$i);
166                                                $filter="(|(cn=*$search_for*)(mail=*$search_for*))";
167                                                if($extendedinfo)
168                                        $justthese = array("cn", "mail", "telephonenumber", "uid","uidNumber", "mobile", "phpgwaccountvisible", "employeenumber", "ou");
169                                                else
170                                                        $justthese = array("cn", "mail", "telephoneNumber", "phpgwAccountVisible","uidNumber", "uid");
171                                                $sr=@ldap_search($this->ds, $this->ldap_context, $filter, $justthese, 0, $this->max_result+1);
172                                                if(!$sr)
173                                                        return null;
174                                                $count_entries = ldap_count_entries($this->ds,$sr);
175                                                $search = ldap_get_entries($this->ds, $sr);
176                                                for ($j=0; $j<$search["count"]; $j++) {
177                                                        $info[] = $search[$j];
178                                                }
179                                                $info["count"] = count($info)-1;
180                                        }
181                                }
182                        }
183
184            $tmp = array();
185            $tmp_users_from_user_org = array();
186
187                        for ($i=0; $i<$info["count"]; $i++)
188                        {
189                $key = $info[$i]["mail"][0] . '%' . $info[$i]["telephonenumber"][0] . '%'. $info[$i]["mobile"][0] . '%' . $info[$i]["uid"][0] . '%' . $info[$i]["jpegphoto"]['count'] . '%' . $info[$i]["employeenumber"][0] . '%' .    $info[$i]["ou"][0];
190
191                if (/*(!$quickSearch_only_in_userSector) &&*/ preg_match("/$user_sector_dn/i", $info[$i]['dn']))
192                                {
193                        $tmp_users_from_user_org[$key] = utf8_decode($info[$i]["cn"][0]);
194                        continue;
195                                }
196
197                $tmp[$key] = utf8_decode($info[$i]["cn"][0]);
198                                        }
199
200                        natcasesort($tmp_users_from_user_org);
201                        natcasesort($tmp);
202
203                        if (($field != 'null') && ($ID != 'null'))
204                        {
205                                $i = 0;
206
207                                $tmp = array_merge($tmp, $tmp_users_from_user_org);
208                                natcasesort($tmp);
209
210                                foreach ($tmp as $info => $cn)
211                                {
212                                        $contacts_result[$i] = array();
213                                        $contacts_result[$i]["cn"] = $cn;
214                                        list ($contacts_result[$i]["mail"], $contacts_result[$i]["phone"], $contacts_result[$i]["mobile"], $contacts_result[$i]["uid"], $contacts_result[$i]["jpegphoto"], $contacts_result[$i]["employeenumber"], $contacts_result[$i]["ou"]) = preg_split('/%/', $info);
215                                        $i++;
216                                }
217                                $contacts_result['quickSearch_only_in_userSector'] = $quickSearch_only_in_userSector;
218                    $contacts_result['maxResult'] = $ldapService->limit;
219                        }
220                        else
221                        {
222                                $options_users_from_user_org = '';
223                                $options = '';
224
225           
226                                $i = 0;
227                                foreach ($tmp_users_from_user_org as $info => $cn)
228                                {
229                                        $contacts_result[$i] = array();
230                                        $options_users_from_user_org .= $this->make_quicksearch_card($info, $cn);
231                                        $i++;
232                                }
233
234           
235                                foreach ($tmp as $info => $cn)
236                                {
237                                        $contacts_result[$i] = array();
238                                        $options .= $this->make_quicksearch_card($info, $cn);
239                                        $i++;
240                                }
241
242
243                                        if (($options_users_from_user_org != '') && ($options != ''))
244                                        {
245                                                $head_option0 =
246                                                        '<tr class="quicksearchcontacts_unselected">' .
247                                                                '<td colspan="2" width="100%" align="center" style="background:#EEEEEE"><B>' .
248                                                                        $this->functions->getLang('Users from your organization') . '</B> ['.count($tmp_users_from_user_org).']';
249                                                                '</td>' .
250                                                        '</tr>';
251
252                                                $head_option1 =
253                                                        '<tr class="quicksearchcontacts_unselected">' .
254                                                                '<td colspan="2" width="100%" align="center" style="background:#EEEEEE"><B>' .
255                                                                        $this->functions->getLang('Users from others organizations') . '</B> ['.count($tmp).']';
256                                                                '</td>' .
257                                                        '</tr>';
258                                        }
259                   
260                    $head_option = '';
261
262                    if( $overload )
263                    $head_option = '<tr class="quicksearchcontacts_unselected">' .
264                                    '<td colspan="2" width="100%" align="center" style="background:#EEEEEE; color: red;"><B>' .str_replace('%1', $this->max_result, $this->functions->getLang('More than %1 results. Please, try to refine your search.')) . '</B> '.
265                                    '</td>' .
266                                    '</tr>';
267
268                    $contacts_result = $head_option.$head_option0 . $options_users_from_user_org . $head_option1. $options;
269
270                                }
271                        }
272
273                ldap_close($this->ds);
274
275                return $contacts_result;
276        }
277
278       
279         /**
280        * Método que faz o roteamento entre os métodos de busca (Catálogo pessoal, global e todos)
281        * @license    http://www.gnu.org/copyleft/gpl.html GPL
282        * @author     Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br)
283        * @sponsor    Caixa Econômica Federal
284        * @author     Prognus Software Livre <airton@prognus.com.br | prognus@prognus.com.br>
285        * @param      <array> <$param> <parametros vindos do cliente>
286        */
287        function quicksearchcontact($params)
288        {
289            if(array_key_exists('Type', $params)){
290                return $this->quickSearch($params);
291            }
292           
293            $modal = false;
294            if($params['catalog'])
295                $modal = true;
296             
297            include_once dirname(__FILE__). '/../../header.inc.php';
298           
299            if($modal)
300            {
301                if($params['catalog'] == "global")
302                {       
303                    return $this->quickSearchGlobal($params);
304                }
305                else
306                {
307                    if($params['catalog'] == "personal")
308                        return $this->quickSearchPersonal($params);
309                    else
310                        return $this->quickSearchAll($params);
311                }
312            }
313            else
314            {
315                if($_SESSION['phpgw_info']['user']['preferences']['expressoMail']['catalog_search'] == "global")
316                {
317                    return $this->quickSearchGlobal($params);
318                }
319                else
320                {   
321                    if($_SESSION['phpgw_info']['user']['preferences']['expressoMail']['catalog_search'] == "personal")
322                        return $this->quickSearchPersonal($params);                   
323                    else
324                                                //Veirifica se quem chamou foi o campo de pesquisa rápida Expresso_Mail
325                                                if(($params['field'] == 'null') && ($params['ID'] == 'null'))
326                                                        return $this->quickSearch($params);
327                                                else
328                                                        return $this->quickSearchAll($params);                                                 
329                }
330            }
331        }
332       
333       
334
335        /**
336        * Método que faz a busca de usuários em todos os catálogos
337        * @license    http://www.gnu.org/copyleft/gpl.html GPL
338        * @author     Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br)
339        * @sponsor    Caixa Econômica Federal
340        * @author     Prognus Software Livre <airton@prognus.com.br | prognus@prognus.com.br>
341        * @param      <array> <$param> <parametros vindos do cliente>
342        * @return     <array> <$retorno> <Array com os usuários de todos os catálogos, de acordo com o parâmetro>
343        */
344        function quickSearchAll($params)
345        {
346               
347            $retorno_personal = $this->quickSearchPersonal($params);
348            $retorno_global   = $this->quickSearchGlobal($params);
349            //$retorno = $retorno_personal + $retorno_global;
350            $retorno = array_merge($retorno_personal, $retorno_global);
351                       
352                        $retorno['type_catalog'] = "A";
353                        $retorno['search_for'] = $params['search_for'];
354            return $retorno;
355        }
356       
357       
358        /**
359        * Método que faz a busca de usuários no Catálogo Pessoal
360        * @license    http://www.gnu.org/copyleft/gpl.html GPL
361        * @author     Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br)
362        * @sponsor    Caixa Econômica Federal
363        * @author     Prognus Software Livre <airton@prognus.com.br | prognus@prognus.com.br>
364        * @param      <array> <$param> <parametros vindos do cliente>
365        * @return     <array> <$retorno> <Array com os usuários do Catálogo Pessoal, de acordo com o parâmetro>
366        */
367        function quickSearchPersonal($params, $all=false)
368        {
369            $results = array();
370            $DBService = ServiceLocator::getService('db');
371            $results   = $DBService->search_contacts($params['search_for']);
372                        $results2 = array();
373            $results2   = $DBService->search_groups($params['search_for']);
374           
375            if(is_array($results)){
376                if(is_array($results2)){
377                        $results   = array_merge($results, $results2);
378                }
379            }
380            else if(is_array($results2)){
381                $results = $results2;
382            }
383           
384            if(!$all)
385                $results['type_catalog'] = "P";
386                       
387                        foreach($results as $i=>$value)
388                                $results[$i]['type_contact'] = "P";
389                       
390                        $results['search_for'] = $params['search_for'];
391                       
392                        return $results;
393        }
394       
395       
396        /**
397        * Método que faz a busca de usuários no Catálogo Geral
398        * @license    http://www.gnu.org/copyleft/gpl.html GPL
399        * @author     Consórcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br)
400        * @sponsor    Caixa Econômica Federal
401        * @author     Prognus Software Livre <airton@prognus.com.br | prognus@prognus.com.br>
402        * @param      <array> <$param> <parametros vindos do cliente>
403        * @return     <array> <$retorno> <Array com os usuários do Catálogo Global, de acordo com o parâmetro>
404        */
405        function quickSearchGlobal($params, $all=false)
406        {             
407            include_once dirname(__FILE__). '/../../header.inc.php';
408            $c = CreateObject('phpgwapi.config','contactcenter');
409            $all_data = $c->read_repository();
410           
411            $searchable_fields = array();           
412            foreach($all_data as $index => $value)
413            {
414                $parts = explode('_', $index);
415                if (is_numeric($parts[3]) && $parts[1]=='attribute')
416                {   
417                    if($parts[2] == 'searchable' /*&& $value == 'true'*/)
418                        $searchable_fields[$all_data['cc_attribute_ldapname_' . $parts[3]]] = $all_data['cc_attribute_name_' . $parts[3]];   
419                }
420            }   
421            include_once("class.functions.inc.php");
422            $functions      = new functions;
423            $field          = $params['field'];
424            $ID             = $params['ID'];
425            $ldapService    = ServiceLocator::getService('ldap');
426            $filter         = $ldapService->getSearchFilter($params['search_for']);
427 
428            $contacts_result          = array();
429            $contacts_result['field'] = $field;
430            $contacts_result['ID']    = $ID;
431            $search_for               = utf8_encode($params['search_for']);
432           
433            $this->ldapConnect(true);
434            if ($this->ds)
435            {
436                $ldapService->connection = $this->ds;
437                $campos_extras = '';
438                $justthese = array("cn", "mail", "telephonenumber", "mobile", "phpgwaccountvisible", "uid", "employeenumber", "ou");
439                foreach($searchable_fields as $fields_ldap => $value_field)
440                {   
441                    $campos_extras .= $fields_ldap . "|" . $value_field . "#";
442                    array_push($justthese, $fields_ldap);   
443                }
444                $types = false;
445
446                $campos_extras = substr($campos_extras,0,-1);
447               
448                if($field == 'null' || $ID == 'null')
449                {
450                    $justthese[] = "jpegphoto";
451                    $types = 'u';
452                } 
453                $filter = $ldapService->getSearchFilter($params['search_for'], $types);
454                // Retirei o this->max_result, que limitava a busca. Agora ta retornando tudo amigo.
455                $sr=@ldap_search($this->ds, $this->ldap_context, $filter, $justthese, 0, $this->max_result);
456                 
457                if(!$sr)
458                    return null;
459               
460                $count_entries = ldap_count_entries($this->ds,$sr);
461                $info          = ldap_get_entries($this->ds, $sr);
462                $info_return   = $info;
463                //if($campos_extras != '')
464                //array_push($info_return, $campos_extras);
465                        }
466                        ldap_close($this->ds);     
467
468                        //Busca em Catalagos externos
469                        $catalogsNum=count($this->external_srcs);
470                        for ($i=0; $i<=$catalogsNum; $i++)      {
471                                if ($this->external_srcs[$i]["quicksearch"])
472                                {
473                                        $this->ldapConnect(true,$i);
474                                        $filter="(|(cn=*$search_for*)(mail=*$search_for*))";
475                                        $justthese = array("cn", "mail", "telephoneNumber", "mobile", "phpgwAccountVisible", "uid","employeeNumber", "ou");
476                                        $sr=@ldap_search($this->ds, $this->ldap_context, $filter, $justthese, 0, $this->max_result+1);
477                                        if(!$sr)
478                                                return null;
479                                        $count_entries = ldap_count_entries($this->ds,$sr);
480                                        $search = ldap_get_entries($this->ds, $sr);
481                                        for ($j=0; $j<$search["count"]; $j++) {
482                                                $info_return[] = $search[$j];
483                                        }
484                                        $info_return["count"] = count($info_return)-1;
485                                }
486                        }
487                        //---------------------------------------------------------------//
488                       
489            if($all == false)
490                $info_return['type_catalog'] = "G";
491           
492                        $info_return['extra_ldap_fields'] = $campos_extras;
493                       
494                        foreach($info_return as $i=>$value)
495                                $info_return[$i]['type_contact'] = "G";
496                               
497                        $info_return['search_for'] = $params['search_for'];
498            return $info_return;
499        }
500       
501        function make_quicksearch_card($info, $cn)
502        {
503                include_once("class.functions.inc.php");
504                $functions = new functions;
505
506                $contacts_result = array();
507                $contacts_result["cn"] = $cn;
508                if($_SESSION['phpgw_info']['user']['preferences']['expressoMail']['extended_info'])
509                    $extendedinfo=true;
510                else
511                    $extendedinfo=false;
512
513                list ($contacts_result["mail"], $contacts_result["phone"], $contacts_result["mobile"], $contacts_result["uid"], $contacts_result["jpegphoto"], $contacts_result["employeenumber"], $contacts_result["ou"]) = preg_split('/%/', $info);
514
515                if ($contacts_result['jpegphoto'])
516                        $photo_link = '<img src="./inc/show_user_photo.php?mail='.$contacts_result['mail'].'">';
517                else
518                        $photo_link = '<img src="./templates/default/images/photo.jpg">';
519
520                $phoneUser = $contacts_result['phone'];
521                $mobileUser = $contacts_result["mobile"];
522                if($mobileUser){
523                        $phoneUser .= " / $mobileUser";
524                }
525               
526                if($_SESSION['phpgw_info']['user']['preferences']['expressoMail']['voip_enabled']) {
527                        $phoneUser = $contacts_result['phone'];
528                        if($phoneUser)
529                                $phoneUser = '<a title="'.$this->functions->getLang("Call to Comercial Number").'" href="#" onclick="InfoContact.connectVoip(\''.$phoneUser.'\',\'com\')">'.$phoneUser.'</a>';
530                        if($mobileUser)
531                                $phoneUser .= ' / <a title="'.$this->functions->getLang("Call to Mobile Number").'" href="#" onclick="InfoContact.connectVoip(\''.$mobileUser.'\',\'mob\')">'.$mobileUser.'</a>';
532                }
533
534                $empNumber = $contacts_result["employeenumber"];
535                if($empNumber) {
536                        $empNumber = "$empNumber - ";
537                }
538                $ou = $contacts_result["ou"];
539                if($ou) {
540                        $ou = "<br/>$ou" ;
541                }
542
543                // Begin: nickname, firstname and lastname for QuickAdd.
544                $fn = $contacts_result["cn"];
545                $array_name = explode(" ", $fn);
546                if(count($array_name) > 1){                     
547                        $fn = $array_name[0];
548                        array_shift($array_name);
549                        $sn = implode(" ",$array_name);
550                }
551                // End:
552                $option =
553                        '<tr class="quicksearchcontacts_unselected">' .
554                                '<td class="cc" width="1%">' .
555                                        '<a title="'.$this->functions->getLang("Write message").'" onClick="javascript:QuickSearchUser.create_new_message(\''.$contacts_result["cn"].'\', \''.$contacts_result["mail"].'\', \''.$contacts_result["uid"].'\')">' .
556                                                $photo_link .
557                                        '</a>' .
558                                '</td>' .
559                                '<td class="cc">' .
560                                        '<span name="cn">' . ($empNumber != "" ? $empNumber : $uid) . $contacts_result['cn'] . '</span>' . '<br>' .
561                                        '<a title="'.$functions->getLang("Write message").'" onClick="javascript:QuickSearchUser.create_new_message(\''.$contacts_result["cn"].'\', \''.$contacts_result["mail"].'\', \''.$contacts_result["uid"].'\')">' .
562                                                '<font color=blue>' .
563                                                '<span name="mail">' . $contacts_result['mail'] . '</span></a></font>'.
564                                                '<img src="templates/default/images/user_card.png" style="cursor: pointer;" title="'.$this->functions->getLang("Add Contact").'" onclick="javascript:connector.loadScript(\'ccQuickAdd\');ccQuickAddOne.showList(\''.$fn.','.$fn.','.$sn.','.$contacts_result["mail"].'\')">'.
565                                        '<br>' .
566                                        $phoneUser .
567                                        $ou .
568                                '</td>' .
569                                '</tr>';
570                return $option;
571        }
572
573        function get_catalogs(){
574                $catalogs = array();
575                $catalogs[0] = $this->functions->getLang("Global Catalog");
576                if($this->external_srcs)
577                        foreach ($this->external_srcs as $key => $valor ){
578                        $catalogs[$key] = $valor['name'];
579                }
580                return $catalogs;
581        }
582        function get_organizations($params){
583                $organizations = array();
584                $params['referral']?$referral = $params['referral']:$referral = false;
585                $cat = $params['catalog'];
586
587                $this->ldapConnect($referral,$cat);
588
589                        if($this->branch != '') {
590                                $filter="(&(".$this->branch."=*)(!(phpgwAccountVisible=-1)))";
591                                $justthese = array("$this->branch");
592                        $sr = ldap_list($this->ds, $this->ldap_context, $filter, $justthese);
593                        $info = ldap_get_entries($this->ds, $sr);
594
595                        if($info["count"] == 0)
596                        {
597                            $organizations[0]['ou'] = $this->ldap_context;
598                        }
599
600                        for ($i=0; $i<$info["count"]; $i++)
601                                $organizations[$i] = $info[$i]["ou"][0];
602
603                        ldap_close($this->ds);
604                        sort($organizations);
605                return $organizations;
606                        }else{
607                        return null;
608        }
609        }
610        function get_organizations2($params){
611                $organizations = array();
612                $referral = $params['referral'];
613                $this->ldapRootConnect($referral);
614                if ($this->ds) {
615                        $filter="(&(objectClass=organizationalUnit)(!(phpgwAccountVisible=-1)))";
616                        $justthese = array("ou");
617                        $sr = ldap_list($this->ds, $this->ldap_context, $filter, $justthese);
618                        $info = ldap_get_entries($this->ds, $sr);
619
620
621                        if($info["count"] == 0)
622                        {
623                            $organizations[0]['ou'] = $this->ldap_context;
624                            $organizations[0]['dn'] = $this->ldap_context;
625                        }
626                        else{
627                            for ($i=0; $i<$info["count"]; $i++)
628                            {
629                                    $organizations[$i]['ou'] = $info[$i]["ou"][0];
630                                    $organizations[$i]['dn'] = $info[$i]["dn"];
631                            }
632                        }
633                        ldap_close($this->ds);
634                        sort($organizations);
635                }
636                return $organizations;
637        }
638        //Busca usuarios de um contexto e ja retorna as options do select - usado por template serpro;
639        function search_users($params)
640        {
641                $owner = $_SESSION['phpgw_info']['expressomail']['user']['owner'];
642                        $ldapService = ServiceLocator::getService('ldap');
643                        $ldapService->connect($_SESSION['phpgw_info']['expressomail']['server']['ldap_host'],
644                        $_SESSION['phpgw_info']['expressomail']['server']['ldap_root_dn'],
645                        $_SESSION['phpgw_info']['expressomail']['server']['ldap_root_pw']);
646
647                        $groups = $ldapService->accountSearch($params['filter'], array("gidNumber","cn", 'uid'), $params['context'] , 'g', 'cn');
648                        $users = $ldapService->accountSearch($params['filter'], array("uidNumber","cn", 'uid'), $params['context'] , 'u', 'cn');
649                        $compartilhadas = $ldapService->accountSearch($params['filter'], array("uidNumber","cn",'uid'), $params['context'] , 's', 'cn');
650                       
651
652                        $group_options = array();
653                        $user_options  = array();
654                        $shared_options = array();
655
656                        foreach($groups as $group)
657                {
658                                $group_options[] = '"'.$group['gidnumber'].'U'.'":"'.$group['cn'].' ('.$group['uid'].')"';
659                }
660                foreach($users as $user)
661                    {
662                                if($owner != $user['uidnumber']) 
663                                        $user_options[] = '"'.$user['uidnumber'].'U'.'":"'.$user['cn'].' ('.$user['uid'].')"';
664                        }       
665                        foreach($compartilhadas as $shared)
666                        {
667                                if($owner != $shared['uidnumber']) 
668                                        $shared_options[] = '"'.$shared['uidnumber'].'U'.'":"'.$shared['cn'].' ('.$shared['uid'].')"';
669                    }
670       
671                        $user_options = '{'.implode( ',', $user_options ).'}';
672                        $group_options = '{'.implode( ',', $group_options ).'}';
673                        $shared_options = '{'.implode( ',', $shared_options ).'}';
674
675                 return '{"users":'.$user_options.',"groups":'.$group_options.',"shared":'. $shared_options .'}';
676        }
677
678        function catalogsearch($params)
679        {
680                $ldapService = ServiceLocator::getService('ldap');
681                $filter =  $ldapService->getSearchFilter($params['search_for'],array('u','l','s'));
682               
683                $catalog = $params['catalog'];
684                $error = False;
685
686                //if($_SESSION['phpgw_info']['user']['preferences']['expressoMail']['extended_info'])
687                    //$extendedinfo=true;
688                //else
689                    //$extendedinfo=false;
690
691
692                $this->ldapConnect(true,$catalog);
693
694                $params['organization'] == 'all' ? $user_context = $this->ldap_context :$user_context = $this->branch."=".$params['organization'].",".$this->ldap_context;
695
696                if ($this->ds) {
697                                $justthese = array("cn", "mail", "phpgwaccounttype", "phpgwAccountVisible", "employeeNumber", "ou");
698                        $sr=@ldap_search($this->ds, $user_context, $filter, $justthese, 0, $ldapService->limit+1);
699
700                        if(!$sr)
701                                return null;
702                        $count_entries = ldap_count_entries($this->ds,$sr);
703                        if ($count_entries > $ldapService->limit){
704                                $info = null;
705                                $error = True;
706                        }
707                        else
708                                $info = ldap_get_entries($this->ds, $sr);
709
710                        ldap_close($this->ds);
711
712                        $u_tmp = array();
713                        $g_tmp = array();
714
715                        for ($i=0; $i<$info["count"]; $i++){
716                                if((!$catalog==0)||(strtoupper($info[$i]["phpgwaccounttype"][0]) == 'U') && ($info[$i]["phpgwaccountvisible"][0] != '-1'))
717                                        //aqui eh feita a concatenacao do departamento ao cn;
718                                        $u_tmp[$info[$i]["mail"][0]] = utf8_decode($info[$i]["cn"][0]). '%' . $info[$i]["ou"][0];
719                                if((!$catalog==0)||(strtoupper($info[$i]["phpgwaccounttype"][0]) == 'L') && ($info[$i]["phpgwaccountvisible"][0] != '-1'))
720                                        $g_tmp[$info[$i]["mail"][0]] = utf8_decode($info[$i]["cn"][0]);
721                        }
722
723                        natcasesort($u_tmp);
724                        natcasesort($g_tmp);
725
726                        $i = 0;
727                        $users = array();
728
729                        foreach ($u_tmp as $mail => $cn){
730
731                                $tmp = explode("%", $cn); //explode o cn pelo caracter "%" e joga em $tmp;
732                                $name = $tmp[0]; //pega o primeiro item (cn) do vetor resultante do explode acima;
733                                $department = $tmp[1]; //pega o segundo item (ou) do vetor resultanto do explode acima;
734                                $users[$i++] = array("name" => $name, "email" => $mail, "department" => $department);
735
736                        }
737                        unset($u_tmp);
738
739                        $i = 0;
740                        $groups = array();
741
742                        foreach ($g_tmp as $mail => $cn){
743                                $groups[$i++] = array("name" => $cn, "email" => $mail);
744                        }
745                        unset($g_tmp);
746
747                        return  array('users' => $users, 'groups' => $groups, 'error' => $error,'maxResult' => $ldapService->limit);
748                }else
749                return null;
750        }
751
752        function get_emails_ldap(){
753
754                $result['mail']= array();
755                $result['mailalter']= array();
756                $user = $_SESSION['phpgw_info']['expressomail']['user']['account_lid'];
757                $this->ldapRootConnect(false);
758                if ($this->ds) {
759                        $filter="uid=".$user;
760                        $justthese = array("mail","mailAlternateAddress");
761                        $sr = ldap_search($this->ds,$this->ldap_context, $filter, $justthese);
762                        $ent = ldap_get_entries($this->ds, $sr);
763                        ldap_close($this->ds);
764
765                        for ($i=0; $i<$ent["count"]; $i++){
766                                $result['mail'][] = $ent[$i]["mail"][0];
767                                $result['mailalter'][] = $ent[$i]["mailalternateaddress"][0];
768                        }
769                }
770                return $result;
771        }
772
773        //Busca usuarios de um contexto e ja retorna as options do select;
774        function get_available_users($params)
775    {
776        $this->ldapRootConnect();
777        //Monta lista de Grupos e Usuarios
778        $users = Array();
779        $groups = Array();
780        $user_context= $params['context'];
781        $owner = $_SESSION['phpgw_info']['expressomail']['user']['owner'];
782
783        if ($this->ds)
784        {
785            $justthese = array("gidNumber","cn");
786            if ($params['type'] == 'search')
787                $sr=ldap_search($this->ds, $user_context, ("(&(cn=*)(phpgwaccounttype=g)(!(phpgwaccountvisible=-1)))"),$justthese);
788            else
789                $sr=ldap_list($this->ds, $user_context, ("(&(cn=*)(phpgwaccounttype=g)(!(phpgwaccountvisible=-1)))"),$justthese);
790            $info = ldap_get_entries($this->ds, $sr);
791            for ($i=0; $i<$info["count"]; $i++)
792                $groups[$uids=$info[$i]["gidnumber"][0]] = Array('name'    =>    $uids=$info[$i]["cn"][0], 'type'    =>    g);
793            $justthese = array("phpgwaccountvisible","uidNumber","cn");
794            if ($params['type'] == 'search')
795                $sr=ldap_search($this->ds, $user_context, ("(&(cn=*)(phpgwaccounttype=u)(!(phpgwaccountvisible=-1)))"),$justthese);
796            else
797                $sr=ldap_list($this->ds, $user_context, ("(&(cn=*)(phpgwaccounttype=u)(!(phpgwaccountvisible=-1)))"),$justthese);
798
799            $info = ldap_get_entries($this->ds, $sr);
800            for ($i=0; $i<$info["count"]; $i++)
801            {
802                if ($info[$i]["phpgwaccountvisible"][0] == '-1')
803                    continue;
804                $users[$uids=$info[$i]["uidnumber"][0]] = Array('name'    =>    $uids=$info[$i]["cn"][0], 'type'    =>    u);
805            }
806        }
807        ldap_close($this->ds);
808
809        @asort($users);
810        @reset($users);
811        @asort($groups);
812        @reset($groups);
813        $user_options ='';
814        $group_options ='';
815
816        foreach($groups as $id => $user_array) {
817                $newId = $id.'U';
818                $group_options .= '<option  value="'.$newId.'">'.utf8_decode($user_array['name']).'</option>'."\n";
819        }
820        foreach($users as $id => $user_array) {
821            if($owner != $id){
822                $newId = $id.'U';
823                $user_options .= '<option  value="'.$newId.'">'.utf8_decode($user_array['name']).'</option>'."\n";
824            }
825        }
826        return array("users" => $user_options, "groups" => $group_options);
827    }
828
829        //Busca usuarios de um contexto e ja retorna as options do select;
830        function get_available_users2($params)
831        {
832                $ldapService = ServiceLocator::getService('ldap');
833                $ldapService->connect($_SESSION['phpgw_info']['expressomail']['server']['ldap_host'],
834                $_SESSION['phpgw_info']['expressomail']['server']['ldap_root_dn'],
835                $_SESSION['phpgw_info']['expressomail']['server']['ldap_root_pw']);
836
837                $entries = $ldapService->accountSearch($params['sentence'], array('cn', 'uid'), $params['context'], 'u', 'cn');
838
839                $options = array();
840
841                foreach ($entries as $value)
842                        $options[] = '"'.$value['uid'].'"'.':'.'"'.$value['cn'].'"';
843
844                return "{".implode(',',$options)."}";           
845                                }
846
847        function uid2cn($uid)
848        {
849                // do not follow the referral
850                $this->ldapRootConnect(false);
851                if ($this->ds)
852                {
853                        $filter="(&(phpgwAccountType=u)(uid=$uid))";
854                        $justthese = array("cn");
855                        $sr=@ldap_search($this->ds, $this->ldap_context, $filter, $justthese);
856                        if(!$sr)
857                                return false;
858                        $info = ldap_get_entries($this->ds, $sr);
859                        return utf8_decode($info[0]["cn"][0]);
860                }
861                return false;
862        }
863        function uidnumber2uid($uidnumber)
864        {
865                // do not follow the referral
866                $this->ldapRootConnect(false);
867                if ($this->ds)
868                {
869                        $filter="(&(phpgwAccountType=u)(uidnumber=$uidnumber))";
870                        $justthese = array("uid");
871                        $sr=@ldap_search($this->ds, $this->ldap_context, $filter, $justthese);
872                        if(!$sr)
873                                return false;
874                        $info = ldap_get_entries($this->ds, $sr);
875                        return $info[0]["uid"][0];
876                }
877                return false;
878        }
879        function getSharedUsersFrom($params){
880                $filter = '';
881                //Added to save if must save sent messages in shared folder
882                $acl_save_sent_in_shared = array();
883               
884                if($params['uids']) {
885                        $uids = explode(";",$params['uids']);
886                        $this->imap = new imap_functions();                     
887                        foreach($uids as $index => $uid){               
888                       
889                                $params = array();
890                                //Added to save if user has create permission
891                                $acl_create_message = array();
892                                $user_arr = array();
893                                $user_arr['user'] = $uid;
894                                $user_arr['getShared'] = true;
895                                $acl = $this->imap->getaclfromuser( $user_arr );
896                               
897                                if($acl[$uid] != 'false'){
898                                        if ( preg_match("/[pa]+.*[pa]+/",$acl[$uid])){ 
899                                                $filter .= "(uid=$uid)";                                                       
900                                                $acl_save_sent_in_shared[] =$uid;                       
901                                        }       
902                                }
903                        }                       
904                }
905               
906                $this->ldapRootConnect(false);
907                if ($this->ds) {
908                        $justthese = array("cn","mail","uid");
909                        if($filter) {
910                                $filter="(&(|(phpgwAccountType=u)(phpgwAccountType=s))(|$filter))";
911                                $sr             =       ldap_search($this->ds, $this->ldap_context, $filter, $justthese);
912                                ldap_sort($this->ds,$sr,"cn");
913                                $info   =       ldap_get_entries($this->ds, $sr);
914                                $var = print_r($acl_save_sent_in_shared, true);                         
915                                for ($i = 0;$i < $info["count"]; $i++){
916                                        $info[$i]['cn'][0] = utf8_decode($info[$i]['cn'][0]);
917                                        //verify if user has permission to save sent messages in a shared folder
918                                        if ( in_array( $info[$i]['uid'][0],$acl_save_sent_in_shared) ){                                         
919                                                $info[$i]['save_shared'][0] = 'y';
920                                        } else $info[$i]['save_shared'][0] = 'n';
921                                }
922                        }
923               
924                        $info['myname'] = $_SESSION['phpgw_info']['expressomail']['user']['fullname'];
925
926                        //Find institucional_account.
927                        $filter="(&(phpgwAccountType=i)(mailForwardingAddress=".$_SESSION['phpgw_info']['expressomail']['user']['email']."))";
928                        $sr     = ldap_search($this->ds, $this->ldap_context, $filter, $justthese);
929                        ##
930                        # @AUTHOR Rodrigo Souza dos Santos
931                        # @DATE 2008/09/17
932                        # @BRIEF Changing to ensure that the variable session is always with due value.
933                        ##
934                        if(ldap_count_entries($this->ds,$sr))
935                        {
936                                ldap_sort($this->ds,$sr,"cn");
937                                $result = ldap_get_entries($this->ds, $sr);
938                                for ($j = 0;$j < $result["count"]; $j++){
939                                        $info[$i]['cn'][0] = utf8_decode($result[$j]['cn'][0]);
940                                        $info[$i]['mail'][0] = $result[$j]['mail'][0];
941                                        $info[$i]['save_shared'][0] = 'n';
942                                        $info[$i++]['uid'][0] = $result[$j]['uid'][0];                                 
943                                }
944                        }
945
946                        $_SESSION['phpgw_info']['expressomail']['user']['shared_mailboxes'] = $info;
947                        return $info;
948                }
949        }
950
951        function getUserByEmail($params)
952        {
953                $expires = 60*60*24*30; /* 30 days */
954                header("Cache-Control: maxage=".$expires);
955                header("Pragma: public");
956                header("Expires: ".gmdate('D, d M Y H:i:s', time()+$expires)); 
957                $filter="(&(phpgwAccountType=u)(mail=" . $params['email'] . "))";
958                $ldap_context = $_SESSION['phpgw_info']['expressomail']['ldap_server']['dn'];
959                if($_SESSION['phpgw_info']['user']['preferences']['expressoMail']['extended_info'])
960                    $extendedinfo=true;
961                else
962                    $extendedinfo=false;
963
964                if($extendedinfo)
965                    $justthese = array("cn","uid","telephoneNumber","jpegPhoto","mobile","ou","employeeNumber");
966                else
967                    $justthese = array("cn","uid","telephoneNumber","jpegPhoto");
968
969                // Follow the referral
970                $ds = $this->ldapConnect2(true);
971                if ($ds)
972                {
973                        $sr=@ldap_search($ds, $ldap_context, $filter, $justthese);
974
975                        if (!$sr)
976                                return null;
977
978                        $entry = ldap_first_entry($ds, $sr);
979
980                        if($entry) {
981                                $obj =  array("cn" => utf8_decode(current(ldap_get_values($ds, $entry, "cn"))),
982                                                  "email" => $params['email'],
983                                                  "uid" => ldap_get_values($ds, $entry, "uid"),
984                                                  "type" => "global",
985                                                  "mobile" =>  @ldap_get_values($ds, $entry, "mobile"),
986                                                  "telefone" =>  @ldap_get_values($ds, $entry, "telephonenumber"),
987                                                  "ou" =>  @ldap_get_values($ds, $entry, "ou"),
988                                                  "employeeNumber" =>  @ldap_get_values($ds, $entry, "employeeNumber")
989                                        );
990
991                                $_SESSION['phpgw_info']['expressomail']['contact_photo'] = @ldap_get_values_len($ds, $entry, "jpegphoto");
992                                ldap_close($ds);
993                                return $obj;
994                        }
995                }
996                return null;
997        }
998       
999        function uid2uidnumber($uid)
1000        {
1001                // do not follow the referral
1002                $this->ldapRootConnect(false);
1003                if ($this->ds)
1004                {
1005                        $filter="(&(phpgwAccountType=u)(uid=$uid))";
1006                        $justthese = array("uidnumber");
1007                        $sr=@ldap_search($this->ds, $this->ldap_context, $filter, $justthese);
1008                        if(!$sr)
1009                                return false;
1010                        $info = ldap_get_entries($this->ds, $sr);
1011                        return $info[0]["uidnumber"][0];
1012                }
1013                return false;
1014        }
1015       
1016        function get_user_groups($uid)
1017        {
1018
1019                $organizations = array();
1020       
1021                $this->ldapRootConnect();
1022
1023                $justthese = array("gidnumber","cn");
1024                $filter="(&(phpgwAccountType=g)(memberuid=".$uid."))";
1025
1026                $search = ldap_search($this->ds, $this->ldap_context, $filter, $justthese);
1027
1028                $result = array();
1029                $entries = ldap_get_entries($this->ds, $search);
1030
1031
1032                for ($i=0; $i<$entries['count']; $i++)
1033                {
1034                        $result[ $entries[$i]['gidnumber'][0] ] = $entries[$i]['cn'][0];
1035                }
1036
1037                return $result;
1038        }
1039       
1040       function getMailByUid($pUid)
1041        {
1042                // do not follow the referral
1043                $this->ldapRootConnect(false);
1044                if ($this->ds)
1045                {
1046                        $filter="(&(|(phpgwAccountType=u)(phpgwAccountType=s)(phpgwAccountType=l))(uid=$pUid))";
1047                        $justthese = array("mail");
1048                        $sr=@ldap_search($this->ds, $this->ldap_context, $filter, $justthese);
1049                        if(!$sr)
1050                                return false;
1051                        $info = ldap_get_entries($this->ds, $sr);
1052
1053
1054                        return utf8_decode($info[0]["mail"][0]);
1055                }
1056                return false;
1057        }
1058 
1059        function mail2uid($mail)
1060        {
1061                if(!$this-ds)
1062                    $this->ldapRootConnect(false);
1063
1064                $filter="(&(|(phpgwAccountType=u)(phpgwAccountType=s)(phpgwAccountType=i)(phpgwAccountType=g))(mail=$mail))";
1065                $justthese = array("uid");
1066                $sr=@ldap_search($this->ds, $this->ldap_context, $filter, $justthese);
1067                if(!$sr)
1068                    return false;
1069                $info = ldap_get_entries($this->ds, $sr);
1070                return $info[0]["uid"][0];
1071        }
1072
1073       
1074        /**
1075         * Retorna as contas compartilhas
1076         * @param string $toaddress emails
1077         * @param string $ccaddress emails
1078         * @param string $ccoaddress emails
1079         * @param array $groups array com os grupos que o usuario pertence
1080         * @return array
1081         */
1082        function returnSharedsAccounts($toaddress,$ccaddress,$ccoaddress)
1083        {
1084
1085          $arrayAllAddres = array();
1086          $arrayAllAddres =  array_merge($arrayAllAddres , explode(',',$toaddress));
1087          $arrayAllAddres =  array_merge($arrayAllAddres, explode(',',$ccaddress));
1088          $arrayAllAddres = array_merge($arrayAllAddres, explode(',',$ccoaddress));
1089
1090          $mailsArray = array();
1091
1092           foreach ($arrayAllAddres as $toAddres)
1093           {
1094
1095               if(strchr($toAddres,'@') && strchr($toAddres,'<') && strchr($toAddres,'>'))
1096               {
1097                    $alias = substr($toAddres, strpos($toAddres,'<'), strpos($toAddres,'>'));
1098                    $alias = str_replace('<','', str_replace('>','',$alias));
1099                    array_push($mailsArray, $alias);
1100               }
1101               else if(strchr($toAddres,'@'))
1102               {
1103                    array_push($mailsArray, $toAddres);
1104               }
1105           }
1106           $arraySharedAccounts = array();
1107
1108           $conexao = $this->ldapConnect2(true);
1109
1110
1111           $mailFilter = '';
1112
1113           foreach ($mailsArray as $mail)
1114             $mailFilter .= '(|(mail='.$mail.')(mailAlternateAddress='.$mail.'))';
1115
1116
1117           $filter = '(&(phpgwAccountType=s)(|'.$mailFilter.') )';
1118           $ldap_context = $_SESSION['phpgw_info']['expressomail']['server']['ldap_context'];
1119           $justthese = array('cn','uid','mail');
1120
1121           if ($conexao)
1122           {
1123                $search = @ldap_search($conexao, $ldap_context, $filter, $justthese);
1124                if($search)
1125                {
1126                    $results = ldap_get_entries($conexao, $search);
1127
1128                    foreach ($results as $result)
1129                    {
1130                        if($result['mail'][0])
1131                            array_push($arraySharedAccounts, $result['mail'][0]);
1132                    }
1133                }
1134
1135           }
1136
1137           return $arraySharedAccounts;
1138        }
1139        /**
1140        * Verifica se um email é uma conta compartilhada
1141        *
1142        * @license    http://www.gnu.org/copyleft/gpl.html GPL
1143        * @author     Cons?rcio Expresso Livre - 4Linux (www.4linux.com.br) e Prognus Software Livre (www.prognus.com.br)
1144        * @author     Cristiano Corrêa Schmidt
1145        * @param      String $mail Email a ser verificado
1146        * @return     bolean
1147        * @access     public
1148        */
1149        function isSharedAccountByMail($mail)
1150        {
1151            $return = false;
1152            $conexao = $this->ldapConnect2(true);
1153            $filter = '(&(phpgwAccountType=s)(mail='.$mail.'))';
1154            $ldap_context = $_SESSION['phpgw_info']['expressomail']['server']['ldap_context'];
1155            $justthese = array('cn','uid','mail');
1156            if ($conexao)
1157            {
1158                $search = @ldap_search($conexao, $ldap_context, $filter, $justthese);
1159                if(ldap_count_entries ($conexao , $search))
1160                    $return = true;
1161            }
1162
1163            return $return;
1164        }
1165
1166        function save_telephoneNumber($params){
1167                $return = array();
1168                if($_SESSION['phpgw_info']['user']['preferences']['expressoMail']['blockpersonaldata']){
1169                        $return['error'] = $this->functions->getLang("You can't modify your Commercial Telephone.");
1170                        return $return;
1171                }
1172                $old_telephone = 0;
1173                $pattern = '/\([0-9]{2,3}\)[0-9]{4}-[0-9]{4}$/';
1174                if ((strlen($params['number']) != 0) && (!preg_match($pattern, $params['number'])))
1175                        {
1176                        $return['error'] = $this->functions->getLang('The format of telephone number is invalid');
1177                        return $return;
1178                }
1179                if($params['number'] != $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['telephone_number']) {
1180                        $old_telephone = $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['telephone_number'];
1181                        $this->ldapRootConnect(false);
1182                        if(strlen($_SESSION['phpgw_info']['user']['preferences']['expressoMail']['telephone_number']) == 0) {
1183                                $info['telephonenumber'] = $params['number'];
1184                                $result = @ldap_mod_add($this->ds, $_SESSION['phpgw_info']['expressomail']['user']['account_dn'], $info);
1185                        }
1186                        else {
1187                                $info['telephonenumber'] = $params['number'];
1188                                $result = @ldap_mod_replace($this->ds, $_SESSION['phpgw_info']['expressomail']['user']['account_dn'], $info);
1189                        }
1190                        $_SESSION['phpgw_info']['user']['preferences']['expressoMail']['telephone_number'] = $info['telephonenumber'];
1191                                //      Log updated telephone number by user action
1192                                include_once('class.db_functions.inc.php');
1193                                $db_functions = new db_functions();
1194                        $db_functions->write_log('modified user telephone',"User changed its own telephone number in preferences $old_telephone => ".$info['telephonenumber']);
1195                        unset($info['telephonenumber']);
1196                }
1197                return $return['ok'] = true;
1198        }       
1199}
1200?>
Note: See TracBrowser for help on using the repository browser.