]> git.mxchange.org Git - friendica.git/blob - mod/contacts.php
Merge pull request #1681 from fabrixxm/issue-1629
[friendica.git] / mod / contacts.php
1 <?php
2
3 require_once('include/Contact.php');
4 require_once('include/socgraph.php');
5 require_once('include/contact_selectors.php');
6 require_once('include/Scrape.php');
7 require_once('mod/proxy.php');
8 require_once('include/Photo.php');
9
10 function contacts_init(&$a) {
11         if(! local_user())
12                 return;
13
14         $contact_id = 0;
15
16         if(($a->argc == 2) && intval($a->argv[1])) {
17                 $contact_id = intval($a->argv[1]);
18                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d and `id` = %d LIMIT 1",
19                         intval(local_user()),
20                         intval($contact_id)
21                 );
22                 if(! count($r)) {
23                         $contact_id = 0;
24                 }
25         }
26
27         require_once('include/group.php');
28         require_once('include/contact_widgets.php');
29
30         if(! x($a->page,'aside'))
31                 $a->page['aside'] = '';
32
33         if($contact_id) {
34                         $a->data['contact'] = $r[0];
35                         $vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"),array(
36                                 '$name' => $a->data['contact']['name'],
37                                 '$photo' => $a->data['contact']['photo'],
38                                 '$url' => ($a->data['contact']['network'] == NETWORK_DFRN) ? $a->get_baseurl()."/redir/".$a->data['contact']['id'] : $a->data['contact']['url']
39                         ));
40                         $follow_widget = '';
41         }
42         else {
43                 $vcard_widget = '';
44                 if (isset($_GET['add']))
45                         $follow_widget = follow_widget($_GET['add']);
46                 else
47                         $follow_widget = follow_widget();
48         }
49
50         if ($_GET['nets'] == "all")
51                 $_GET['nets'] = "";
52
53         $groups_widget .= group_side('contacts','group',false,0,$contact_id);
54         $findpeople_widget .= findpeople_widget();
55         $networks_widget .= networks_widget('contacts',$_GET['nets']);
56         $a->page['aside'] .= replace_macros(get_markup_template("contacts-widget-sidebar.tpl"),array(
57                 '$vcard_widget' => $vcard_widget,
58                 '$follow_widget' => $follow_widget,
59                 '$groups_widget' => $groups_widget,
60                 '$findpeople_widget' => $findpeople_widget,
61                 '$networks_widget' => $networks_widget
62         ));
63
64         $base = $a->get_baseurl();
65         $tpl = get_markup_template("contacts-head.tpl");
66         $a->page['htmlhead'] .= replace_macros($tpl,array(
67                 '$baseurl' => $a->get_baseurl(true),
68                 '$base' => $base
69         ));
70
71         $tpl = get_markup_template("contacts-end.tpl");
72         $a->page['end'] .= replace_macros($tpl,array(
73                 '$baseurl' => $a->get_baseurl(true),
74                 '$base' => $base
75         ));
76
77
78 }
79
80 function contacts_batch_actions(&$a){
81         $contacts_id = $_POST['contact_batch'];
82         if (!is_array($contacts_id)) return;
83
84         $orig_records = q("SELECT * FROM `contact` WHERE `id` IN (%s) AND `uid` = %d AND `self` = 0",
85                 implode(",", $contacts_id),
86                 intval(local_user())
87         );
88
89         $count_actions=0;
90         foreach($orig_records as $orig_record) {
91                 $contact_id = $orig_record['id'];
92                 if (x($_POST, 'contacts_batch_update')) {
93                         _contact_update($contact_id);
94                         $count_actions++;
95                 }
96                 if (x($_POST, 'contacts_batch_block')) {
97                         $r  = _contact_block($contact_id, $orig_record);
98                         if ($r) $count_actions++;
99                 }
100                 if (x($_POST, 'contacts_batch_ignore')) {
101                         $r = _contact_ignore($contact_id, $orig_record);
102                         if ($r) $count_actions++;
103                 }
104                 if (x($_POST, 'contacts_batch_archive')) {
105                         $r = _contact_archive($contact_id, $orig_record);
106                         if ($r) $count_actions++;
107                 }
108                 if (x($_POST, 'contacts_batch_drop')) {
109                         _contact_drop($contact_id, $orig_record);
110                         $count_actions++;
111                 }
112         }
113         if ($count_actions>0) {
114                 info ( sprintf( tt("%d contact edited.", "%d contacts edited", $count_actions), $count_actions) );
115         }
116
117         if(x($_SESSION,'return_url'))
118                 goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']);
119         else
120                 goaway($a->get_baseurl(true) . '/contacts');
121
122 }
123
124
125 function contacts_post(&$a) {
126
127         if(! local_user())
128                 return;
129
130         if ($a->argv[1]==="batch") {
131                 contacts_batch_actions($a);
132                 return;
133         }
134
135         $contact_id = intval($a->argv[1]);
136         if(! $contact_id)
137                 return;
138
139         $orig_record = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
140                 intval($contact_id),
141                 intval(local_user())
142         );
143
144         if(! count($orig_record)) {
145                 notice( t('Could not access contact record.') . EOL);
146                 goaway($a->get_baseurl(true) . '/contacts');
147                 return; // NOTREACHED
148         }
149
150         call_hooks('contact_edit_post', $_POST);
151
152         $profile_id = intval($_POST['profile-assign']);
153         if($profile_id) {
154                 $r = q("SELECT `id` FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
155                         intval($profile_id),
156                         intval(local_user())
157                 );
158                 if(! count($r)) {
159                         notice( t('Could not locate selected profile.') . EOL);
160                         return;
161                 }
162         }
163
164         $hidden = intval($_POST['hidden']);
165
166         $notify = intval($_POST['notify']);
167
168         $fetch_further_information = intval($_POST['fetch_further_information']);
169
170         $ffi_keyword_blacklist = fix_mce_lf(escape_tags(trim($_POST['ffi_keyword_blacklist'])));
171
172         $priority = intval($_POST['poll']);
173         if($priority > 5 || $priority < 0)
174                 $priority = 0;
175
176         $info = fix_mce_lf(escape_tags(trim($_POST['info'])));
177
178         $r = q("UPDATE `contact` SET `profile-id` = %d, `priority` = %d , `info` = '%s',
179                 `hidden` = %d, `notify_new_posts` = %d, `fetch_further_information` = %d,
180                 `ffi_keyword_blacklist` = '%s' WHERE `id` = %d AND `uid` = %d",
181                 intval($profile_id),
182                 intval($priority),
183                 dbesc($info),
184                 intval($hidden),
185                 intval($notify),
186                 intval($fetch_further_information),
187                 dbesc($ffi_keyword_blacklist),
188                 intval($contact_id),
189                 intval(local_user())
190         );
191         if($r)
192                 info( t('Contact updated.') . EOL);
193         else
194                 notice( t('Failed to update contact record.') . EOL);
195
196         $r = q("select * from contact where id = %d and uid = %d limit 1",
197                 intval($contact_id),
198                 intval(local_user())
199         );
200         if($r && count($r))
201                 $a->data['contact'] = $r[0];
202
203         return;
204
205 }
206
207 /*contact actions*/
208 function _contact_update($contact_id) {
209         // pull feed and consume it, which should subscribe to the hub.
210         proc_run('php',"include/poller.php","$contact_id");
211 }
212
213 function _contact_update_profile($contact_id) {
214         $r = q("SELECT `url`, `network` FROM `contact` WHERE `id` = %d", intval($contact_id));
215         if (!$r)
216                 return;
217
218         $data = probe_url($r[0]["url"]);
219
220         // "Feed" is mostly a sign of communication problems
221         if (($data["network"] == NETWORK_FEED) AND ($data["network"] != $r[0]["network"]))
222                 return;
223
224         $updatefields = array("name", "nick", "url", "addr", "batch", "notify", "poll", "request", "confirm",
225                                 "poco", "network", "alias", "pubkey");
226         $update = array();
227
228         foreach($updatefields AS $field)
229                 if (isset($data[$field]) AND ($data[$field] != ""))
230                         $update[$field] = $data[$field];
231
232         $update["nurl"] = normalise_link($data["url"]);
233
234         $query = "";
235
236         if (isset($data["priority"]) AND ($data["priority"] != 0))
237                 $query = "`priority` = ".intval($data["priority"]);
238
239         foreach($update AS $key => $value) {
240                 if ($query != "")
241                         $query .= ", ";
242
243                 $query .= "`".$key."` = '".dbesc($value)."'";
244         }
245
246         if ($query == "")
247                 return;
248
249         $r = q("UPDATE `contact` SET $query WHERE `id` = %d AND `uid` = %d",
250                 intval($contact_id),
251                 intval(local_user())
252         );
253
254         $photos = import_profile_photo($data['photo'], local_user(), $contact_id);
255
256         $r = q("UPDATE `contact` SET `photo` = '%s',
257                         `thumb` = '%s',
258                         `micro` = '%s',
259                         `name-date` = '%s',
260                         `uri-date` = '%s',
261                         `avatar-date` = '%s'
262                         WHERE `id` = %d",
263                         dbesc($photos[0]),
264                         dbesc($photos[1]),
265                         dbesc($photos[2]),
266                         dbesc(datetime_convert()),
267                         dbesc(datetime_convert()),
268                         dbesc(datetime_convert()),
269                         intval($contact_id)
270                 );
271
272 }
273
274 function _contact_block($contact_id, $orig_record) {
275         $blocked = (($orig_record['blocked']) ? 0 : 1);
276         $r = q("UPDATE `contact` SET `blocked` = %d WHERE `id` = %d AND `uid` = %d",
277                 intval($blocked),
278                 intval($contact_id),
279                 intval(local_user())
280         );
281         return $r;
282
283 }
284 function _contact_ignore($contact_id, $orig_record) {
285         $readonly = (($orig_record['readonly']) ? 0 : 1);
286         $r = q("UPDATE `contact` SET `readonly` = %d WHERE `id` = %d AND `uid` = %d",
287                 intval($readonly),
288                 intval($contact_id),
289                 intval(local_user())
290         );
291         return $r;
292 }
293 function _contact_archive($contact_id, $orig_record) {
294         $archived = (($orig_record['archive']) ? 0 : 1);
295         $r = q("UPDATE `contact` SET `archive` = %d WHERE `id` = %d AND `uid` = %d",
296                 intval($archived),
297                 intval($contact_id),
298                 intval(local_user())
299         );
300         if ($archived) {
301                 q("UPDATE `item` SET `private` = 2 WHERE `contact-id` = %d AND `uid` = %d", intval($contact_id), intval(local_user()));
302         }
303         return $r;
304 }
305 function _contact_drop($contact_id, $orig_record) {
306         require_once('include/Contact.php');
307         $a = get_app();
308
309         terminate_friendship($a->user,$a->contact,$orig_record);
310         contact_remove($orig_record['id']);
311 }
312
313
314 function contacts_content(&$a) {
315
316         $sort_type = 0;
317         $o = '';
318         nav_set_selected('contacts');
319
320
321         if(! local_user()) {
322                 notice( t('Permission denied.') . EOL);
323                 return;
324         }
325
326         if($a->argc == 3) {
327
328                 $contact_id = intval($a->argv[1]);
329                 if(! $contact_id)
330                         return;
331
332                 $cmd = $a->argv[2];
333
334                 $orig_record = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d AND `self` = 0 LIMIT 1",
335                         intval($contact_id),
336                         intval(local_user())
337                 );
338
339                 if(! count($orig_record)) {
340                         notice( t('Could not access contact record.') . EOL);
341                         goaway($a->get_baseurl(true) . '/contacts');
342                         return; // NOTREACHED
343                 }
344
345                 if($cmd === 'update') {
346                         _contact_update($contact_id);
347                         goaway($a->get_baseurl(true) . '/contacts/' . $contact_id);
348                         // NOTREACHED
349                 }
350
351                 if($cmd === 'updateprofile') {
352                         _contact_update_profile($contact_id);
353                         goaway($a->get_baseurl(true) . '/crepair/' . $contact_id);
354                         // NOTREACHED
355                 }
356
357                 if($cmd === 'block') {
358                         $r = _contact_block($contact_id, $orig_record[0]);
359                         if($r) {
360                                 $blocked = (($orig_record[0]['blocked']) ? 0 : 1);
361                                 info((($blocked) ? t('Contact has been blocked') : t('Contact has been unblocked')).EOL);
362                         }
363
364                         goaway($a->get_baseurl(true) . '/contacts/' . $contact_id);
365                         return; // NOTREACHED
366                 }
367
368                 if($cmd === 'ignore') {
369                         $r = _contact_ignore($contact_id, $orig_record[0]);
370                         if($r) {
371                                 $readonly = (($orig_record[0]['readonly']) ? 0 : 1);
372                                 info((($readonly) ? t('Contact has been ignored') : t('Contact has been unignored')).EOL);
373                         }
374
375                         goaway($a->get_baseurl(true) . '/contacts/' . $contact_id);
376                         return; // NOTREACHED
377                 }
378
379
380                 if($cmd === 'archive') {
381                         $r = _contact_archive($contact_id, $orig_record[0]);
382                         if($r) {
383                                 $archived = (($orig_record[0]['archive']) ? 0 : 1);
384                                 info((($archived) ? t('Contact has been archived') : t('Contact has been unarchived')).EOL);
385                         }
386
387                         goaway($a->get_baseurl(true) . '/contacts/' . $contact_id);
388                         return; // NOTREACHED
389                 }
390
391                 if($cmd === 'drop') {
392
393                         // Check if we should do HTML-based delete confirmation
394                         if($_REQUEST['confirm']) {
395                                 // <form> can't take arguments in its "action" parameter
396                                 // so add any arguments as hidden inputs
397                                 $query = explode_querystring($a->query_string);
398                                 $inputs = array();
399                                 foreach($query['args'] as $arg) {
400                                         if(strpos($arg, 'confirm=') === false) {
401                                                 $arg_parts = explode('=', $arg);
402                                                 $inputs[] = array('name' => $arg_parts[0], 'value' => $arg_parts[1]);
403                                         }
404                                 }
405
406                                 $a->page['aside'] = '';
407                                 
408                                 return replace_macros(get_markup_template('contact_drop_confirm.tpl'), array(
409                                         '$contact' =>  _contact_detail_for_template($orig_record[0]),
410                                         '$method' => 'get',
411                                         '$message' => t('Do you really want to delete this contact?'),
412                                         '$extra_inputs' => $inputs,
413                                         '$confirm' => t('Yes'),
414                                         '$confirm_url' => $query['base'],
415                                         '$confirm_name' => 'confirmed',
416                                         '$cancel' => t('Cancel'),
417                                 ));
418                         }
419                         // Now check how the user responded to the confirmation query
420                         if($_REQUEST['canceled']) {
421                                 if(x($_SESSION,'return_url'))
422                                         goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']);
423                                 else
424                                         goaway($a->get_baseurl(true) . '/contacts');
425                         }
426
427                         _contact_drop($contact_id, $orig_record[0]);
428                         info( t('Contact has been removed.') . EOL );
429                         if(x($_SESSION,'return_url'))
430                                 goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']);
431                         else
432                                 goaway($a->get_baseurl(true) . '/contacts');
433                         return; // NOTREACHED
434                 }
435         }
436
437
438
439         $_SESSION['return_url'] = $a->query_string;
440
441         if((x($a->data,'contact')) && (is_array($a->data['contact']))) {
442
443                 $contact_id = $a->data['contact']['id'];
444                 $contact = $a->data['contact'];
445
446                 $editselect = 'none';
447                 if( feature_enabled(local_user(),'richtext') )
448                         $editselect = 'exact';
449
450                 $a->page['htmlhead'] .= replace_macros(get_markup_template('contact_head.tpl'), array(
451                         '$baseurl' => $a->get_baseurl(true),
452                         '$editselect' => $editselect,
453                 ));
454                 $a->page['end'] .= replace_macros(get_markup_template('contact_end.tpl'), array(
455                         '$baseurl' => $a->get_baseurl(true),
456                         '$editselect' => $editselect,
457                 ));
458
459                 require_once('include/contact_selectors.php');
460
461                 $tpl = get_markup_template("contact_edit.tpl");
462
463                 switch($contact['rel']) {
464                         case CONTACT_IS_FRIEND:
465                                 $dir_icon = 'images/lrarrow.gif';
466                                 $relation_text = t('You are mutual friends with %s');
467                                 break;
468                         case CONTACT_IS_FOLLOWER;
469                                 $dir_icon = 'images/larrow.gif';
470                                 $relation_text = t('You are sharing with %s');
471                                 break;
472
473                         case CONTACT_IS_SHARING;
474                                 $dir_icon = 'images/rarrow.gif';
475                                 $relation_text = t('%s is sharing with you');
476                                 break;
477                         default:
478                                 break;
479                 }
480
481                 if(!in_array($contact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA)))
482                                 $relation_text = "";
483
484                 $relation_text = sprintf($relation_text,$contact['name']);
485
486                 if(($contact['network'] === NETWORK_DFRN) && ($contact['rel'])) {
487                         $url = "redir/{$contact['id']}";
488                         $sparkle = ' class="sparkle" ';
489                 }
490                 else {
491                         $url = $contact['url'];
492                         $sparkle = '';
493                 }
494
495                 $insecure = t('Private communications are not available for this contact.');
496
497                 $last_update = (($contact['last-update'] == '0000-00-00 00:00:00')
498                                 ? t('Never')
499                                 : datetime_convert('UTC',date_default_timezone_get(),$contact['last-update'],'D, j M Y, g:i A'));
500
501                 if($contact['last-update'] !== '0000-00-00 00:00:00')
502                         $last_update .= ' ' . (($contact['last-update'] <= $contact['success_update']) ? t("\x28Update was successful\x29") : t("\x28Update was not successful\x29"));
503
504                 $lblsuggest = (($contact['network'] === NETWORK_DFRN) ? t('Suggest friends') : '');
505
506                 $poll_enabled = in_array($contact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_FEED, NETWORK_MAIL, NETWORK_MAIL2));
507
508                 $nettype = sprintf( t('Network type: %s'),network_to_name($contact['network']));
509
510                 $common = count_common_friends(local_user(),$contact['id']);
511                 $common_text = (($common) ? sprintf( tt('%d contact in common','%d contacts in common', $common),$common) : '');
512
513                 $polling = (($contact['network'] === NETWORK_MAIL | $contact['network'] === NETWORK_FEED) ? 'polling' : '');
514
515                 $x = count_all_friends(local_user(), $contact['id']);
516                 $all_friends = (($x) ? t('View all contacts') : '');
517
518                 // tabs
519                 $tabs = array(
520                         array(
521                                 'label' => (($contact['blocked']) ? t('Unblock') : t('Block') ),
522                                 'url'   => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/block',
523                                 'sel'   => '',
524                                 'title' => t('Toggle Blocked status'),
525                         ),
526                         array(
527                                 'label' => (($contact['readonly']) ? t('Unignore') : t('Ignore') ),
528                                 'url'   => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/ignore',
529                                 'sel'   => '',
530                                 'title' => t('Toggle Ignored status'),
531                         ),
532
533                         array(
534                                 'label' => (($contact['archive']) ? t('Unarchive') : t('Archive') ),
535                                 'url'   => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/archive',
536                                 'sel'   => '',
537                                 'title' => t('Toggle Archive status'),
538                         ),
539                         array(
540                                 'label' => t('Repair'),
541                                 'url'   => $a->get_baseurl(true) . '/crepair/' . $contact_id,
542                                 'sel'   => '',
543                                 'title' => t('Advanced Contact Settings'),
544                         )
545                 );
546                 $tab_tpl = get_markup_template('common_tabs.tpl');
547                 $tab_str = replace_macros($tab_tpl, array('$tabs' => $tabs));
548
549                 $lost_contact = (($contact['archive'] && $contact['term-date'] != '0000-00-00 00:00:00' && $contact['term-date'] < datetime_convert('','','now')) ? t('Communications lost with this contact!') : '');
550
551                 if ($contact['network'] == NETWORK_FEED)
552                         $fetch_further_information = array('fetch_further_information', t('Fetch further information for feeds'), $contact['fetch_further_information'], t('Fetch further information for feeds'),
553                                                                         array('0'=>t('Disabled'), '1'=>t('Fetch information'), '2'=>t('Fetch information and keywords')));
554
555                 if (in_array($contact['network'], array(NETWORK_FEED, NETWORK_MAIL, NETWORK_MAIL2)))
556                         $poll_interval = contact_poll_interval($contact['priority'],(! $poll_enabled));
557
558                 if ($contact['network'] == NETWORK_DFRN)
559                         $profile_select = contact_profile_assign($contact['profile-id'],(($contact['network'] !== NETWORK_DFRN) ? true : false));
560
561                 $o .= replace_macros($tpl, array(
562                         '$header' => t('Contact Editor'),
563                         '$tab_str' => $tab_str,
564                         '$submit' => t('Submit'),
565                         '$lbl_vis1' => t('Profile Visibility'),
566                         '$lbl_vis2' => sprintf( t('Please choose the profile you would like to display to %s when viewing your profile securely.'), $contact['name']),
567                         '$lbl_info1' => t('Contact Information / Notes'),
568                         '$infedit' => t('Edit contact notes'),
569                         '$common_text' => $common_text,
570                         '$common_link' => $a->get_baseurl(true) . '/common/loc/' . local_user() . '/' . $contact['id'],
571                         '$all_friends' => $all_friends,
572                         '$relation_text' => $relation_text,
573                         '$visit' => sprintf( t('Visit %s\'s profile [%s]'),$contact['name'],$contact['url']),
574                         '$blockunblock' => t('Block/Unblock contact'),
575                         '$ignorecont' => t('Ignore contact'),
576                         '$lblcrepair' => t("Repair URL settings"),
577                         '$lblrecent' => t('View conversations'),
578                         '$lblsuggest' => $lblsuggest,
579                         '$delete' => t('Delete contact'),
580                         '$nettype' => $nettype,
581                         '$poll_interval' => $poll_interval,
582                         '$poll_enabled' => $poll_enabled,
583                         '$lastupdtext' => t('Last update:'),
584                         '$lost_contact' => $lost_contact,
585                         '$updpub' => t('Update public posts'),
586                         '$last_update' => $last_update,
587                         '$udnow' => t('Update now'),
588                         '$profile_select' => $profile_select,
589                         '$contact_id' => $contact['id'],
590                         '$block_text' => (($contact['blocked']) ? t('Unblock') : t('Block') ),
591                         '$ignore_text' => (($contact['readonly']) ? t('Unignore') : t('Ignore') ),
592                         '$insecure' => (($contact['network'] !== NETWORK_DFRN && $contact['network'] !== NETWORK_MAIL && $contact['network'] !== NETWORK_FACEBOOK && $contact['network'] !== NETWORK_DIASPORA) ? $insecure : ''),
593                         '$info' => $contact['info'],
594                         '$blocked' => (($contact['blocked']) ? t('Currently blocked') : ''),
595                         '$ignored' => (($contact['readonly']) ? t('Currently ignored') : ''),
596                         '$archived' => (($contact['archive']) ? t('Currently archived') : ''),
597                         '$hidden' => array('hidden', t('Hide this contact from others'), ($contact['hidden'] == 1), t('Replies/likes to your public posts <strong>may</strong> still be visible')),
598                         '$notify' => array('notify', t('Notification for new posts'), ($contact['notify_new_posts'] == 1), t('Send a notification of every new post of this contact')),
599                         '$fetch_further_information' => $fetch_further_information,
600                         '$ffi_keyword_blacklist' => $contact['ffi_keyword_blacklist'],
601                         '$ffi_keyword_blacklist' => array('ffi_keyword_blacklist', t('Blacklisted keywords'), $contact['ffi_keyword_blacklist'], t('Comma separated list of keywords that should not be converted to hashtags, when "Fetch information and keywords" is selected')),
602                         '$photo' => $contact['photo'],
603                         '$name' => $contact['name'],
604                         '$dir_icon' => $dir_icon,
605                         '$alt_text' => $alt_text,
606                         '$sparkle' => $sparkle,
607                         '$url' => $url,
608
609                 ));
610
611                 $arr = array('contact' => $contact,'output' => $o);
612
613                 call_hooks('contact_edit', $arr);
614
615                 return $arr['output'];
616
617         }
618
619         $blocked = false;
620         $hidden = false;
621         $ignored = false;
622         $all = false;
623
624         if(($a->argc == 2) && ($a->argv[1] === 'all')) {
625                 $sql_extra = '';
626                 $all = true;
627         }
628         elseif(($a->argc == 2) && ($a->argv[1] === 'blocked')) {
629                 $sql_extra = " AND `blocked` = 1 ";
630                 $blocked = true;
631         }
632         elseif(($a->argc == 2) && ($a->argv[1] === 'hidden')) {
633                 $sql_extra = " AND `hidden` = 1 ";
634                 $hidden = true;
635         }
636         elseif(($a->argc == 2) && ($a->argv[1] === 'ignored')) {
637                 $sql_extra = " AND `readonly` = 1 ";
638                 $ignored = true;
639         }
640         elseif(($a->argc == 2) && ($a->argv[1] === 'archived')) {
641                 $sql_extra = " AND `archive` = 1 ";
642                 $archived = true;
643         }
644         else
645                 $sql_extra = " AND `blocked` = 0 ";
646
647         $search = ((x($_GET,'search')) ? notags(trim($_GET['search'])) : '');
648         $nets = ((x($_GET,'nets')) ? notags(trim($_GET['nets'])) : '');
649
650         $tabs = array(
651                 array(
652                         'label' => t('Suggestions'),
653                         'url'   => $a->get_baseurl(true) . '/suggest', 
654                         'sel'   => '',
655                         'title' => t('Suggest potential friends'),
656                 ),
657                 array(
658                         'label' => t('All Contacts'),
659                         'url'   => $a->get_baseurl(true) . '/contacts/all', 
660                         'sel'   => ($all) ? 'active' : '',
661                         'title' => t('Show all contacts'),
662                 ),
663                 array(
664                         'label' => t('Unblocked'),
665                         'url'   => $a->get_baseurl(true) . '/contacts',
666                         'sel'   => ((! $all) && (! $blocked) && (! $hidden) && (! $search) && (! $nets) && (! $ignored) && (! $archived)) ? 'active' : '',
667                         'title' => t('Only show unblocked contacts'),
668                 ),
669
670                 array(
671                         'label' => t('Blocked'),
672                         'url'   => $a->get_baseurl(true) . '/contacts/blocked',
673                         'sel'   => ($blocked) ? 'active' : '',
674                         'title' => t('Only show blocked contacts'),
675                 ),
676
677                 array(
678                         'label' => t('Ignored'),
679                         'url'   => $a->get_baseurl(true) . '/contacts/ignored',
680                         'sel'   => ($ignored) ? 'active' : '',
681                         'title' => t('Only show ignored contacts'),
682                 ),
683
684                 array(
685                         'label' => t('Archived'),
686                         'url'   => $a->get_baseurl(true) . '/contacts/archived',
687                         'sel'   => ($archived) ? 'active' : '',
688                         'title' => t('Only show archived contacts'),
689                 ),
690
691                 array(
692                         'label' => t('Hidden'),
693                         'url'   => $a->get_baseurl(true) . '/contacts/hidden',
694                         'sel'   => ($hidden) ? 'active' : '',
695                         'title' => t('Only show hidden contacts'),
696                 ),
697
698         );
699
700         $tab_tpl = get_markup_template('common_tabs.tpl');
701         $t = replace_macros($tab_tpl, array('$tabs'=>$tabs));
702
703
704
705         $searching = false;
706         if($search) {
707                 $search_hdr = $search;
708                 $search_txt = dbesc(protect_sprintf(preg_quote($search)));
709                 $searching = true;
710         }
711         $sql_extra .= (($searching) ? " AND (name REGEXP '$search_txt' OR url REGEXP '$search_txt'  OR nick REGEXP '$search_txt') " : "");
712
713         if($nets)
714                 $sql_extra .= sprintf(" AND network = '%s' ", dbesc($nets));
715
716         $sql_extra2 = ((($sort_type > 0) && ($sort_type <= CONTACT_IS_FRIEND)) ? sprintf(" AND `rel` = %d ",intval($sort_type)) : '');
717
718
719         $r = q("SELECT COUNT(*) AS `total` FROM `contact`
720                 WHERE `uid` = %d AND `self` = 0 AND `pending` = 0 $sql_extra $sql_extra2 ",
721                 intval($_SESSION['uid']));
722         if(count($r)) {
723                 $a->set_pager_total($r[0]['total']);
724                 $total = $r[0]['total'];
725         }
726
727
728         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `pending` = 0 $sql_extra $sql_extra2 ORDER BY `name` ASC LIMIT %d , %d ",
729                 intval($_SESSION['uid']),
730                 intval($a->pager['start']),
731                 intval($a->pager['itemspage'])
732         );
733
734         $contacts = array();
735
736         if(count($r)) {
737                 foreach($r as $rr) {
738                         $contacts[] = _contact_detail_for_template($rr);
739                 }
740         }
741
742         $tpl = get_markup_template("contacts-template.tpl");
743         $o .= replace_macros($tpl, array(
744                 '$baseurl' => $a->get_baseurl(),
745                 '$header' => t('Contacts') . (($nets) ? ' - ' . network_to_name($nets) : ''),
746                 '$tabs' => $t,
747                 '$total' => $total,
748                 '$search' => $search_hdr,
749                 '$desc' => t('Search your contacts'),
750                 '$finding' => (($searching) ? t('Finding: ') . "'" . $search . "'" : ""),
751                 '$submit' => t('Find'),
752                 '$cmd' => $a->cmd,
753                 '$contacts' => $contacts,
754                 '$contact_drop_confirm' => t('Do you really want to delete this contact?'),
755                 '$batch_actions' => array(
756                         'contacts_batch_update' => t('Update'),
757                         'contacts_batch_block' => t('Block')."/".t("Unblock"),
758                         "contacts_batch_ignore" => t('Ignore')."/".t("Unignore"),
759                         "contacts_batch_archive" => t('Archive')."/".t("Unarchive"),
760                         "contacts_batch_drop" => t('Delete'),
761                 ),
762                 '$paginate' => paginate($a),
763
764         ));
765
766         return $o;
767 }
768
769 function _contact_detail_for_template($rr){
770         switch($rr['rel']) {
771                 case CONTACT_IS_FRIEND:
772                         $dir_icon = 'images/lrarrow.gif';
773                         $alt_text = t('Mutual Friendship');
774                         break;
775                 case  CONTACT_IS_FOLLOWER;
776                         $dir_icon = 'images/larrow.gif';
777                         $alt_text = t('is a fan of yours');
778                         break;
779                 case CONTACT_IS_SHARING;
780                         $dir_icon = 'images/rarrow.gif';
781                         $alt_text = t('you are a fan of');
782                         break;
783                 default:
784                         break;
785         }
786         if(($rr['network'] === NETWORK_DFRN) && ($rr['rel'])) {
787                 $url = "redir/{$rr['id']}";
788                 $sparkle = ' class="sparkle" ';
789         }
790         else {
791                 $url = $rr['url'];
792                 $sparkle = '';
793         }
794         
795         
796         return array(
797                 'img_hover' => sprintf( t('Visit %s\'s profile [%s]'),$rr['name'],$rr['url']),
798                 'edit_hover' => t('Edit contact'),
799                 'photo_menu' => contact_photo_menu($rr),
800                 'id' => $rr['id'],
801                 'alt_text' => $alt_text,
802                 'dir_icon' => $dir_icon,
803                 'thumb' => proxy_url($rr['thumb']),
804                 'name' => $rr['name'],
805                 'username' => $rr['name'],
806                 'sparkle' => $sparkle,
807                 'itemurl' => $rr['url'],
808                 'url' => $url,
809                 'network' => network_to_name($rr['network']),
810         );
811         
812 }