]> git.mxchange.org Git - friendica.git/blob - mod/directory.php
Merge pull request #2932 from Hypolite/issue/missing-private-image-src
[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                         $itemurl= '';
103
104                         $itemurl = (($rr['addr'] != "") ? $rr['addr'] : $rr['profile_url']);
105
106                         $profile_link = 'profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']);
107
108                         $pdesc = (($rr['pdesc']) ? $rr['pdesc'] . '<br />' : '');
109
110                         $details = '';
111                         if(strlen($rr['locality']))
112                                 $details .= $rr['locality'];
113                         if(strlen($rr['region'])) {
114                                 if(strlen($rr['locality']))
115                                         $details .= ', ';
116                                 $details .= $rr['region'];
117                         }
118                         if(strlen($rr['country-name'])) {
119                                 if(strlen($details))
120                                         $details .= ', ';
121                                 $details .= $rr['country-name'];
122                         }
123 //                      if(strlen($rr['dob'])) {
124 //                              if(($years = age($rr['dob'],$rr['timezone'],'')) != 0)
125 //                                      $details .= '<br />' . t('Age: ') . $years ; 
126 //                      }
127 //                      if(strlen($rr['gender']))
128 //                              $details .= '<br />' . t('Gender: ') . $rr['gender'];
129
130                         $profile = $rr;
131
132                         if((x($profile,'address') == 1)
133                                 || (x($profile,'locality') == 1)
134                                 || (x($profile,'region') == 1)
135                                 || (x($profile,'postal-code') == 1)
136                                 || (x($profile,'country-name') == 1))
137                         $location = t('Location:');
138
139                         $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False);
140
141                         $marital = ((x($profile,'marital') == 1) ?  t('Status:') : False);
142
143                         $homepage = ((x($profile,'homepage') == 1) ?  t('Homepage:') : False);
144
145                         $about = ((x($profile,'about') == 1) ?  t('About:') : False);
146
147                         if($a->theme['template_engine'] === 'internal') {
148                                 $location_e = template_escape($location);
149                         }
150                         else {
151                                 $location_e = $location;
152                         }
153
154                         $photo_menu = array(
155                                 'profile' => array(t("View Profile"), zrl($profile_link))
156                         );
157
158                         $entry = array(
159                                 'id' => $rr['id'],
160                                 'url' => $profile_link,
161                                 'itemurl' => $itemurl,
162                                 'thumb' => proxy_url($rr[$photo], false, PROXY_SIZE_THUMB),
163                                 'img_hover' => $rr['name'],
164                                 'name' => $rr['name'],
165                                 'details' => $details,
166                                 'account_type' => account_type($rr),
167                                 'profile' => $profile,
168                                 'location' => $location_e,
169                                 'tags' => $rr['pub_keywords'],
170                                 'gender'   => $gender,
171                                 'pdesc' => $pdesc,
172                                 'marital'  => $marital,
173                                 'homepage' => $homepage,
174                                 'about' => $about,
175                                 'photo_menu' => $photo_menu,
176
177                         );
178
179                         $arr = array('contact' => $rr, 'entry' => $entry);
180
181                         call_hooks('directory_item', $arr);
182
183                         unset($profile);
184                         unset($location);
185
186                         if(! $arr['entry'])
187                                 continue;
188
189                         $entries[] = $arr['entry'];
190
191                 }
192
193                 $tpl = get_markup_template('directory_header.tpl');
194
195                 $o .= replace_macros($tpl, array(
196                         '$search' => $search,
197                         '$globaldir' => t('Global Directory'),
198                         '$gdirpath' => $gdirpath,
199                         '$desc' => t('Find on this site'),
200                         '$contacts' => $entries,
201                         '$finding' => t('Results for:'),
202                         '$findterm' => (strlen($search) ? $search : ""),
203                         '$title' => t('Site Directory'),
204                         '$submit' => t('Find'),
205                         '$paginate' => paginate($a),
206                 ));
207
208         }
209         else
210                 info( t("No entries \x28some entries may be hidden\x29.") . EOL);
211
212         return $o;
213 }