]> git.sur5r.net Git - contagged/blob - index.php
tagging
[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(); //FIXME not needed anymore!?
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 = ldap_filterescape($_REQUEST['filter']);
89     $search = ldap_filterescape($_REQUEST['search']);
90     $org    = ldap_filterescape($_REQUEST['org']);
91     $marker = ldap_filterescape($_REQUEST['marker']);
92     $categories = ldap_filterescape($_REQUEST['categories']);
93     $_SESSION[ldapab][filter] = $_REQUEST['filter'];
94     if(empty($filter)) $filter='a';
95
96     if(!empty($marker)){
97       $ldapfilter = '(&(objectClass=contactPerson)';
98       $marker = explode(',',$marker);
99       foreach($marker as $m){
100         $m = trim($m);
101         $ldapfilter .= "(marker=$m)";
102       }
103       $ldapfilter .= ')';
104     }elseif(!empty($categories)){
105       $ldapfilter = "(&(objectClass=OXUserObject)(OXUserCategories=$categories))";
106     }elseif(!empty($search)){
107       $search = trim($search);
108       $words=preg_split('/\s+/',$search);
109       $filter='';
110       foreach($words as $word){
111         $filter .= "(|(|(sn=*$word*)(givenName=*$word*))(o=*$word*))";
112       }
113       $ldapfilter = "(&(objectClass=inetOrgPerson)$filter)";
114     }elseif(!empty($org)){
115       $ldapfilter = "(&(objectClass=inetOrgPerson)(o=$org))";
116     }elseif($filter=='other'){
117       $other='';
118       for ($i=ord('a');$i<=ord('z');$i++){
119         $other .= '(!(sn='.chr($i).'*))';
120       }
121       $ldapfilter = "(&(objectClass=inetOrgPerson)$other)";
122     }elseif($filter=='*'){
123       $ldapfilter = "(objectClass=inetOrgPerson)";
124     }else{
125       $ldapfilter = "(&(objectClass=inetOrgPerson)(sn=$filter*))";
126     }
127     return $ldapfilter;
128   }
129 ?>