source: trunk/expressoMail1_2/inc/class.ldap_functions.inc.php @ 6139

Revision 6139, 44.1 KB checked in by niltonneto, 12 years ago (diff)

Ticket #2230 - Correção da versão 2.2 replicada para o Trunk. Vide Ticket.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
RevLine 
[387]1<?php
[5509]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               
[5399]12require_once(dirname(__FILE__).'/../../services/class.servicelocator.php');
[176]13include_once("class.imap_functions.inc.php");
[342]14include_once("class.functions.inc.php");
[176]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}
[387]20
[2]21class ldap_functions
22{
23        var $ds;
24        var $ldap_host;
25        var $ldap_context;
26        var $imap;
[342]27        var $external_srcs;
28        var $max_result;
29        var $functions;
[4457]30        var $ldapService;
31       
[342]32        function ldap_functions(){
33        // todo: Page Configuration for External Catalogs.
34                @include("../contactcenter/setup/external_catalogs.inc.php");
[4457]35                $this->ldapService = ServiceLocator::getService('ldap');
[5134]36                if(isset($external_srcs))
[4457]37                $this->external_srcs = $external_srcs;
38                $this->max_result = $this->ldapService->limit;
[387]39                $this->functions = new functions();
40        }
[342]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 {
[325]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'];
[387]56                        $this->branch = 'ou';
[325]57                }
[387]58
[325]59                $this->ds = ldap_connect($this->ldap_host);
[2]60                ldap_set_option($this->ds, LDAP_OPT_PROTOCOL_VERSION, 3);
[37]61                ldap_set_option($this->ds, LDAP_OPT_REFERRALS, $refer);
[342]62                if ($refer)     {
[176]63                        ldap_set_rebind_proc($this->ds, ldapRebind);
64                }
[387]65                @ldap_bind($this->ds,$this->bind_dn,$this->bind_dn_pw );
[2]66        }
67
[205]68        //Teste jakjr retornando o DS
69        function ldapConnect2($refer = false){
70                $ds = ldap_connect($_SESSION['phpgw_info']['expressomail']['ldap_server']['host']);
[387]71
[205]72                if (!$ds)
73                        return false;
[387]74
[205]75                ldap_set_option($ds, LDAP_OPT_PROTOCOL_VERSION, 3);
76                ldap_set_option($ds, LDAP_OPT_REFERRALS, $refer);
77                if ($refer)
[5134]78                        ldap_set_rebind_proc($ds, 'rebind');
[205]79                @ldap_bind($ds, $_SESSION['phpgw_info']['expressomail']['ldap_server']['acc'],$_SESSION['phpgw_info']['expressomail']['ldap_server']['pw']);
[387]80
81                return $ds;
[205]82        }
83
84
[108]85        // usa o host e context do setup.
[2]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
[5821]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                }
[2]103        }
104
105        function quicksearch($params)
[387]106        {
[95]107                include_once("class.functions.inc.php");
[387]108                $functions = new functions;
[4929]109
[2]110                $field          = $params['field'];
111                $ID                     = $params['ID'];
[4929]112               
[4457]113                $ldapService = ServiceLocator::getService('ldap');
114                $filter =  $ldapService->getSearchFilter($params['search_for']);
[4929]115
[2]116                $contacts_result = array();
117                $contacts_result['field'] = $field;
118                $contacts_result['ID'] = $ID;
[5199]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;
[5237]125
[2]126                // follow the referral
127                $this->ldapConnect(true);
[4929]128
[2]129                if ($this->ds)
[4929]130                {
[5134]131                    $ldapService->connection = $this->ds;
[5199]132                                if($extendedinfo)
[5245]133                                        $justthese = array("cn", "mail", "telephonenumber", "uid","uidNumber", "mobile", "phpgwaccountvisible", "employeenumber", "ou");
[5199]134                                else
[5245]135                                        $justthese = array("cn", "mail", "telephoneNumber", "phpgwAccountVisible", "uidNumber","uid");
[4457]136                $types = false;
[387]137
[4457]138                if( $field == 'null' || $ID == 'null' )
[4929]139                        {
[4457]140                    $justthese[] = "jpegphoto";
141                    $types = 'u';
142                }
[387]143
[4457]144                $filter = $ldapService->getSearchFilter( $params['search_for'], $types );
[387]145
[4457]146                $sr=@ldap_search($this->ds, $this->ldap_context, $filter, $justthese, 0, $this->max_result);
147                       
[4929]148                                if(!$sr)
149                                        return null;
[4457]150
[4929]151                                $count_entries = ldap_count_entries($this->ds,$sr);
[4457]152
153                $info = ldap_get_entries($this->ds, $sr);
154
155            // New search only on user sector
[5238]156            if ($count_entries == $this->max_result)
[4457]157            {
158                $overload = $count_entries;
[4929]159                                }
160                                else
161                                {
162                                $catalogsNum=count($this->external_srcs);
[4457]163                for ($i=0; $i<=$catalogsNum; $i++)      {
[5245]164                                        if ($this->external_srcs[$i]["quicksearch"]) {
[4929]165                                                $this->ldapConnect(true,$i);
166                                                $filter="(|(cn=*$search_for*)(mail=*$search_for*))";
[5199]167                                                if($extendedinfo)
[5245]168                                        $justthese = array("cn", "mail", "telephonenumber", "uid","uidNumber", "mobile", "phpgwaccountvisible", "employeenumber", "ou");
[5199]169                                                else
[5245]170                                                        $justthese = array("cn", "mail", "telephoneNumber", "phpgwAccountVisible","uidNumber", "uid");
[4929]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                                        }
[108]181                                }
[95]182                        }
[387]183
[4457]184            $tmp = array();
185            $tmp_users_from_user_org = array();
[387]186
[4929]187                        for ($i=0; $i<$info["count"]; $i++)
188                        {
[5245]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];
[387]190
[4457]191                if (/*(!$quickSearch_only_in_userSector) &&*/ preg_match("/$user_sector_dn/i", $info[$i]['dn']))
[4929]192                                {
[4457]193                        $tmp_users_from_user_org[$key] = utf8_decode($info[$i]["cn"][0]);
194                        continue;
[4929]195                                }
[342]196
[4457]197                $tmp[$key] = utf8_decode($info[$i]["cn"][0]);
[4929]198                                        }
[387]199
[4929]200                        natcasesort($tmp_users_from_user_org);
201                        natcasesort($tmp);
[387]202
[4929]203                        if (($field != 'null') && ($ID != 'null'))
204                        {
205                                $i = 0;
[387]206
[4929]207                                $tmp = array_merge($tmp, $tmp_users_from_user_org);
208                                natcasesort($tmp);
[271]209
[4929]210                                foreach ($tmp as $info => $cn)
211                                {
212                                        $contacts_result[$i] = array();
213                                        $contacts_result[$i]["cn"] = $cn;
[6057]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);
[4929]215                                        $i++;
216                                }
217                                $contacts_result['quickSearch_only_in_userSector'] = $quickSearch_only_in_userSector;
[4457]218                    $contacts_result['maxResult'] = $ldapService->limit;
[4929]219                        }
220                        else
221                        {
222                                $options_users_from_user_org = '';
223                                $options = '';
[271]224
[4457]225           
[4929]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                                }
[387]233
[4457]234           
[4929]235                                foreach ($tmp as $info => $cn)
236                                {
237                                        $contacts_result[$i] = array();
238                                        $options .= $this->make_quicksearch_card($info, $cn);
239                                        $i++;
240                                }
[271]241
[4457]242
[4929]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>';
[4457]251
[4929]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                                        }
[4457]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
[4929]270                                }
271                        }
[4457]272
[4929]273                ldap_close($this->ds);
[4457]274
[4929]275                return $contacts_result;
[2]276        }
277
[5075]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        {
[5209]289            if(array_key_exists('Type', $params)){
[5196]290                return $this->quickSearch($params);
291            }
[5202]292           
[5075]293            $modal = false;
294            if($params['catalog'])
295                $modal = true;
296             
[5316]297            include_once dirname(__FILE__). '/../../header.inc.php';
[5075]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);
[5172]351                       
[5075]352                        $retorno['type_catalog'] = "A";
[5172]353                        $retorno['search_for'] = $params['search_for'];
[5075]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']);
[5209]372                        $results2 = array();
[5172]373            $results2   = $DBService->search_groups($params['search_for']);
[5075]374           
[5209]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           
[5075]384            if(!$all)
385                $results['type_catalog'] = "P";
[5134]386                       
387                        foreach($results as $i=>$value)
388                                $results[$i]['type_contact'] = "P";
389                       
[5172]390                        $results['search_for'] = $params['search_for'];
[5209]391                       
[5075]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        {             
[5316]407            include_once dirname(__FILE__). '/../../header.inc.php';
[5075]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                {   
[5134]417                    if($parts[2] == 'searchable' /*&& $value == 'true'*/)
[5075]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);
[5513]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);
[5075]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);     
[5199]467
[5075]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;
[5134]493                       
494                        foreach($info_return as $i=>$value)
495                                $info_return[$i]['type_contact'] = "G";
[5172]496                               
497                        $info_return['search_for'] = $params['search_for'];
[5075]498            return $info_return;
499        }
500       
[271]501        function make_quicksearch_card($info, $cn)
502        {
503                include_once("class.functions.inc.php");
[387]504                $functions = new functions;
505
[271]506                $contacts_result = array();
507                $contacts_result["cn"] = $cn;
[3388]508                if($_SESSION['phpgw_info']['user']['preferences']['expressoMail']['extended_info'])
509                    $extendedinfo=true;
510                else
511                    $extendedinfo=false;
[387]512
[6057]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);
[3388]514
[271]515                if ($contacts_result['jpegphoto'])
516                        $photo_link = '<img src="./inc/show_user_photo.php?mail='.$contacts_result['mail'].'">';
517                else
[1495]518                        $photo_link = '<img src="./templates/default/images/photo.jpg">';
[387]519
[271]520                $phoneUser = $contacts_result['phone'];
[6139]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                }
[387]533
[6139]534                $empNumber = $contacts_result["employeenumber"];
535                if($empNumber) {
536                        $empNumber = "$empNumber - ";
[271]537                }
[6139]538                $ou = $contacts_result["ou"];
539                if($ou) {
540                        $ou = "<br/>$ou" ;
541                }
[3388]542
[644]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:
[271]552                $option =
553                        '<tr class="quicksearchcontacts_unselected">' .
554                                '<td class="cc" width="1%">' .
[342]555                                        '<a title="'.$this->functions->getLang("Write message").'" onClick="javascript:QuickSearchUser.create_new_message(\''.$contacts_result["cn"].'\', \''.$contacts_result["mail"].'\')">' .
[271]556                                                $photo_link .
557                                        '</a>' .
558                                '</td>' .
559                                '<td class="cc">' .
[5245]560                                        '<span name="cn">' . ($empNumber != "" ? $empNumber : $uid) . $contacts_result['cn'] . '</span>' . '<br>' .
[3388]561                                        '<a title="'.$functions->getLang("Write message").'" onClick="javascript:QuickSearchUser.create_new_message(\''.$contacts_result["cn"].'\', \''.$contacts_result["mail"].'\')">' .
[271]562                                                '<font color=blue>' .
[644]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>' .
[271]566                                        $phoneUser .
[3388]567                                        $ou .
[271]568                                '</td>' .
[644]569                                '</tr>';
[271]570                return $option;
571        }
572
[387]573        function get_catalogs(){
[325]574                $catalogs = array();
[387]575                $catalogs[0] = $this->functions->getLang("Global Catalog");
576                if($this->external_srcs)
[342]577                        foreach ($this->external_srcs as $key => $valor ){
[325]578                        $catalogs[$key] = $valor['name'];
579                }
580                return $catalogs;
581        }
[2]582        function get_organizations($params){
583                $organizations = array();
[325]584                $params['referral']?$referral = $params['referral']:$referral = false;
585                $cat = $params['catalog'];
[2]586
[325]587                $this->ldapConnect($referral,$cat);
588
589                        if($this->branch != '') {
[1363]590                                $filter="(&(".$this->branch."=*)(!(phpgwAccountVisible=-1)))";
[325]591                                $justthese = array("$this->branch");
[342]592                        $sr = ldap_list($this->ds, $this->ldap_context, $filter, $justthese);
593                        $info = ldap_get_entries($this->ds, $sr);
[387]594
[3530]595                        if($info["count"] == 0)
596                        {
597                            $organizations[0]['ou'] = $this->ldap_context;
598                        }
599
[342]600                        for ($i=0; $i<$info["count"]; $i++)
601                                $organizations[$i] = $info[$i]["ou"][0];
[325]602
[342]603                        ldap_close($this->ds);
[387]604                        sort($organizations);
[342]605                return $organizations;
[325]606                        }else{
607                        return null;
[2]608        }
[342]609        }
[2]610        function get_organizations2($params){
611                $organizations = array();
612                $referral = $params['referral'];
613                $this->ldapRootConnect($referral);
614                if ($this->ds) {
[3530]615                        $filter="(&(objectClass=organizationalUnit)(!(phpgwAccountVisible=-1)))";
[2]616                        $justthese = array("ou");
617                        $sr = ldap_list($this->ds, $this->ldap_context, $filter, $justthese);
618                        $info = ldap_get_entries($this->ds, $sr);
[387]619
[3530]620
621                        if($info["count"] == 0)
[2]622                        {
[3530]623                            $organizations[0]['ou'] = $this->ldap_context;
624                            $organizations[0]['dn'] = $this->ldap_context;
[2]625                        }
[3530]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                        }
[2]633                        ldap_close($this->ds);
[387]634                        sort($organizations);
[2]635                }
636                return $organizations;
637        }
[925]638        //Busca usuarios de um contexto e ja retorna as options do select - usado por template serpro;
639        function search_users($params)
[4929]640        {
641                $owner = $_SESSION['phpgw_info']['expressomail']['user']['owner'];
[4457]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']);
[4929]646
[5134]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
[4457]652                        $group_options = array();
653                        $user_options  = array();
[5134]654                        $shared_options = array();
655
[4457]656                        foreach($groups as $group)
[4929]657                {
[5134]658                                $group_options[] = '"'.$group['gidnumber'].'U'.'":"'.$group['cn'].' ('.$group['uid'].')"';
[925]659                }
[4457]660                foreach($users as $user)
[4929]661                    {
[5134]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'].')"';
[4929]669                    }
670       
[4457]671                        $user_options = '{'.implode( ',', $user_options ).'}';
672                        $group_options = '{'.implode( ',', $group_options ).'}';
[5134]673                        $shared_options = '{'.implode( ',', $shared_options ).'}';
[4929]674
[5134]675                 return '{"users":'.$user_options.',"groups":'.$group_options.',"shared":'. $shared_options .'}';
[4929]676        }
[925]677
[2]678        function catalogsearch($params)
[387]679        {
[4457]680                $ldapService = ServiceLocator::getService('ldap');
681                $filter =  $ldapService->getSearchFilter($params['search_for'],array('u','l','s'));
682               
[325]683                $catalog = $params['catalog'];
[2]684                $error = False;
[4929]685
[4457]686                //if($_SESSION['phpgw_info']['user']['preferences']['expressoMail']['extended_info'])
687                    //$extendedinfo=true;
688                //else
689                    //$extendedinfo=false;
[387]690
[3388]691
[381]692                $this->ldapConnect(true,$catalog);
[387]693
694                $params['organization'] == 'all' ? $user_context = $this->ldap_context :$user_context = $this->branch."=".$params['organization'].",".$this->ldap_context;
695
696                if ($this->ds) {
[4929]697                                $justthese = array("cn", "mail", "phpgwaccounttype", "phpgwAccountVisible", "employeeNumber", "ou");
[4457]698                        $sr=@ldap_search($this->ds, $user_context, $filter, $justthese, 0, $ldapService->limit+1);
[4929]699
[342]700                        if(!$sr)
701                                return null;
[2]702                        $count_entries = ldap_count_entries($this->ds,$sr);
[4457]703                        if ($count_entries > $ldapService->limit){
[2]704                                $info = null;
[387]705                                $error = True;
[2]706                        }
707                        else
[387]708                                $info = ldap_get_entries($this->ds, $sr);
709
710                        ldap_close($this->ds);
711
[2]712                        $u_tmp = array();
713                        $g_tmp = array();
[387]714
[2]715                        for ($i=0; $i<$info["count"]; $i++){
[325]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];
[387]719                                if((!$catalog==0)||(strtoupper($info[$i]["phpgwaccounttype"][0]) == 'L') && ($info[$i]["phpgwaccountvisible"][0] != '-1'))
[325]720                                        $g_tmp[$info[$i]["mail"][0]] = utf8_decode($info[$i]["cn"][0]);
[387]721                        }
722
[2]723                        natcasesort($u_tmp);
724                        natcasesort($g_tmp);
[387]725
[2]726                        $i = 0;
[387]727                        $users = array();
[325]728
[387]729                        foreach ($u_tmp as $mail => $cn){
730
[325]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
[2]736                        }
737                        unset($u_tmp);
[387]738
739                        $i = 0;
[2]740                        $groups = array();
[387]741
742                        foreach ($g_tmp as $mail => $cn){
[2]743                                $groups[$i++] = array("name" => $cn, "email" => $mail);
744                        }
745                        unset($g_tmp);
[387]746
[4457]747                        return  array('users' => $users, 'groups' => $groups, 'error' => $error,'maxResult' => $ldapService->limit);
[387]748                }else
[2]749                return null;
750        }
[387]751
[2]752        function get_emails_ldap(){
753
754                $result['mail']= array();
[387]755                $result['mailalter']= array();
[2]756                $user = $_SESSION['phpgw_info']['expressomail']['user']['account_lid'];
757                $this->ldapRootConnect(false);
758                if ($this->ds) {
[387]759                        $filter="uid=".$user;
[2]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);
[387]764
[2]765                        for ($i=0; $i<$ent["count"]; $i++){
766                                $result['mail'][] = $ent[$i]["mail"][0];
[387]767                                $result['mailalter'][] = $ent[$i]["mailalternateaddress"][0];
[2]768                        }
769                }
770                return $result;
771        }
[387]772
[342]773        //Busca usuarios de um contexto e ja retorna as options do select;
[2]774        function get_available_users($params)
[37]775    {
776        $this->ldapRootConnect();
[342]777        //Monta lista de Grupos e Usuarios
[37]778        $users = Array();
779        $groups = Array();
780        $user_context= $params['context'];
781        $owner = $_SESSION['phpgw_info']['expressomail']['user']['owner'];
[2]782
[37]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++)
[387]792                $groups[$uids=$info[$i]["gidnumber"][0]] = Array('name'    =>    $uids=$info[$i]["cn"][0], 'type'    =>    g);
[37]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);
[2]798
[37]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);
[387]808
[37]809        @asort($users);
[387]810        @reset($users);
[37]811        @asort($groups);
812        @reset($groups);
813        $user_options ='';
814        $group_options ='';
[2]815
[37]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
[342]829        //Busca usuarios de um contexto e ja retorna as options do select;
[2]830        function get_available_users2($params)
831        {
[4457]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']);
[4929]836
[4457]837                $entries = $ldapService->accountSearch($params['sentence'], array('cn', 'uid'), $params['context'], 'u', 'cn');
[4929]838
[4457]839                $options = array();
[4929]840
[4457]841                foreach ($entries as $value)
842                        $options[] = '"'.$value['uid'].'"'.':'.'"'.$value['cn'].'"';
[4929]843
[4457]844                return "{".implode(',',$options)."}";           
[4929]845                                }
[387]846
[2]847        function uid2cn($uid)
[387]848        {
[2]849                // do not follow the referral
850                $this->ldapRootConnect(false);
851                if ($this->ds)
852                {
[387]853                        $filter="(&(phpgwAccountType=u)(uid=$uid))";
[2]854                        $justthese = array("cn");
[344]855                        $sr=@ldap_search($this->ds, $this->ldap_context, $filter, $justthese);
856                        if(!$sr)
857                                return false;
[2]858                        $info = ldap_get_entries($this->ds, $sr);
[325]859                        return utf8_decode($info[0]["cn"][0]);
[2]860                }
861                return false;
862        }
[757]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        }
[387]879        function getSharedUsersFrom($params){
[2]880                $filter = '';
[1912]881                //Added to save if must save sent messages in shared folder
882                $acl_save_sent_in_shared = array();
883               
[371]884                if($params['uids']) {
[387]885                        $uids = explode(";",$params['uids']);
[1912]886                        $this->imap = new imap_functions();                     
[5864]887                        foreach($uids as $index => $uid){               
888                       
[387]889                                $params = array();
[1912]890                                //Added to save if user has create permission
891                                $acl_create_message = array();
[5864]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                                }
[1912]903                        }                       
[2]904                }
[1912]905               
[387]906                $this->ldapRootConnect(false);
[371]907                if ($this->ds) {
[1912]908                        $justthese = array("cn","mail","uid");
[371]909                        if($filter) {
[1912]910                                $filter="(&(|(phpgwAccountType=u)(phpgwAccountType=s))(|$filter))";
[371]911                                $sr             =       ldap_search($this->ds, $this->ldap_context, $filter, $justthese);
[387]912                                ldap_sort($this->ds,$sr,"cn");
913                                $info   =       ldap_get_entries($this->ds, $sr);
[1912]914                                $var = print_r($acl_save_sent_in_shared, true);                         
915                                for ($i = 0;$i < $info["count"]; $i++){
[371]916                                        $info[$i]['cn'][0] = utf8_decode($info[$i]['cn'][0]);
[1912]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                                }
[371]922                        }
[1912]923               
[371]924                        $info['myname'] = $_SESSION['phpgw_info']['expressomail']['user']['fullname'];
[387]925
[371]926                        //Find institucional_account.
927                        $filter="(&(phpgwAccountType=i)(mailForwardingAddress=".$_SESSION['phpgw_info']['expressomail']['user']['email']."))";
[387]928                        $sr     = ldap_search($this->ds, $this->ldap_context, $filter, $justthese);
[448]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]);
[1912]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];                                 
[448]943                                }
[371]944                        }
[448]945
946                        $_SESSION['phpgw_info']['expressomail']['user']['shared_mailboxes'] = $info;
[2]947                        return $info;
948                }
949        }
[27]950
[205]951        function getUserByEmail($params)
952        {
[3163]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)); 
[205]957                $filter="(&(phpgwAccountType=u)(mail=" . $params['email'] . "))";
958                $ldap_context = $_SESSION['phpgw_info']['expressomail']['ldap_server']['dn'];
[3388]959                if($_SESSION['phpgw_info']['user']['preferences']['expressoMail']['extended_info'])
960                    $extendedinfo=true;
961                else
962                    $extendedinfo=false;
[205]963
[3388]964                if($extendedinfo)
965                    $justthese = array("cn","uid","telephoneNumber","jpegPhoto","mobile","ou","employeeNumber");
966                else
[6139]967                    $justthese = array("cn","uid","telephoneNumber","jpegPhoto");
[3388]968
[27]969                // Follow the referral
[205]970                $ds = $this->ldapConnect2(true);
971                if ($ds)
[387]972                {
[342]973                        $sr=@ldap_search($ds, $ldap_context, $filter, $justthese);
[387]974
[205]975                        if (!$sr)
976                                return null;
[387]977
[205]978                        $entry = ldap_first_entry($ds, $sr);
[387]979
980                        if($entry) {
[381]981                                $obj =  array("cn" => utf8_decode(current(ldap_get_values($ds, $entry, "cn"))),
[205]982                                                  "email" => $params['email'],
983                                                  "uid" => ldap_get_values($ds, $entry, "uid"),
[27]984                                                  "type" => "global",
[205]985                                                  "mobile" =>  @ldap_get_values($ds, $entry, "mobile"),
[3388]986                                                  "telefone" =>  @ldap_get_values($ds, $entry, "telephonenumber"),
987                                                  "ou" =>  @ldap_get_values($ds, $entry, "ou"),
988                                                  "employeeNumber" =>  @ldap_get_values($ds, $entry, "employeeNumber")
[205]989                                        );
[27]990
[320]991                                $_SESSION['phpgw_info']['expressomail']['contact_photo'] = @ldap_get_values_len($ds, $entry, "jpegphoto");
[205]992                                ldap_close($ds);
[27]993                                return $obj;
[205]994                        }
[27]995                }
996                return null;
997        }
[1500]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        }
[5134]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        }
[5821]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        }       
[2]1199}
[108]1200?>
Note: See TracBrowser for help on using the repository browser.