]> git.mxchange.org Git - friendica.git/blob - mod/directory.php
Merge pull request #2172 from tobiasd/20151212-frosticons
[friendica.git] / mod / directory.php
1 <?php
2
3 function directory_init(&$a) {
4         $a->set_pager_itemspage(60);
5
6         if(local_user()) {
7                 require_once('include/contact_widgets.php');
8
9                 $a->page['aside'] .= findpeople_widget();
10
11                 $a->page['aside'] .= follow_widget();
12
13         }
14         else {
15                 unset($_SESSION['theme']);
16                 unset($_SESSION['mobile-theme']);
17         }
18
19
20 }
21
22
23 function directory_post(&$a) {
24         if(x($_POST,'search'))
25                 $a->data['search'] = $_POST['search'];
26 }
27
28
29
30 function directory_content(&$a) {
31         global $db;
32
33         require_once("mod/proxy.php");
34
35         if((get_config('system','block_public')) && (! local_user()) && (! remote_user()) || 
36                 (get_config('system','block_local_dir')) && (! local_user()) && (! remote_user())) {
37                 notice( t('Public access denied.') . EOL);
38                 return;
39         }
40
41         $o = '';
42         nav_set_selected('directory');
43
44         if(x($a->data,'search'))
45                 $search = notags(trim($a->data['search']));
46         else
47                 $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
48
49         $gdirpath = '';
50         $dirurl = get_config('system','directory');
51         if(strlen($dirurl)) {
52                 $gdirpath = zrl($dirurl,true);
53         }
54
55         if($search) {
56                 $search = dbesc($search);
57
58                 $sql_extra = " AND ((`profile`.`name` LIKE '%$search%') OR
59                                 (`user`.`nickname` LIKE '%$search%') OR
60                                 (`profile`.`pdesc` LIKE '%$search%') OR
61                                 (`profile`.`locality` LIKE '%$search%') OR
62                                 (`profile`.`region` LIKE '%$search%') OR
63                                 (`profile`.`country-name` LIKE '%$search%') OR
64                                 (`profile`.`gender` LIKE '%$search%') OR
65                                 (`profile`.`marital` LIKE '%$search%') OR
66                                 (`profile`.`sexual` LIKE '%$search%') OR
67                                 (`profile`.`about` LIKE '%$search%') OR
68                                 (`profile`.`romance` LIKE '%$search%') OR
69                                 (`profile`.`work` LIKE '%$search%') OR
70                                 (`profile`.`education` LIKE '%$search%') OR
71                                 (`profile`.`pub_keywords` LIKE '%$search%') OR
72                                 (`profile`.`prv_keywords` LIKE '%$search%'))";
73         }
74
75         $publish = ((get_config('system','publish_all')) ? '' : " AND `publish` = 1 " );
76
77
78         $r = $db->q("SELECT COUNT(*) AS `total` FROM `profile`
79                         LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
80                         WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $sql_extra ");
81         if(count($r))
82                 $a->set_pager_total($r[0]['total']);
83
84         $order = " ORDER BY `name` ASC ";
85
86         $limit = intval($a->pager['start']).",".intval($a->pager['itemspage']);
87
88         $r = $db->q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`, `user`.`timezone` , `user`.`page-flags`,
89                         `contact`.`addr`, `contact`.`url` AS profile_url FROM `profile`
90                         LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid`
91                         LEFT JOIN `contact` ON `contact`.`uid` = `user`.`uid`
92                         WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 AND `contact`.`self` $sql_extra $order LIMIT ".$limit);
93         if(count($r)) {
94
95                 if(in_array('small', $a->argv))
96                         $photo = 'thumb';
97                 else
98                         $photo = 'photo';
99
100                 foreach($r as $rr) {
101
102                         $community = '';
103                         $itemurl= '';
104
105                         $itemurl = (($rr['addr'] != "") ? $rr['addr'] : $rr['profile_url']);
106
107                         $profile_link = z_root() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']);
108
109                         $pdesc = (($rr['pdesc']) ? $rr['pdesc'] . '<br />' : '');
110
111                         $details = '';
112                         if(strlen($rr['locality']))
113                                 $details .= $rr['locality'];
114                         if(strlen($rr['region'])) {
115                                 if(strlen($rr['locality']))
116                                         $details .= ', ';
117                                 $details .= $rr['region'];
118                         }
119                         if(strlen($rr['country-name'])) {
120                                 if(strlen($details))
121                                         $details .= ', ';
122                                 $details .= $rr['country-name'];
123                         }
124 //                      if(strlen($rr['dob'])) {
125 //                              if(($years = age($rr['dob'],$rr['timezone'],'')) != 0)
126 //                                      $details .= '<br />' . t('Age: ') . $years ; 
127 //                      }
128 //                      if(strlen($rr['gender']))
129 //                              $details .= '<br />' . t('Gender: ') . $rr['gender'];
130
131
132                         // show if account is a community account
133                         // ToDo the other should be also respected, but first we need a good translatiion
134                         // and systemwide consistency for displaying the page type
135                         if((intval($rr['page-flags']) == PAGE_COMMUNITY) OR (intval($rr['page-flags']) == PAGE_PRVGROUP))
136                                 $community = true;
137
138                         $profile = $rr;
139
140                         if((x($profile,'address') == 1)
141                                 || (x($profile,'locality') == 1)
142                                 || (x($profile,'region') == 1)
143                                 || (x($profile,'postal-code') == 1)
144                                 || (x($profile,'country-name') == 1))
145                         $location = t('Location:');
146
147                         $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False);
148
149                         $marital = ((x($profile,'marital') == 1) ?  t('Status:') : False);
150
151                         $homepage = ((x($profile,'homepage') == 1) ?  t('Homepage:') : False);
152
153                         $about = ((x($profile,'about') == 1) ?  t('About:') : False);
154
155                         if($a->theme['template_engine'] === 'internal') {
156                                 $location_e = template_escape($location);
157                         }
158                         else {
159                                 $location_e = $location;
160                         }
161                         
162                         $photo_menu = array(array(t("View Profile"), zrl($profile_link)));
163
164                         $entry = array(
165                                 'id' => $rr['id'],
166                                 'url' => $profile_link,
167                                 'itemurl' => $itemurl,
168                                 'thumb' => proxy_url($a->get_cached_avatar_image($rr[$photo]), false, PROXY_SIZE_THUMB),
169                                 'img_hover' => $rr['name'],
170                                 'name' => $rr['name'],
171                                 'details' => $details,
172                                 'account_type' => ($community ? t('Forum') : ''),
173                                 'profile' => $profile,
174                                 'location' => $location_e,
175                                 'tags' => $rr['pub_keywords'],
176                                 'gender'   => $gender,
177                                 'pdesc' => $pdesc,
178                                 'marital'  => $marital,
179                                 'homepage' => $homepage,
180                                 'about' => $about,
181                                 'photo_menu' => $photo_menu,
182
183                         );
184
185                         $arr = array('contact' => $rr, 'entry' => $entry);
186
187                         call_hooks('directory_item', $arr);
188
189                         unset($profile);
190                         unset($location);
191
192                         if(! $arr['entry'])
193                                 continue;
194
195                         $entries[] = $arr['entry'];
196
197                 }
198
199                 $tpl = get_markup_template('directory_header.tpl');
200
201                 $o .= replace_macros($tpl, array(
202                         '$search' => $search,
203                         '$globaldir' => t('Global Directory'),
204                         '$gdirpath' => $gdirpath,
205                         '$desc' => t('Find on this site'),
206                         '$contacts' => $entries,
207                         '$finding' => t('Finding:'),
208                         '$findterm' => (strlen($search) ? $search : ""),
209                         '$title' => t('Site Directory'),
210                         '$submit' => t('Find'),
211                         '$paginate' => paginate($a),
212                 ));
213
214         }
215         else
216                 info( t("No entries \x28some entries may be hidden\x29.") . EOL);
217
218         return $o;
219 }