]> git.mxchange.org Git - friendica.git/blob - mod/contacts.php
add simple option for HTTPS in .htaccess
[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])) OR (($a->argc == 3) && intval($a->argv[1]) && ($a->argv[2] == "posts"))) {
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 ($_GET['nets'] == "all")
31         $_GET['nets'] = "";
32
33         if(! x($a->page,'aside'))
34                 $a->page['aside'] = '';
35
36         if($contact_id) {
37                         $a->data['contact'] = $r[0];
38
39                         if (($a->data['contact']['network'] != "") AND ($a->data['contact']['network'] != NETWORK_DFRN)) {
40                                 $networkname = format_network_name($a->data['contact']['network'],$a->data['contact']['url']);
41                         } else 
42                                 $networkname = '';
43
44                         $vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"),array(
45                                 '$name' => htmlentities($a->data['contact']['name']),
46                                 '$photo' => $a->data['contact']['photo'],
47                                 '$url' => ($a->data['contact']['network'] == NETWORK_DFRN) ? z_root()."/redir/".$a->data['contact']['id'] : $a->data['contact']['url'],
48                                 '$addr' => (($a->data['contact']['addr'] != "") ? ($a->data['contact']['addr']) : ""),
49                                 '$network_name' => $networkname,
50                                 '$network' => t('Network:'),
51                                 'account_type' => (($a->data['contact']['forum'] || $a->data['contact']['prv']) ? t('Forum') : '')
52                         ));
53                         $finpeople_widget = '';
54                         $follow_widget = '';
55                         $networks_widget = '';
56         }
57         else {
58                 $vcard_widget = '';
59                 $networks_widget .= networks_widget('contacts',$_GET['nets']);
60                 if (isset($_GET['add']))
61                         $follow_widget = follow_widget($_GET['add']);
62                 else
63                         $follow_widget = follow_widget();
64
65                 $findpeople_widget .= findpeople_widget();
66         }
67
68         $groups_widget .= group_side('contacts','group','full',0,$contact_id);
69
70         $a->page['aside'] .= replace_macros(get_markup_template("contacts-widget-sidebar.tpl"),array(
71                 '$vcard_widget' => $vcard_widget,
72                 '$findpeople_widget' => $findpeople_widget,
73                 '$follow_widget' => $follow_widget,
74                 '$groups_widget' => $groups_widget,
75                 '$networks_widget' => $networks_widget
76         ));
77
78         $base = z_root();
79         $tpl = get_markup_template("contacts-head.tpl");
80         $a->page['htmlhead'] .= replace_macros($tpl,array(
81                 '$baseurl' => $a->get_baseurl(true),
82                 '$base' => $base
83         ));
84
85         $tpl = get_markup_template("contacts-end.tpl");
86         $a->page['end'] .= replace_macros($tpl,array(
87                 '$baseurl' => $a->get_baseurl(true),
88                 '$base' => $base
89         ));
90
91
92 }
93
94 function contacts_batch_actions(&$a){
95         $contacts_id = $_POST['contact_batch'];
96         if (!is_array($contacts_id)) return;
97
98         $orig_records = q("SELECT * FROM `contact` WHERE `id` IN (%s) AND `uid` = %d AND `self` = 0",
99                 implode(",", $contacts_id),
100                 intval(local_user())
101         );
102
103         $count_actions=0;
104         foreach($orig_records as $orig_record) {
105                 $contact_id = $orig_record['id'];
106                 if (x($_POST, 'contacts_batch_update')) {
107                         _contact_update($contact_id);
108                         $count_actions++;
109                 }
110                 if (x($_POST, 'contacts_batch_block')) {
111                         $r  = _contact_block($contact_id, $orig_record);
112                         if ($r) $count_actions++;
113                 }
114                 if (x($_POST, 'contacts_batch_ignore')) {
115                         $r = _contact_ignore($contact_id, $orig_record);
116                         if ($r) $count_actions++;
117                 }
118                 if (x($_POST, 'contacts_batch_archive')) {
119                         $r = _contact_archive($contact_id, $orig_record);
120                         if ($r) $count_actions++;
121                 }
122                 if (x($_POST, 'contacts_batch_drop')) {
123                         _contact_drop($contact_id, $orig_record);
124                         $count_actions++;
125                 }
126         }
127         if ($count_actions>0) {
128                 info ( sprintf( tt("%d contact edited.", "%d contacts edited", $count_actions), $count_actions) );
129         }
130
131         if(x($_SESSION,'return_url'))
132                 goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']);
133         else
134                 goaway($a->get_baseurl(true) . '/contacts');
135
136 }
137
138
139 function contacts_post(&$a) {
140
141         if(! local_user())
142                 return;
143
144         if ($a->argv[1]==="batch") {
145                 contacts_batch_actions($a);
146                 return;
147         }
148
149         $contact_id = intval($a->argv[1]);
150         if(! $contact_id)
151                 return;
152
153         $orig_record = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
154                 intval($contact_id),
155                 intval(local_user())
156         );
157
158         if(! count($orig_record)) {
159                 notice( t('Could not access contact record.') . EOL);
160                 goaway($a->get_baseurl(true) . '/contacts');
161                 return; // NOTREACHED
162         }
163
164         call_hooks('contact_edit_post', $_POST);
165
166         $profile_id = intval($_POST['profile-assign']);
167         if($profile_id) {
168                 $r = q("SELECT `id` FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
169                         intval($profile_id),
170                         intval(local_user())
171                 );
172                 if(! count($r)) {
173                         notice( t('Could not locate selected profile.') . EOL);
174                         return;
175                 }
176         }
177
178         $hidden = intval($_POST['hidden']);
179
180         $notify = intval($_POST['notify']);
181
182         $fetch_further_information = intval($_POST['fetch_further_information']);
183
184         $ffi_keyword_blacklist = fix_mce_lf(escape_tags(trim($_POST['ffi_keyword_blacklist'])));
185
186         $priority = intval($_POST['poll']);
187         if($priority > 5 || $priority < 0)
188                 $priority = 0;
189
190         $info = fix_mce_lf(escape_tags(trim($_POST['info'])));
191
192         $r = q("UPDATE `contact` SET `profile-id` = %d, `priority` = %d , `info` = '%s',
193                 `hidden` = %d, `notify_new_posts` = %d, `fetch_further_information` = %d,
194                 `ffi_keyword_blacklist` = '%s' WHERE `id` = %d AND `uid` = %d",
195                 intval($profile_id),
196                 intval($priority),
197                 dbesc($info),
198                 intval($hidden),
199                 intval($notify),
200                 intval($fetch_further_information),
201                 dbesc($ffi_keyword_blacklist),
202                 intval($contact_id),
203                 intval(local_user())
204         );
205         if($r)
206                 info( t('Contact updated.') . EOL);
207         else
208                 notice( t('Failed to update contact record.') . EOL);
209
210         $r = q("select * from contact where id = %d and uid = %d limit 1",
211                 intval($contact_id),
212                 intval(local_user())
213         );
214         if($r && count($r))
215                 $a->data['contact'] = $r[0];
216
217         return;
218
219 }
220
221 /*contact actions*/
222 function _contact_update($contact_id) {
223         $r = q("SELECT `uid`, `url`, `network` FROM `contact` WHERE `id` = %d", intval($contact_id));
224         if (!$r)
225                 return;
226
227         $uid = $r[0]["uid"];
228
229         if ($uid != local_user())
230                 return;
231
232         if ($r[0]["network"] == NETWORK_OSTATUS) {
233                 $result = new_contact($uid, $r[0]["url"], false);
234
235                 if ($result['success'])
236                         $r = q("UPDATE `contact` SET `subhub` = 1 WHERE `id` = %d",
237                                 intval($contact_id));
238         } else
239                 // pull feed and consume it, which should subscribe to the hub.
240                 proc_run('php',"include/onepoll.php","$contact_id", "force");
241 }
242
243 function _contact_update_profile($contact_id) {
244         $r = q("SELECT `uid`, `url`, `network` FROM `contact` WHERE `id` = %d", intval($contact_id));
245         if (!$r)
246                 return;
247
248         $uid = $r[0]["uid"];
249
250         if ($uid != local_user())
251                 return;
252
253         $data = probe_url($r[0]["url"]);
254
255         // "Feed" or "Unknown" is mostly a sign of communication problems
256         if ((in_array($data["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) AND ($data["network"] != $r[0]["network"]))
257                 return;
258
259         $updatefields = array("name", "nick", "url", "addr", "batch", "notify", "poll", "request", "confirm",
260                                 "poco", "network", "alias");
261         $update = array();
262
263         if ($data["network"] == NETWORK_OSTATUS) {
264                 $result = new_contact($uid, $data["url"], false);
265
266                 if ($result['success'])
267                         $update["subhub"] = true;
268         }
269
270         foreach($updatefields AS $field)
271                 if (isset($data[$field]) AND ($data[$field] != ""))
272                         $update[$field] = $data[$field];
273
274         $update["nurl"] = normalise_link($data["url"]);
275
276         $query = "";
277
278         if (isset($data["priority"]) AND ($data["priority"] != 0))
279                 $query = "`priority` = ".intval($data["priority"]);
280
281         foreach($update AS $key => $value) {
282                 if ($query != "")
283                         $query .= ", ";
284
285                 $query .= "`".$key."` = '".dbesc($value)."'";
286         }
287
288         if ($query == "")
289                 return;
290
291         $r = q("UPDATE `contact` SET $query WHERE `id` = %d AND `uid` = %d",
292                 intval($contact_id),
293                 intval(local_user())
294         );
295
296         $photos = import_profile_photo($data['photo'], local_user(), $contact_id);
297
298         $r = q("UPDATE `contact` SET `photo` = '%s',
299                         `thumb` = '%s',
300                         `micro` = '%s',
301                         `name-date` = '%s',
302                         `uri-date` = '%s',
303                         `avatar-date` = '%s'
304                         WHERE `id` = %d",
305                         dbesc($photos[0]),
306                         dbesc($photos[1]),
307                         dbesc($photos[2]),
308                         dbesc(datetime_convert()),
309                         dbesc(datetime_convert()),
310                         dbesc(datetime_convert()),
311                         intval($contact_id)
312                 );
313
314 }
315
316 function _contact_block($contact_id, $orig_record) {
317         $blocked = (($orig_record['blocked']) ? 0 : 1);
318         $r = q("UPDATE `contact` SET `blocked` = %d WHERE `id` = %d AND `uid` = %d",
319                 intval($blocked),
320                 intval($contact_id),
321                 intval(local_user())
322         );
323         return $r;
324
325 }
326 function _contact_ignore($contact_id, $orig_record) {
327         $readonly = (($orig_record['readonly']) ? 0 : 1);
328         $r = q("UPDATE `contact` SET `readonly` = %d WHERE `id` = %d AND `uid` = %d",
329                 intval($readonly),
330                 intval($contact_id),
331                 intval(local_user())
332         );
333         return $r;
334 }
335 function _contact_archive($contact_id, $orig_record) {
336         $archived = (($orig_record['archive']) ? 0 : 1);
337         $r = q("UPDATE `contact` SET `archive` = %d WHERE `id` = %d AND `uid` = %d",
338                 intval($archived),
339                 intval($contact_id),
340                 intval(local_user())
341         );
342         if ($archived) {
343                 q("UPDATE `item` SET `private` = 2 WHERE `contact-id` = %d AND `uid` = %d", intval($contact_id), intval(local_user()));
344         }
345         return $r;
346 }
347 function _contact_drop($contact_id, $orig_record) {
348         require_once('include/Contact.php');
349         $a = get_app();
350
351         terminate_friendship($a->user,$a->contact,$orig_record);
352         contact_remove($orig_record['id']);
353 }
354
355
356 function contacts_content(&$a) {
357
358         $sort_type = 0;
359         $o = '';
360         nav_set_selected('contacts');
361
362
363         if(! local_user()) {
364                 notice( t('Permission denied.') . EOL);
365                 return;
366         }
367
368         if($a->argc == 3) {
369
370                 $contact_id = intval($a->argv[1]);
371                 if(! $contact_id)
372                         return;
373
374                 $cmd = $a->argv[2];
375
376                 $orig_record = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d AND `self` = 0 LIMIT 1",
377                         intval($contact_id),
378                         intval(local_user())
379                 );
380
381                 if(! count($orig_record)) {
382                         notice( t('Could not access contact record.') . EOL);
383                         goaway($a->get_baseurl(true) . '/contacts');
384                         return; // NOTREACHED
385                 }
386
387                 if($cmd === 'update') {
388                         _contact_update($contact_id);
389                         goaway($a->get_baseurl(true) . '/contacts/' . $contact_id);
390                         // NOTREACHED
391                 }
392
393                 if($cmd === 'updateprofile') {
394                         _contact_update_profile($contact_id);
395                         goaway($a->get_baseurl(true) . '/crepair/' . $contact_id);
396                         // NOTREACHED
397                 }
398
399                 if($cmd === 'block') {
400                         $r = _contact_block($contact_id, $orig_record[0]);
401                         if($r) {
402                                 $blocked = (($orig_record[0]['blocked']) ? 0 : 1);
403                                 info((($blocked) ? t('Contact has been blocked') : t('Contact has been unblocked')).EOL);
404                         }
405
406                         goaway($a->get_baseurl(true) . '/contacts/' . $contact_id);
407                         return; // NOTREACHED
408                 }
409
410                 if($cmd === 'ignore') {
411                         $r = _contact_ignore($contact_id, $orig_record[0]);
412                         if($r) {
413                                 $readonly = (($orig_record[0]['readonly']) ? 0 : 1);
414                                 info((($readonly) ? t('Contact has been ignored') : t('Contact has been unignored')).EOL);
415                         }
416
417                         goaway($a->get_baseurl(true) . '/contacts/' . $contact_id);
418                         return; // NOTREACHED
419                 }
420
421
422                 if($cmd === 'archive') {
423                         $r = _contact_archive($contact_id, $orig_record[0]);
424                         if($r) {
425                                 $archived = (($orig_record[0]['archive']) ? 0 : 1);
426                                 info((($archived) ? t('Contact has been archived') : t('Contact has been unarchived')).EOL);
427                         }
428
429                         goaway($a->get_baseurl(true) . '/contacts/' . $contact_id);
430                         return; // NOTREACHED
431                 }
432
433                 if($cmd === 'drop') {
434
435                         // Check if we should do HTML-based delete confirmation
436                         if($_REQUEST['confirm']) {
437                                 // <form> can't take arguments in its "action" parameter
438                                 // so add any arguments as hidden inputs
439                                 $query = explode_querystring($a->query_string);
440                                 $inputs = array();
441                                 foreach($query['args'] as $arg) {
442                                         if(strpos($arg, 'confirm=') === false) {
443                                                 $arg_parts = explode('=', $arg);
444                                                 $inputs[] = array('name' => $arg_parts[0], 'value' => $arg_parts[1]);
445                                         }
446                                 }
447
448                                 $a->page['aside'] = '';
449
450                                 return replace_macros(get_markup_template('contact_drop_confirm.tpl'), array(
451                                         '$contact' =>  _contact_detail_for_template($orig_record[0]),
452                                         '$method' => 'get',
453                                         '$message' => t('Do you really want to delete this contact?'),
454                                         '$extra_inputs' => $inputs,
455                                         '$confirm' => t('Yes'),
456                                         '$confirm_url' => $query['base'],
457                                         '$confirm_name' => 'confirmed',
458                                         '$cancel' => t('Cancel'),
459                                 ));
460                         }
461                         // Now check how the user responded to the confirmation query
462                         if($_REQUEST['canceled']) {
463                                 if(x($_SESSION,'return_url'))
464                                         goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']);
465                                 else
466                                         goaway($a->get_baseurl(true) . '/contacts');
467                         }
468
469                         _contact_drop($contact_id, $orig_record[0]);
470                         info( t('Contact has been removed.') . EOL );
471                         if(x($_SESSION,'return_url'))
472                                 goaway($a->get_baseurl(true) . '/' . $_SESSION['return_url']);
473                         else
474                                 goaway($a->get_baseurl(true) . '/contacts');
475                         return; // NOTREACHED
476                 }
477                 if($cmd === 'posts') {
478                         return contact_posts($a, $contact_id);
479                 }
480         }
481
482
483
484         $_SESSION['return_url'] = $a->query_string;
485
486         if((x($a->data,'contact')) && (is_array($a->data['contact']))) {
487
488                 $contact_id = $a->data['contact']['id'];
489                 $contact = $a->data['contact'];
490
491                 $editselect = 'none';
492                 if( feature_enabled(local_user(),'richtext') )
493                         $editselect = 'exact';
494
495                 $a->page['htmlhead'] .= replace_macros(get_markup_template('contact_head.tpl'), array(
496                         '$baseurl' => $a->get_baseurl(true),
497                         '$editselect' => $editselect,
498                 ));
499                 $a->page['end'] .= replace_macros(get_markup_template('contact_end.tpl'), array(
500                         '$baseurl' => $a->get_baseurl(true),
501                         '$editselect' => $editselect,
502                 ));
503
504                 require_once('include/contact_selectors.php');
505
506                 $tpl = get_markup_template("contact_edit.tpl");
507
508                 switch($contact['rel']) {
509                         case CONTACT_IS_FRIEND:
510                                 $dir_icon = 'images/lrarrow.gif';
511                                 $relation_text = t('You are mutual friends with %s');
512                                 break;
513                         case CONTACT_IS_FOLLOWER;
514                                 $dir_icon = 'images/larrow.gif';
515                                 $relation_text = t('You are sharing with %s');
516                                 break;
517
518                         case CONTACT_IS_SHARING;
519                                 $dir_icon = 'images/rarrow.gif';
520                                 $relation_text = t('%s is sharing with you');
521                                 break;
522                         default:
523                                 break;
524                 }
525
526                 if(!in_array($contact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA)))
527                                 $relation_text = "";
528
529                 $relation_text = sprintf($relation_text,htmlentities($contact['name']));
530
531                 if(($contact['network'] === NETWORK_DFRN) && ($contact['rel'])) {
532                         $url = "redir/{$contact['id']}";
533                         $sparkle = ' class="sparkle" ';
534                 }
535                 else {
536                         $url = $contact['url'];
537                         $sparkle = '';
538                 }
539
540                 $insecure = t('Private communications are not available for this contact.');
541
542                 $last_update = (($contact['last-update'] == '0000-00-00 00:00:00')
543                                 ? t('Never')
544                                 : datetime_convert('UTC',date_default_timezone_get(),$contact['last-update'],'D, j M Y, g:i A'));
545
546                 if($contact['last-update'] !== '0000-00-00 00:00:00')
547                         $last_update .= ' ' . (($contact['last-update'] <= $contact['success_update']) ? t("\x28Update was successful\x29") : t("\x28Update was not successful\x29"));
548
549                 $lblsuggest = (($contact['network'] === NETWORK_DFRN) ? t('Suggest friends') : '');
550
551                 $poll_enabled = in_array($contact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_FEED, NETWORK_MAIL, NETWORK_MAIL2));
552
553                 $nettype = sprintf( t('Network type: %s'),network_to_name($contact['network'], $contact["url"]));
554
555                 //$common = count_common_friends(local_user(),$contact['id']);
556                 //$common_text = (($common) ? sprintf( tt('%d contact in common','%d contacts in common', $common),$common) : '');
557
558                 $polling = (($contact['network'] === NETWORK_MAIL | $contact['network'] === NETWORK_FEED) ? 'polling' : '');
559
560                 //$x = count_all_friends(local_user(), $contact['id']);
561                 //$all_friends = (($x) ? t('View all contacts') : '');
562
563                 // tabs
564                 $tab_str = contacts_tab($a, $contact_id, 2);
565
566                 $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!') : '');
567
568                 if ($contact['network'] == NETWORK_FEED)
569                         $fetch_further_information = array('fetch_further_information', t('Fetch further information for feeds'), $contact['fetch_further_information'], t('Fetch further information for feeds'),
570                                                                         array('0'=>t('Disabled'), '1'=>t('Fetch information'), '2'=>t('Fetch information and keywords')));
571
572                 if (in_array($contact['network'], array(NETWORK_FEED, NETWORK_MAIL, NETWORK_MAIL2)))
573                         $poll_interval = contact_poll_interval($contact['priority'],(! $poll_enabled));
574
575                 if ($contact['network'] == NETWORK_DFRN)
576                         $profile_select = contact_profile_assign($contact['profile-id'],(($contact['network'] !== NETWORK_DFRN) ? true : false));
577
578                 if (in_array($contact['network'], array(NETWORK_DIASPORA, NETWORK_OSTATUS)) AND
579                         ($contact['rel'] == CONTACT_IS_FOLLOWER))
580                         $follow = $a->get_baseurl(true)."/follow?url=".urlencode($contact["url"]);
581
582
583                 $o .= replace_macros($tpl, array(
584                         //'$header' => t('Contact Editor'),
585                         '$tab_str' => $tab_str,
586                         '$submit' => t('Submit'),
587                         '$lbl_vis1' => t('Profile Visibility'),
588                         '$lbl_vis2' => sprintf( t('Please choose the profile you would like to display to %s when viewing your profile securely.'), $contact['name']),
589                         '$lbl_info1' => t('Contact Information / Notes'),
590                         '$infedit' => t('Edit contact notes'),
591                         '$common_text' => $common_text,
592                         '$common_link' => $a->get_baseurl(true) . '/common/loc/' . local_user() . '/' . $contact['id'],
593                         '$all_friends' => $all_friends,
594                         '$relation_text' => $relation_text,
595                         '$visit' => sprintf( t('Visit %s\'s profile [%s]'),$contact['name'],$contact['url']),
596                         '$blockunblock' => t('Block/Unblock contact'),
597                         '$ignorecont' => t('Ignore contact'),
598                         '$lblcrepair' => t("Repair URL settings"),
599                         '$lblrecent' => t('View conversations'),
600                         '$lblsuggest' => $lblsuggest,
601                         '$delete' => t('Delete contact'),
602                         '$nettype' => $nettype,
603                         '$poll_interval' => $poll_interval,
604                         '$poll_enabled' => $poll_enabled,
605                         '$lastupdtext' => t('Last update:'),
606                         '$lost_contact' => $lost_contact,
607                         '$updpub' => t('Update public posts'),
608                         '$last_update' => $last_update,
609                         '$udnow' => t('Update now'),
610                         '$follow' => $follow,
611                         '$follow_text' => t("Connect/Follow"),
612                         '$profile_select' => $profile_select,
613                         '$contact_id' => $contact['id'],
614                         '$block_text' => (($contact['blocked']) ? t('Unblock') : t('Block') ),
615                         '$ignore_text' => (($contact['readonly']) ? t('Unignore') : t('Ignore') ),
616                         '$insecure' => (($contact['network'] !== NETWORK_DFRN && $contact['network'] !== NETWORK_MAIL && $contact['network'] !== NETWORK_FACEBOOK && $contact['network'] !== NETWORK_DIASPORA) ? $insecure : ''),
617                         '$info' => $contact['info'],
618                         '$blocked' => (($contact['blocked']) ? t('Currently blocked') : ''),
619                         '$ignored' => (($contact['readonly']) ? t('Currently ignored') : ''),
620                         '$archived' => (($contact['archive']) ? t('Currently archived') : ''),
621                         '$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')),
622                         '$notify' => array('notify', t('Notification for new posts'), ($contact['notify_new_posts'] == 1), t('Send a notification of every new post of this contact')),
623                         '$fetch_further_information' => $fetch_further_information,
624                         '$ffi_keyword_blacklist' => $contact['ffi_keyword_blacklist'],
625                         '$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')),
626                         '$photo' => $contact['photo'],
627                         '$name' => htmlentities($contact['name']),
628                         '$dir_icon' => $dir_icon,
629                         '$alt_text' => $alt_text,
630                         '$sparkle' => $sparkle,
631                         '$url' => $url,
632                         '$profileurllabel' => t('Profile URL'),
633                         '$profileurl' => $contact['url'],
634                         '$location' => bbcode($contact["location"]),
635                         '$location_label' => t("Location:"),
636                         '$about' => bbcode($contact["about"], false, false),
637                         '$about_label' => t("About:"),
638                         '$keywords' => $contact["keywords"],
639                         '$keywords_label' => t("Tags:")
640
641                 ));
642
643                 $arr = array('contact' => $contact,'output' => $o);
644
645                 call_hooks('contact_edit', $arr);
646
647                 return $arr['output'];
648
649         }
650
651         $blocked = false;
652         $hidden = false;
653         $ignored = false;
654         $all = false;
655
656         if(($a->argc == 2) && ($a->argv[1] === 'all')) {
657                 $sql_extra = '';
658                 $all = true;
659         }
660         elseif(($a->argc == 2) && ($a->argv[1] === 'blocked')) {
661                 $sql_extra = " AND `blocked` = 1 ";
662                 $blocked = true;
663         }
664         elseif(($a->argc == 2) && ($a->argv[1] === 'hidden')) {
665                 $sql_extra = " AND `hidden` = 1 ";
666                 $hidden = true;
667         }
668         elseif(($a->argc == 2) && ($a->argv[1] === 'ignored')) {
669                 $sql_extra = " AND `readonly` = 1 ";
670                 $ignored = true;
671         }
672         elseif(($a->argc == 2) && ($a->argv[1] === 'archived')) {
673                 $sql_extra = " AND `archive` = 1 ";
674                 $archived = true;
675         }
676         else
677                 $sql_extra = " AND `blocked` = 0 ";
678
679         $search = ((x($_GET,'search')) ? notags(trim($_GET['search'])) : '');
680         $nets = ((x($_GET,'nets')) ? notags(trim($_GET['nets'])) : '');
681
682         $tabs = array(
683                 array(
684                         'label' => t('Suggestions'),
685                         'url'   => $a->get_baseurl(true) . '/suggest',
686                         'sel'   => '',
687                         'title' => t('Suggest potential friends'),
688                         'id'    => 'suggestions-tab',
689                         'accesskey' => 'g',
690                 ),
691                 array(
692                         'label' => t('All Contacts'),
693                         'url'   => $a->get_baseurl(true) . '/contacts/all',
694                         'sel'   => ($all) ? 'active' : '',
695                         'title' => t('Show all contacts'),
696                         'id'    => 'showall-tab',
697                         'accesskey' => 'l',
698                 ),
699                 array(
700                         'label' => t('Unblocked'),
701                         'url'   => $a->get_baseurl(true) . '/contacts',
702                         'sel'   => ((! $all) && (! $blocked) && (! $hidden) && (! $search) && (! $nets) && (! $ignored) && (! $archived)) ? 'active' : '',
703                         'title' => t('Only show unblocked contacts'),
704                         'id'    => 'showunblocked-tab',
705                         'accesskey' => 'o',
706                 ),
707
708                 array(
709                         'label' => t('Blocked'),
710                         'url'   => $a->get_baseurl(true) . '/contacts/blocked',
711                         'sel'   => ($blocked) ? 'active' : '',
712                         'title' => t('Only show blocked contacts'),
713                         'id'    => 'showblocked-tab',
714                         'accesskey' => 'b',
715                 ),
716
717                 array(
718                         'label' => t('Ignored'),
719                         'url'   => $a->get_baseurl(true) . '/contacts/ignored',
720                         'sel'   => ($ignored) ? 'active' : '',
721                         'title' => t('Only show ignored contacts'),
722                         'id'    => 'showignored-tab',
723                         'accesskey' => 'i',
724                 ),
725
726                 array(
727                         'label' => t('Archived'),
728                         'url'   => $a->get_baseurl(true) . '/contacts/archived',
729                         'sel'   => ($archived) ? 'active' : '',
730                         'title' => t('Only show archived contacts'),
731                         'id'    => 'showarchived-tab',
732                         'accesskey' => 'y',
733                 ),
734
735                 array(
736                         'label' => t('Hidden'),
737                         'url'   => $a->get_baseurl(true) . '/contacts/hidden',
738                         'sel'   => ($hidden) ? 'active' : '',
739                         'title' => t('Only show hidden contacts'),
740                         'id'    => 'showhidden-tab',
741                         'accesskey' => 'h',
742                 ),
743
744         );
745
746         $tab_tpl = get_markup_template('common_tabs.tpl');
747         $t = replace_macros($tab_tpl, array('$tabs'=>$tabs));
748
749
750
751         $searching = false;
752         if($search) {
753                 $search_hdr = $search;
754                 $search_txt = dbesc(protect_sprintf(preg_quote($search)));
755                 $searching = true;
756         }
757         $sql_extra .= (($searching) ? " AND (name REGEXP '$search_txt' OR url REGEXP '$search_txt'  OR nick REGEXP '$search_txt') " : "");
758
759         if($nets)
760                 $sql_extra .= sprintf(" AND network = '%s' ", dbesc($nets));
761
762         $sql_extra2 = ((($sort_type > 0) && ($sort_type <= CONTACT_IS_FRIEND)) ? sprintf(" AND `rel` = %d ",intval($sort_type)) : '');
763
764
765         $r = q("SELECT COUNT(*) AS `total` FROM `contact`
766                 WHERE `uid` = %d AND `self` = 0 AND `pending` = 0 $sql_extra $sql_extra2 ",
767                 intval($_SESSION['uid']));
768         if(count($r)) {
769                 $a->set_pager_total($r[0]['total']);
770                 $total = $r[0]['total'];
771         }
772
773         $sql_extra3 = unavailable_networks();
774
775         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `pending` = 0 $sql_extra $sql_extra2 $sql_extra3 ORDER BY `name` ASC LIMIT %d , %d ",
776                 intval($_SESSION['uid']),
777                 intval($a->pager['start']),
778                 intval($a->pager['itemspage'])
779         );
780
781         $contacts = array();
782
783         if(count($r)) {
784                 foreach($r as $rr) {
785                         $contacts[] = _contact_detail_for_template($rr);
786                 }
787         }
788
789         $tpl = get_markup_template("contacts-template.tpl");
790         $o .= replace_macros($tpl, array(
791                 '$baseurl' => z_root(),
792                 '$header' => t('Contacts') . (($nets) ? ' - ' . network_to_name($nets) : ''),
793                 '$tabs' => $t,
794                 '$total' => $total,
795                 '$search' => $search_hdr,
796                 '$desc' => t('Search your contacts'),
797                 '$finding' => (($searching) ? t('Finding: ') . "'" . $search . "'" : ""),
798                 '$submit' => t('Find'),
799                 '$cmd' => $a->cmd,
800                 '$contacts' => $contacts,
801                 '$contact_drop_confirm' => t('Do you really want to delete this contact?'),
802                 'multiselect' => 1,
803                 '$batch_actions' => array(
804                         'contacts_batch_update' => t('Update'),
805                         'contacts_batch_block' => t('Block')."/".t("Unblock"),
806                         "contacts_batch_ignore" => t('Ignore')."/".t("Unignore"),
807                         "contacts_batch_archive" => t('Archive')."/".t("Unarchive"),
808                         "contacts_batch_drop" => t('Delete'),
809                 ),
810                 '$paginate' => paginate($a),
811
812         ));
813
814         return $o;
815 }
816
817 function contacts_tab($a, $contact_id, $active_tab) {
818         // tabs
819         $tabs = array(
820                 array(
821                         'label'=>t('Status'),
822                         'url' => "contacts/".$contact_id."/posts",
823                         'sel' => (($active_tab == 1)?'active':''),
824                         'title' => t('Status Messages and Posts'),
825                         'id' => 'status-tab',
826                         'accesskey' => 'm',
827                 ),
828                 array(
829                         'label'=>t('Profile'),
830                         'url' => "contacts/".$contact_id,
831                         'sel' => (($active_tab == 2)?'active':''),
832                         'title' => t('Profile Details'),
833                         'id' => 'status-tab',
834                         'accesskey' => 'o',
835                 )
836         );
837
838         $x = count_all_friends(local_user(), $contact_id);
839         if ($x)
840                 $tabs[] = array('label'=>t('Contacts'),
841                                 'url' => "allfriends/".$contact_id,
842                                 'sel' => (($active_tab == 3)?'active':''),
843                                 'title' => t('View all contacts'),
844                                 'id' => 'allfriends-tab',
845                                 'accesskey' => 't');
846
847         $common = count_common_friends(local_user(),$contact_id);
848         if ($common)
849                 $tabs[] = array('label'=>t('Common Friends'),
850                                 'url' => "common/loc/".local_user()."/".$contact_id,
851                                 'sel' => (($active_tab == 4)?'active':''),
852                                 'title' => t('View all common friends'),
853                                 'id' => 'common-loc-tab',
854                                 'accesskey' => 'd');
855
856         $tabs[] = array('label' => t('Repair'),
857                         'url'   => $a->get_baseurl(true) . '/crepair/' . $contact_id,
858                         'sel' => (($active_tab == 5)?'active':''),
859                         'title' => t('Advanced Contact Settings'),
860                         'id'    => 'repair-tab',
861                         'accesskey' => 'r');
862
863
864         $tabs[] = array('label' => (($contact['blocked']) ? t('Unblock') : t('Block') ),
865                         'url'   => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/block',
866                         'sel'   => '',
867                         'title' => t('Toggle Blocked status'),
868                         'id'    => 'toggle-block-tab',
869                         'accesskey' => 'b');
870
871         $tabs[] = array('label' => (($contact['readonly']) ? t('Unignore') : t('Ignore') ),
872                         'url'   => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/ignore',
873                         'sel'   => '',
874                         'title' => t('Toggle Ignored status'),
875                         'id'    => 'toggle-ignore-tab',
876                         'accesskey' => 'i');
877
878         $tabs[] = array('label' => (($contact['archive']) ? t('Unarchive') : t('Archive') ),
879                         'url'   => $a->get_baseurl(true) . '/contacts/' . $contact_id . '/archive',
880                         'sel'   => '',
881                         'title' => t('Toggle Archive status'),
882                         'id'    => 'toggle-archive-tab',
883                         'accesskey' => 'v');
884
885         $tab_tpl = get_markup_template('common_tabs.tpl');
886         $tab_str = replace_macros($tab_tpl, array('$tabs' => $tabs));
887
888         return $tab_str;
889 }
890
891 function contact_posts($a, $contact_id) {
892
893         require_once('include/conversation.php');
894
895         $r = q("SELECT * FROM `contact` WHERE `id` = %d", intval($contact_id));
896         if ($r) {
897                 $contact = $r[0];
898                 $a->page['aside'] = "";
899                 profile_load($a, "", 0, get_contact_details_by_url($contact["url"]));
900         }
901
902         if(get_config('system', 'old_pager')) {
903                 $r = q("SELECT COUNT(*) AS `total` FROM `item`
904                         WHERE `item`.`uid` = %d AND `author-link` IN ('%s', '%s')",
905                         intval(local_user()),
906                         dbesc(str_replace("https://", "http://", $contact["url"])),
907                         dbesc(str_replace("http://", "https://", $contact["url"])));
908
909                 $a->set_pager_total($r[0]['total']);
910         }
911
912         $r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`,
913                         `author-name` AS `name`, `owner-avatar` AS `photo`,
914                         `owner-link` AS `url`, `owner-avatar` AS `thumb`
915                 FROM `item` FORCE INDEX (uid_contactid_created)
916                 WHERE `item`.`uid` = %d AND `contact-id` = %d
917                         AND `author-link` IN ('%s', '%s')
918                 ORDER BY `item`.`created` DESC LIMIT %d, %d",
919                 intval(local_user()),
920                 intval($contact_id),
921                 dbesc(str_replace("https://", "http://", $contact["url"])),
922                 dbesc(str_replace("http://", "https://", $contact["url"])),
923                 intval($a->pager['start']),
924                 intval($a->pager['itemspage'])
925         );
926
927         $tab_str = contacts_tab($a, $contact_id, 1);
928
929         $o .= $tab_str;
930
931         $o .= conversation($a,$r,'community',false);
932
933         if(!get_config('system', 'old_pager')) {
934                 $o .= alt_pager($a,count($r));
935         } else {
936                 $o .= paginate($a);
937         }
938
939         return $o;
940 }
941
942 function _contact_detail_for_template($rr){
943
944         $community = '';
945
946         switch($rr['rel']) {
947                 case CONTACT_IS_FRIEND:
948                         $dir_icon = 'images/lrarrow.gif';
949                         $alt_text = t('Mutual Friendship');
950                         break;
951                 case  CONTACT_IS_FOLLOWER;
952                         $dir_icon = 'images/larrow.gif';
953                         $alt_text = t('is a fan of yours');
954                         break;
955                 case CONTACT_IS_SHARING;
956                         $dir_icon = 'images/rarrow.gif';
957                         $alt_text = t('you are a fan of');
958                         break;
959                 default:
960                         break;
961         }
962         if(($rr['network'] === NETWORK_DFRN) && ($rr['rel'])) {
963                 $url = "redir/{$rr['id']}";
964                 $sparkle = ' class="sparkle" ';
965         }
966         else {
967                 $url = $rr['url'];
968                 $sparkle = '';
969         }
970
971         //test if contact is a forum page
972         if (isset($rr['forum']) OR isset($rr['prv']))
973                                 $community = ($rr['forum'] OR $rr['prv']);
974
975
976         return array(
977                 'img_hover' => sprintf( t('Visit %s\'s profile [%s]'),$rr['name'],$rr['url']),
978                 'edit_hover' => t('Edit contact'),
979                 'photo_menu' => contact_photo_menu($rr),
980                 'id' => $rr['id'],
981                 'alt_text' => $alt_text,
982                 'dir_icon' => $dir_icon,
983                 'thumb' => proxy_url($rr['thumb'], false, PROXY_SIZE_THUMB),
984                 'name' => htmlentities($rr['name']),
985                 'username' => htmlentities($rr['name']),
986                 'account_type' => ($community ? t('Forum') : ''),
987                 'sparkle' => $sparkle,
988                 'itemurl' => (($rr['addr'] != "") ? $rr['addr'] : $rr['url']),
989                 'url' => $url,
990                 'network' => network_to_name($rr['network'], $rr['url']),
991         );
992
993 }