]> git.mxchange.org Git - friendica.git/blob - mod/contacts.php
add micro profile photo
[friendica.git] / mod / contacts.php
1 <?php
2
3 require_once('include/Contact.php');
4
5 function contacts_init(&$a) {
6         require_once('include/group.php');
7         if(! x($a->page,'aside'))
8                 $a->page['aside'] = '';
9         $a->page['aside'] .= group_side();
10
11         if($a->config['register_policy'] != REGISTER_CLOSED)
12                 $a->page['aside'] .= '<div class="side-invite-link-wrapper" id="side-invite-link-wrapper" ><a href="invite" class="side-invite-link" id="side-invite-link">' . t("Invite Friends") . '</a></div>';
13
14         $tpl = load_view_file('view/follow.tpl');
15         $a->page['aside'] .= replace_macros($tpl,array(
16                 '$label' => t('Connect/Follow [profile address]'),
17                 '$hint' => t('Example: bob@example.com, http://example.com/barbara'),
18                 '$follow' => t('Follow')
19         ));
20
21 }
22
23 function contacts_post(&$a) {
24         
25         if(! local_user())
26                 return;
27
28         $contact_id = intval($a->argv[1]);
29         if(! $contact_id)
30                 return;
31
32         $orig_record = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
33                 intval($contact_id),
34                 intval(local_user())
35         );
36
37         if(! count($orig_record)) {
38                 notice( t('Could not access contact record.') . EOL);
39                 goaway($a->get_baseurl() . '/contacts');
40                 return; // NOTREACHED
41         }
42
43         $profile_id = intval($_POST['profile-assign']);
44         if($profile_id) {
45                 $r = q("SELECT `id` FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
46                         intval($profile_id),
47                         intval(local_user())
48                 );
49                 if(! count($r)) {
50                         notice( t('Could not locate selected profile.') . EOL);
51                         return;
52                 }
53         }
54
55
56         $priority = intval($_POST['priority']);
57         if($priority == (-1))
58                 
59         if($priority > 5 || $priority < 0)
60                 $priority = 0;
61
62         $rating = intval($_POST['reputation']);
63         if($rating > 5 || $rating < 0)
64                 $rating = 0;
65
66         $reason = notags(trim($_POST['reason']));
67
68         $r = q("UPDATE `contact` SET `profile-id` = %d, `priority` = %d , `rating` = %d, `reason` = '%s'
69                 WHERE `id` = %d AND `uid` = %d LIMIT 1",
70                 intval($profile_id),
71                 intval($priority),
72                 intval($rating),
73                 dbesc($reason),
74                 intval($contact_id),
75                 intval(local_user())
76         );
77         if($r)
78                 notice( t('Contact updated.') . EOL);
79         else
80                 notice( t('Failed to update contact record.') . EOL);
81         return;
82
83 }
84
85
86
87 function contacts_content(&$a) {
88
89         $sort_type = 0;
90         $o = '';
91         $o .= '<script> $(document).ready(function() { $(\'#nav-contacts-link\').addClass(\'nav-selected\'); });</script>';
92
93
94         if(! local_user()) {
95                 notice( t('Permission denied.') . EOL);
96                 return;
97         }
98
99         if($a->argc == 3) {
100
101                 $contact_id = intval($a->argv[1]);
102                 if(! $contact_id)
103                         return;
104
105                 $cmd = $a->argv[2];
106
107                 $orig_record = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
108                         intval($contact_id),
109                         intval(local_user())
110                 );
111
112                 if(! count($orig_record)) {
113                         notice( t('Could not access contact record.') . EOL);
114                         goaway($a->get_baseurl() . '/contacts');
115                         return; // NOTREACHED
116                 }
117
118
119                 if($cmd === 'block') {
120                         $blocked = (($orig_record[0]['blocked']) ? 0 : 1);
121                         $r = q("UPDATE `contact` SET `blocked` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
122                                         intval($blocked),
123                                         intval($contact_id),
124                                         intval(local_user())
125                         );
126                         if($r) {
127                                 notice( t('Contact has been ') . (($blocked) ? t('blocked') : t('unblocked')) . EOL );
128                         }
129                         goaway($a->get_baseurl() . '/contacts/' . $contact_id);
130                         return; // NOTREACHED
131                 }
132
133                 if($cmd === 'ignore') {
134                         $readonly = (($orig_record[0]['readonly']) ? 0 : 1);
135                         $r = q("UPDATE `contact` SET `readonly` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1",
136                                         intval($readonly),
137                                         intval($contact_id),
138                                         intval(local_user())
139                         );
140                         if($r) {
141                                 notice( t('Contact has been ') . (($readonly) ? t('ignored') : t('unignored')) . EOL );
142                         }
143                         goaway($a->get_baseurl() . '/contacts/' . $contact_id);
144                         return; // NOTREACHED
145                 }
146
147                 if($cmd === 'drop') {
148                         contact_remove($contact_id);
149                         notice( t('Contact has been removed.') . EOL );
150                         goaway($a->get_baseurl() . '/contacts');
151                         return; // NOTREACHED
152                 }
153         }
154
155         if(($a->argc == 2) && intval($a->argv[1])) {
156
157                 $contact_id = intval($a->argv[1]);
158                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d and `id` = %d LIMIT 1",
159                         intval(local_user()),
160                         intval($contact_id)
161                 );
162                 if(! count($r)) {
163                         notice( t('Contact not found.') . EOL);
164                         return;
165                 }
166
167                 $_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd;
168
169                 require_once('view/contact_selectors.php');
170
171                 $tpl = load_view_file("view/contact_edit.tpl");
172
173                 switch($r[0]['rel']) {
174                         case REL_BUD:
175                                 $dir_icon = 'images/lrarrow.gif';
176                                 $alt_text = t('Mutual Friendship');
177                                 break;
178                         case REL_VIP;
179                                 $dir_icon = 'images/larrow.gif';
180                                 $alt_text = t('is a fan of yours');
181                                 break;
182         
183                         case REL_FAN;
184                                 $dir_icon = 'images/rarrow.gif';
185                                 $alt_text = t('you are a fan of');
186                                 break;
187                         default:
188                                 break;
189                 }
190
191                 if(($r[0]['network'] === 'dfrn') && ($r[0]['rel'])) {
192                         $url = "redir/{$r[0]['id']}";
193                         $sparkle = ' class="sparkle" ';
194                 }
195                 else { 
196                         $url = $r[0]['url'];
197                         $sparkle = '';
198                 }
199
200                 $o .= replace_macros($tpl,array(
201                         '$poll_interval' => contact_poll_interval($r[0]['priority']),
202                         '$last_update' => (($r[0]['last-update'] == '0000-00-00 00:00:00') 
203                                 ? t('Never') 
204                                 : datetime_convert('UTC',date_default_timezone_get(),$r[0]['last-update'],'D, j M Y, g:i A')),
205                         '$profile_select' => contact_profile_assign($r[0]['profile-id'],(($r[0]['network'] !== 'dfrn') ? true : false)),
206                         '$contact_id' => $r[0]['id'],
207                         '$block_text' => (($r[0]['blocked']) ? t('Unblock this contact') : t('Block this contact') ),
208                         '$ignore_text' => (($r[0]['readonly']) ? t('Unignore this contact') : t('Ignore this contact') ),
209                         '$insecure' => (($r[0]['network'] === 'dfrn') ? '' : load_view_file('view/insecure_net.tpl')),
210                         '$blocked' => (($r[0]['blocked']) ? '<div id="block-message">' . t('Currently blocked') . '</div>' : ''),
211                         '$ignored' => (($r[0]['readonly']) ? '<div id="ignore-message">' . t('Currently ignored') . '</div>' : ''),
212                         '$rating' => contact_reputation($r[0]['rating']),
213                         '$reason' => $r[0]['reason'],
214                         '$groups' => '', // group_selector(),
215                         '$photo' => $r[0]['photo'],
216                         '$name' => $r[0]['name'],
217                         '$dir_icon' => $dir_icon,
218                         '$alt_text' => $alt_text,
219                         '$sparkle' => $sparkle,
220                         '$url' => $url
221
222                 ));
223
224                 return $o;
225
226         }
227
228
229         if(($a->argc == 2) && ($a->argv[1] === 'all'))
230                 $sql_extra = '';
231         else
232                 $sql_extra = " AND `blocked` = 0 ";
233
234         $search = ((x($_GET,'search')) ? notags(trim($_GET['search'])) : '');
235
236         $tpl = load_view_file("view/contacts-top.tpl");
237         $o .= replace_macros($tpl,array(
238                 '$hide_url' => ((strlen($sql_extra)) ? 'contacts/all' : 'contacts' ),
239                 '$hide_text' => ((strlen($sql_extra)) ? t('Show Blocked Connections') : t('Hide Blocked Connections')),
240                 '$search' => $search,
241                 '$finding' => (strlen($search) ? '<h4>' . t('Finding: ') . "'" . $search . "'" . '</h4>' : ""),
242                 '$submit' => t('Find'),
243                 '$cmd' => $a->cmd
244
245
246         )); 
247
248         if($search)
249                 $search = dbesc($search.'*');
250         $sql_extra .= ((strlen($search)) ? " AND MATCH `name` AGAINST ('$search' IN BOOLEAN MODE) " : "");
251
252         $sql_extra2 = ((($sort_type > 0) && ($sort_type <= REL_BUD)) ? sprintf(" AND `rel` = %d ",intval($sort_type)) : ''); 
253
254         
255         $r = q("SELECT COUNT(*) AS `total` FROM `contact` 
256                 WHERE `uid` = %d AND `pending` = 0 $sql_extra $sql_extra2 ",
257                 intval($_SESSION['uid']));
258         if(count($r))
259                 $a->set_pager_total($r[0]['total']);
260
261         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `pending` = 0 $sql_extra $sql_extra2 ORDER BY `name` ASC LIMIT %d , %d ",
262                 intval($_SESSION['uid']),
263                 intval($a->pager['start']),
264                 intval($a->pager['itemspage'])
265         );
266
267         if(count($r)) {
268
269                 $tpl = load_view_file("view/contact_template.tpl");
270
271                 foreach($r as $rr) {
272                         if($rr['self'])
273                                 continue;
274
275                         switch($rr['rel']) {
276                                 case REL_BUD:
277                                         $dir_icon = 'images/lrarrow.gif';
278                                         $alt_text = t('Mutual Friendship');
279                                         break;
280                                 case  REL_VIP;
281                                         $dir_icon = 'images/larrow.gif';
282                                         $alt_text = t('is a fan of yours');
283                                         break;
284                                 case REL_FAN;
285                                         $dir_icon = 'images/rarrow.gif';
286                                         $alt_text = t('you are a fan of');
287                                         break;
288                                 default:
289                                         break;
290                         }
291                         if(($rr['network'] === 'dfrn') && ($rr['rel'])) {
292                                 $url = "redir/{$rr['id']}";
293                                 $sparkle = ' class="sparkle" ';
294                         }
295                         else { 
296                                 $url = $rr['url'];
297                                 $sparkle = '';
298                         }
299
300
301                         $o .= replace_macros($tpl, array(
302                                 '$img_hover' => t('Visit ') . $rr['name'] . t('\'s profile'),
303                                 '$edit_hover' => t('Edit contact'),
304                                 '$id' => $rr['id'],
305                                 '$alt_text' => $alt_text,
306                                 '$dir_icon' => $dir_icon,
307                                 '$thumb' => $rr['thumb'], 
308                                 '$name' => $rr['name'],
309                                 '$sparkle' => $sparkle,
310                                 '$url' => $url
311                         ));
312                 }
313                 $o .= '<div id="contact-edit-end"></div>';
314
315         }
316         $o .= paginate($a);
317         return $o;
318 }