]> git.sur5r.net Git - contagged/blob - index.php
UTF-8 in interface
[contagged] / index.php
1 <?
2   require_once('init.php');
3   ldap_login();
4
5   //prepare filter
6   $ldapfilter = _makeldapfilter();
7
8   //check public addressbook
9   $sr = ldap_list($LDAP_CON,$conf[publicbook],$ldapfilter);
10   $result1 = ldap_get_binentries($LDAP_CON, $sr);
11   //check users private addressbook
12   if(!empty($_SESSION[ldapab][binddn])){
13     $sr = @ldap_list($LDAP_CON,
14                     $conf[privatebook].','.$_SESSION[ldapab][binddn],
15                     $ldapfilter);
16     $result2 = ldap_get_binentries($LDAP_CON, $sr);
17   }
18   
19   $result = array_merge($result1,$result2);
20
21   // select entry template
22   if($_REQUEST['export'] == 'csv'){
23     $entrytpl = 'export_list_csv_entry.tpl';
24   }else{
25     $entrytpl = 'list_entry.tpl';
26   }
27
28   $list = '';
29   if(count($result)==1 && $_REQUEST[search]){
30     //only one result on a search -> display page
31     header("Location: entry.php?dn=".$result[0][dn]);
32     exit;
33   }elseif(count($result)){
34     $keys = array_keys($result);
35     uksort($keys,"_namesort");
36     foreach($keys as $key){
37       tpl_entry($result[$key]);
38       $list .= $smarty->fetch($entrytpl);
39     }
40   }
41
42   //prepare templates
43   tpl_std();
44   tpl_markers();
45   tpl_categories();
46   tpl_timezone();
47   tpl_country();
48   $smarty->assign('list',$list);
49   $smarty->assign('filter',$_REQUEST['filter']);
50   $smarty->assign('marker',$_REQUEST['marker']);
51   $smarty->assign('search',$_REQUEST['search']);
52   //display templates
53   if($_REQUEST['export'] == 'csv'){
54     header("Content-Type: text/csv");
55     header('Content-Disposition: Attachement; filename="ldapabexport.csv"');
56     $smarty->display('export_list_csv.tpl');
57   }else{
58     //save location in session
59     $_SESSION[ldapab][lastlocation]=$_SERVER["REQUEST_URI"];
60
61     header('Content-Type: text/html; charset=utf-8');
62     $smarty->display('header.tpl');
63     $smarty->display('list_filter.tpl');
64     $smarty->display('list.tpl');
65     $smarty->display('footer.tpl');
66   }
67
68   //------- functions -----------//
69
70   /**
71    * callback function to sort entries by name
72    * uses global $result
73    */
74   function _namesort($a,$b){
75     global $result;
76     $x = $result[$a][sn][0].$result[$a][givenName][0];
77     $y = $result[$b][sn][0].$result[$b][givenName][0];
78     return(strcasecmp($x,$y));
79   }
80
81
82   /**
83    * Creates an LDAP filter from given request variables search or filter
84    */
85   function _makeldapfilter(){
86     //handle given filter
87
88     $filter = $_REQUEST['filter'];
89     $search = $_REQUEST['search'];
90     $org    = $_REQUEST['org'];
91     $marker = $_REQUEST['marker'];
92     $categories = $_REQUEST['categories'];
93     $_SESSION[ldapab][filter] = $filter;
94     if(empty($filter)) $filter='a';
95
96     if(!empty($marker)){
97       $ldapfilter = "(&(objectClass=contactPerson)(marker=$marker))";
98     }elseif(!empty($categories)){
99       $ldapfilter = "(&(objectClass=OXUserObject)(OXUserCategories=$categories))";
100     }elseif(!empty($search)){
101       $search = trim($search);
102       $words=preg_split('/\s+/',$search);
103       $filter='';
104       foreach($words as $word){
105         $filter .= "(|(|(sn=*$word*)(givenName=*$word*))(o=*$word*))";
106       }
107       $ldapfilter = "(&(objectClass=inetOrgPerson)$filter)";
108     }elseif(!empty($org)){
109       $ldapfilter = "(&(objectClass=inetOrgPerson)(o=$org))";
110     }elseif($filter=='other'){
111       $other='';
112       for ($i=ord('a');$i<=ord('z');$i++){
113         $other .= '(!(sn='.chr($i).'*))';
114       }
115       $ldapfilter = "(&(objectClass=inetOrgPerson)$other)";
116     }elseif($filter=='*'){
117       $ldapfilter = "(objectClass=inetOrgPerson)";
118     }else{
119       $ldapfilter = "(&(objectClass=inetOrgPerson)(sn=$filter*))";
120     }
121     return $ldapfilter;
122   }
123 ?>