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');
10 function contacts_init(App $a) {
17 if((($a->argc == 2) && intval($a->argv[1])) OR (($a->argc == 3) && intval($a->argv[1]) && ($a->argv[2] == "posts"))) {
18 $contact_id = intval($a->argv[1]);
19 $r = q("SELECT * FROM `contact` WHERE `uid` = %d and `id` = %d LIMIT 1",
23 if (! dbm::is_result($r)) {
28 require_once('include/group.php');
29 require_once('include/contact_widgets.php');
31 if ($_GET['nets'] == "all") {
35 if (! x($a->page,'aside')) {
36 $a->page['aside'] = '';
40 $a->data['contact'] = $r[0];
42 if (($a->data['contact']['network'] != "") AND ($a->data['contact']['network'] != NETWORK_DFRN)) {
43 $networkname = format_network_name($a->data['contact']['network'],$a->data['contact']['url']);
48 /// @TODO Add nice spaces
49 $vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"),array(
50 '$name' => htmlentities($a->data['contact']['name']),
51 '$photo' => $a->data['contact']['photo'],
52 '$url' => ($a->data['contact']['network'] == NETWORK_DFRN) ? "redir/".$a->data['contact']['id'] : $a->data['contact']['url'],
53 '$addr' => (($a->data['contact']['addr'] != "") ? ($a->data['contact']['addr']) : ""),
54 '$network_name' => $networkname,
55 '$network' => t('Network:'),
56 '$account_type' => account_type($a->data['contact'])
59 $finpeople_widget = '';
61 $networks_widget = '';
64 $networks_widget .= networks_widget('contacts',$_GET['nets']);
65 if (isset($_GET['add'])) {
66 $follow_widget = follow_widget($_GET['add']);
68 $follow_widget = follow_widget();
71 $findpeople_widget .= findpeople_widget();
74 $groups_widget .= group_side('contacts','group','full',0,$contact_id);
76 $a->page['aside'] .= replace_macros(get_markup_template("contacts-widget-sidebar.tpl"),array(
77 '$vcard_widget' => $vcard_widget,
78 '$findpeople_widget' => $findpeople_widget,
79 '$follow_widget' => $follow_widget,
80 '$groups_widget' => $groups_widget,
81 '$networks_widget' => $networks_widget
85 $tpl = get_markup_template("contacts-head.tpl");
86 $a->page['htmlhead'] .= replace_macros($tpl,array(
87 '$baseurl' => App::get_baseurl(true),
91 $tpl = get_markup_template("contacts-end.tpl");
92 $a->page['end'] .= replace_macros($tpl,array(
93 '$baseurl' => App::get_baseurl(true),
100 function contacts_batch_actions(App $a) {
101 $contacts_id = $_POST['contact_batch'];
102 if (!is_array($contacts_id)) return;
104 $orig_records = q("SELECT * FROM `contact` WHERE `id` IN (%s) AND `uid` = %d AND `self` = 0",
105 implode(",", $contacts_id),
110 foreach($orig_records as $orig_record) {
111 $contact_id = $orig_record['id'];
112 if (x($_POST, 'contacts_batch_update')) {
113 _contact_update($contact_id);
116 if (x($_POST, 'contacts_batch_block')) {
117 $r = _contact_block($contact_id, $orig_record);
118 if ($r) $count_actions++;
120 if (x($_POST, 'contacts_batch_ignore')) {
121 $r = _contact_ignore($contact_id, $orig_record);
122 if ($r) $count_actions++;
124 if (x($_POST, 'contacts_batch_archive')) {
125 $r = _contact_archive($contact_id, $orig_record);
126 if ($r) $count_actions++;
128 if (x($_POST, 'contacts_batch_drop')) {
129 _contact_drop($contact_id, $orig_record);
133 if ($count_actions>0) {
134 info ( sprintf( tt("%d contact edited.", "%d contacts edited.", $count_actions), $count_actions) );
137 if (x($_SESSION,'return_url')) {
138 goaway('' . $_SESSION['return_url']);
147 function contacts_post(App $a) {
149 if (! local_user()) {
153 if ($a->argv[1]==="batch") {
154 contacts_batch_actions($a);
158 $contact_id = intval($a->argv[1]);
163 $orig_record = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
168 if (! count($orig_record)) {
169 notice( t('Could not access contact record.') . EOL);
171 return; // NOTREACHED
174 call_hooks('contact_edit_post', $_POST);
176 $profile_id = intval($_POST['profile-assign']);
178 $r = q("SELECT `id` FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
182 if (! dbm::is_result($r)) {
183 notice( t('Could not locate selected profile.') . EOL);
188 $hidden = intval($_POST['hidden']);
190 $notify = intval($_POST['notify']);
192 $fetch_further_information = intval($_POST['fetch_further_information']);
194 $ffi_keyword_blacklist = escape_tags(trim($_POST['ffi_keyword_blacklist']));
196 $priority = intval($_POST['poll']);
197 if($priority > 5 || $priority < 0)
200 $info = escape_tags(trim($_POST['info']));
202 $r = q("UPDATE `contact` SET `profile-id` = %d, `priority` = %d , `info` = '%s',
203 `hidden` = %d, `notify_new_posts` = %d, `fetch_further_information` = %d,
204 `ffi_keyword_blacklist` = '%s' WHERE `id` = %d AND `uid` = %d",
210 intval($fetch_further_information),
211 dbesc($ffi_keyword_blacklist),
216 info( t('Contact updated.') . EOL);
218 notice( t('Failed to update contact record.') . EOL);
220 $r = q("select * from contact where id = %d and uid = %d limit 1",
224 if($r && dbm::is_result($r))
225 $a->data['contact'] = $r[0];
232 function _contact_update($contact_id) {
233 $r = q("SELECT `uid`, `url`, `network` FROM `contact` WHERE `id` = %d", intval($contact_id));
239 if ($uid != local_user())
242 if ($r[0]["network"] == NETWORK_OSTATUS) {
243 $result = new_contact($uid, $r[0]["url"], false);
245 if ($result['success'])
246 $r = q("UPDATE `contact` SET `subhub` = 1 WHERE `id` = %d",
247 intval($contact_id));
249 // pull feed and consume it, which should subscribe to the hub.
250 proc_run(PRIORITY_HIGH, "include/onepoll.php", $contact_id, "force");
253 function _contact_update_profile($contact_id) {
254 $r = q("SELECT `uid`, `url`, `network` FROM `contact` WHERE `id` = %d", intval($contact_id));
260 if ($uid != local_user())
263 $data = probe_url($r[0]["url"]);
265 // "Feed" or "Unknown" is mostly a sign of communication problems
266 if ((in_array($data["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) AND ($data["network"] != $r[0]["network"]))
269 $updatefields = array("name", "nick", "url", "addr", "batch", "notify", "poll", "request", "confirm",
270 "poco", "network", "alias");
273 if ($data["network"] == NETWORK_OSTATUS) {
274 $result = new_contact($uid, $data["url"], false);
276 if ($result['success'])
277 $update["subhub"] = true;
280 foreach($updatefields AS $field)
281 if (isset($data[$field]) AND ($data[$field] != ""))
282 $update[$field] = $data[$field];
284 $update["nurl"] = normalise_link($data["url"]);
288 if (isset($data["priority"]) AND ($data["priority"] != 0))
289 $query = "`priority` = ".intval($data["priority"]);
291 foreach($update AS $key => $value) {
295 $query .= "`".$key."` = '".dbesc($value)."'";
301 $r = q("UPDATE `contact` SET $query WHERE `id` = %d AND `uid` = %d",
306 // Update the entry in the contact table
307 update_contact_avatar($data['photo'], local_user(), $contact_id);
309 // Update the entry in the gcontact table
310 update_gcontact_from_probe($data["url"]);
313 function _contact_block($contact_id, $orig_record) {
314 $blocked = (($orig_record['blocked']) ? 0 : 1);
315 $r = q("UPDATE `contact` SET `blocked` = %d WHERE `id` = %d AND `uid` = %d",
323 function _contact_ignore($contact_id, $orig_record) {
324 $readonly = (($orig_record['readonly']) ? 0 : 1);
325 $r = q("UPDATE `contact` SET `readonly` = %d WHERE `id` = %d AND `uid` = %d",
332 function _contact_archive($contact_id, $orig_record) {
333 $archived = (($orig_record['archive']) ? 0 : 1);
334 $r = q("UPDATE `contact` SET `archive` = %d WHERE `id` = %d AND `uid` = %d",
340 q("UPDATE `item` SET `private` = 2 WHERE `contact-id` = %d AND `uid` = %d", intval($contact_id), intval(local_user()));
344 function _contact_drop($contact_id, $orig_record) {
347 terminate_friendship($a->user,$a->contact,$orig_record);
348 contact_remove($orig_record['id']);
352 function contacts_content(App $a) {
356 nav_set_selected('contacts');
359 if (! local_user()) {
360 notice( t('Permission denied.') . EOL);
366 $contact_id = intval($a->argv[1]);
372 $orig_record = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d AND `self` = 0 LIMIT 1",
377 if(! count($orig_record)) {
378 notice( t('Could not access contact record.') . EOL);
380 return; // NOTREACHED
383 if($cmd === 'update') {
384 _contact_update($contact_id);
385 goaway('contacts/' . $contact_id);
389 if($cmd === 'updateprofile') {
390 _contact_update_profile($contact_id);
391 goaway('crepair/' . $contact_id);
395 if($cmd === 'block') {
396 $r = _contact_block($contact_id, $orig_record[0]);
398 $blocked = (($orig_record[0]['blocked']) ? 0 : 1);
399 info((($blocked) ? t('Contact has been blocked') : t('Contact has been unblocked')).EOL);
402 goaway('contacts/' . $contact_id);
403 return; // NOTREACHED
406 if($cmd === 'ignore') {
407 $r = _contact_ignore($contact_id, $orig_record[0]);
409 $readonly = (($orig_record[0]['readonly']) ? 0 : 1);
410 info((($readonly) ? t('Contact has been ignored') : t('Contact has been unignored')).EOL);
413 goaway('contacts/' . $contact_id);
414 return; // NOTREACHED
418 if($cmd === 'archive') {
419 $r = _contact_archive($contact_id, $orig_record[0]);
421 $archived = (($orig_record[0]['archive']) ? 0 : 1);
422 info((($archived) ? t('Contact has been archived') : t('Contact has been unarchived')).EOL);
425 goaway('contacts/' . $contact_id);
426 return; // NOTREACHED
429 if($cmd === 'drop') {
431 // Check if we should do HTML-based delete confirmation
432 if($_REQUEST['confirm']) {
433 // <form> can't take arguments in its "action" parameter
434 // so add any arguments as hidden inputs
435 $query = explode_querystring($a->query_string);
437 foreach($query['args'] as $arg) {
438 if(strpos($arg, 'confirm=') === false) {
439 $arg_parts = explode('=', $arg);
440 $inputs[] = array('name' => $arg_parts[0], 'value' => $arg_parts[1]);
444 $a->page['aside'] = '';
446 return replace_macros(get_markup_template('contact_drop_confirm.tpl'), array(
447 '$header' => t('Drop contact'),
448 '$contact' => _contact_detail_for_template($orig_record[0]),
450 '$message' => t('Do you really want to delete this contact?'),
451 '$extra_inputs' => $inputs,
452 '$confirm' => t('Yes'),
453 '$confirm_url' => $query['base'],
454 '$confirm_name' => 'confirmed',
455 '$cancel' => t('Cancel'),
458 // Now check how the user responded to the confirmation query
459 if ($_REQUEST['canceled']) {
460 if (x($_SESSION,'return_url')) {
461 goaway('' . $_SESSION['return_url']);
468 _contact_drop($contact_id, $orig_record[0]);
469 info( t('Contact has been removed.') . EOL );
470 if (x($_SESSION,'return_url')) {
471 goaway('' . $_SESSION['return_url']);
476 return; // NOTREACHED
478 if ($cmd === 'posts') {
479 return contact_posts($a, $contact_id);
485 $_SESSION['return_url'] = $a->query_string;
487 if((x($a->data,'contact')) && (is_array($a->data['contact']))) {
489 $contact_id = $a->data['contact']['id'];
490 $contact = $a->data['contact'];
492 $a->page['htmlhead'] .= replace_macros(get_markup_template('contact_head.tpl'), array(
493 '$baseurl' => App::get_baseurl(true),
495 $a->page['end'] .= replace_macros(get_markup_template('contact_end.tpl'), array(
496 '$baseurl' => App::get_baseurl(true),
499 require_once('include/contact_selectors.php');
501 $tpl = get_markup_template("contact_edit.tpl");
503 switch($contact['rel']) {
504 case CONTACT_IS_FRIEND:
505 $dir_icon = 'images/lrarrow.gif';
506 $relation_text = t('You are mutual friends with %s');
508 case CONTACT_IS_FOLLOWER;
509 $dir_icon = 'images/larrow.gif';
510 $relation_text = t('You are sharing with %s');
513 case CONTACT_IS_SHARING;
514 $dir_icon = 'images/rarrow.gif';
515 $relation_text = t('%s is sharing with you');
521 if(!in_array($contact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA)))
524 $relation_text = sprintf($relation_text,htmlentities($contact['name']));
526 if(($contact['network'] === NETWORK_DFRN) && ($contact['rel'])) {
527 $url = "redir/{$contact['id']}";
528 $sparkle = ' class="sparkle" ';
531 $url = $contact['url'];
535 $insecure = t('Private communications are not available for this contact.');
537 $last_update = (($contact['last-update'] == '0000-00-00 00:00:00')
539 : datetime_convert('UTC',date_default_timezone_get(),$contact['last-update'],'D, j M Y, g:i A'));
541 if($contact['last-update'] !== '0000-00-00 00:00:00')
542 $last_update .= ' ' . (($contact['last-update'] <= $contact['success_update']) ? t("\x28Update was successful\x29") : t("\x28Update was not successful\x29"));
544 $lblsuggest = (($contact['network'] === NETWORK_DFRN) ? t('Suggest friends') : '');
546 $poll_enabled = in_array($contact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_FEED, NETWORK_MAIL, NETWORK_MAIL2));
548 $nettype = sprintf( t('Network type: %s'),network_to_name($contact['network'], $contact["url"]));
550 //$common = count_common_friends(local_user(),$contact['id']);
551 //$common_text = (($common) ? sprintf( tt('%d contact in common','%d contacts in common', $common),$common) : '');
553 $polling = (($contact['network'] === NETWORK_MAIL | $contact['network'] === NETWORK_FEED) ? 'polling' : '');
555 //$x = count_all_friends(local_user(), $contact['id']);
556 //$all_friends = (($x) ? t('View all contacts') : '');
559 $tab_str = contacts_tab($a, $contact_id, 2);
561 $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!') : '');
563 if ($contact['network'] == NETWORK_FEED)
564 $fetch_further_information = array('fetch_further_information', t('Fetch further information for feeds'), $contact['fetch_further_information'], t('Fetch further information for feeds'),
565 array('0'=>t('Disabled'), '1'=>t('Fetch information'), '2'=>t('Fetch information and keywords')));
567 if (in_array($contact['network'], array(NETWORK_FEED, NETWORK_MAIL, NETWORK_MAIL2)))
568 $poll_interval = contact_poll_interval($contact['priority'],(! $poll_enabled));
570 if ($contact['network'] == NETWORK_DFRN)
571 $profile_select = contact_profile_assign($contact['profile-id'],(($contact['network'] !== NETWORK_DFRN) ? true : false));
573 if (in_array($contact['network'], array(NETWORK_DIASPORA, NETWORK_OSTATUS)) AND
574 ($contact['rel'] == CONTACT_IS_FOLLOWER))
575 $follow = App::get_baseurl(true)."/follow?url=".urlencode($contact["url"]);
577 // Load contactact related actions like hide, suggest, delete and others
578 $contact_actions = contact_actions($contact);
581 $o .= replace_macros($tpl, array(
582 //'$header' => t('Contact Editor'),
583 '$header' => t("Contact"),
584 '$tab_str' => $tab_str,
585 '$submit' => t('Submit'),
586 '$lbl_vis1' => t('Profile Visibility'),
587 '$lbl_vis2' => sprintf( t('Please choose the profile you would like to display to %s when viewing your profile securely.'), $contact['name']),
588 '$lbl_info1' => t('Contact Information / Notes'),
589 '$infedit' => t('Edit contact notes'),
590 '$common_text' => $common_text,
591 '$common_link' => 'common/loc/' . local_user() . '/' . $contact['id'],
592 '$all_friends' => $all_friends,
593 '$relation_text' => $relation_text,
594 '$visit' => sprintf( t('Visit %s\'s profile [%s]'),$contact['name'],$contact['url']),
595 '$blockunblock' => t('Block/Unblock contact'),
596 '$ignorecont' => t('Ignore contact'),
597 '$lblcrepair' => t("Repair URL settings"),
598 '$lblrecent' => t('View conversations'),
599 '$lblsuggest' => $lblsuggest,
600 //'$delete' => t('Delete contact'),
601 '$nettype' => $nettype,
602 '$poll_interval' => $poll_interval,
603 '$poll_enabled' => $poll_enabled,
604 '$lastupdtext' => t('Last update:'),
605 '$lost_contact' => $lost_contact,
606 '$updpub' => t('Update public posts'),
607 '$last_update' => $last_update,
608 '$udnow' => t('Update now'),
609 '$follow' => $follow,
610 '$follow_text' => t("Connect/Follow"),
611 '$profile_select' => $profile_select,
612 '$contact_id' => $contact['id'],
613 '$block_text' => (($contact['blocked']) ? t('Unblock') : t('Block') ),
614 '$ignore_text' => (($contact['readonly']) ? t('Unignore') : t('Ignore') ),
615 '$insecure' => (($contact['network'] !== NETWORK_DFRN && $contact['network'] !== NETWORK_MAIL && $contact['network'] !== NETWORK_FACEBOOK && $contact['network'] !== NETWORK_DIASPORA) ? $insecure : ''),
616 '$info' => $contact['info'],
617 '$cinfo' => array('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,
632 '$profileurllabel' => t('Profile URL'),
633 '$profileurl' => $contact['url'],
634 '$account_type' => account_type($contact),
635 '$location' => bbcode($contact["location"]),
636 '$location_label' => t("Location:"),
637 '$xmpp' => bbcode($contact["xmpp"]),
638 '$xmpp_label' => t("XMPP:"),
639 '$about' => bbcode($contact["about"], false, false),
640 '$about_label' => t("About:"),
641 '$keywords' => $contact["keywords"],
642 '$keywords_label' => t("Tags:"),
643 '$contact_action_button' => t("Actions"),
644 '$contact_actions' => $contact_actions,
645 '$contact_status' => t("Status"),
646 '$contact_settings_label' => t('Contact Settings'),
647 '$contact_profile_label' => t("Profile"),
651 $arr = array('contact' => $contact,'output' => $o);
653 call_hooks('contact_edit', $arr);
655 return $arr['output'];
664 if(($a->argc == 2) && ($a->argv[1] === 'all')) {
668 elseif(($a->argc == 2) && ($a->argv[1] === 'blocked')) {
669 $sql_extra = " AND `blocked` = 1 ";
672 elseif(($a->argc == 2) && ($a->argv[1] === 'hidden')) {
673 $sql_extra = " AND `hidden` = 1 ";
676 elseif(($a->argc == 2) && ($a->argv[1] === 'ignored')) {
677 $sql_extra = " AND `readonly` = 1 ";
680 elseif(($a->argc == 2) && ($a->argv[1] === 'archived')) {
681 $sql_extra = " AND `archive` = 1 ";
685 $sql_extra = " AND `blocked` = 0 ";
687 $search = ((x($_GET,'search')) ? notags(trim($_GET['search'])) : '');
688 $nets = ((x($_GET,'nets')) ? notags(trim($_GET['nets'])) : '');
692 'label' => t('Suggestions'),
695 'title' => t('Suggest potential friends'),
696 'id' => 'suggestions-tab',
700 'label' => t('All Contacts'),
701 'url' => 'contacts/all',
702 'sel' => ($all) ? 'active' : '',
703 'title' => t('Show all contacts'),
704 'id' => 'showall-tab',
708 'label' => t('Unblocked'),
710 'sel' => ((! $all) && (! $blocked) && (! $hidden) && (! $search) && (! $nets) && (! $ignored) && (! $archived)) ? 'active' : '',
711 'title' => t('Only show unblocked contacts'),
712 'id' => 'showunblocked-tab',
717 'label' => t('Blocked'),
718 'url' => 'contacts/blocked',
719 'sel' => ($blocked) ? 'active' : '',
720 'title' => t('Only show blocked contacts'),
721 'id' => 'showblocked-tab',
726 'label' => t('Ignored'),
727 'url' => 'contacts/ignored',
728 'sel' => ($ignored) ? 'active' : '',
729 'title' => t('Only show ignored contacts'),
730 'id' => 'showignored-tab',
735 'label' => t('Archived'),
736 'url' => 'contacts/archived',
737 'sel' => ($archived) ? 'active' : '',
738 'title' => t('Only show archived contacts'),
739 'id' => 'showarchived-tab',
744 'label' => t('Hidden'),
745 'url' => 'contacts/hidden',
746 'sel' => ($hidden) ? 'active' : '',
747 'title' => t('Only show hidden contacts'),
748 'id' => 'showhidden-tab',
754 $tab_tpl = get_markup_template('common_tabs.tpl');
755 $t = replace_macros($tab_tpl, array('$tabs'=>$tabs));
761 $search_hdr = $search;
762 $search_txt = dbesc(protect_sprintf(preg_quote($search)));
765 $sql_extra .= (($searching) ? " AND (name REGEXP '$search_txt' OR url REGEXP '$search_txt' OR nick REGEXP '$search_txt') " : "");
768 $sql_extra .= sprintf(" AND network = '%s' ", dbesc($nets));
770 $sql_extra2 = ((($sort_type > 0) && ($sort_type <= CONTACT_IS_FRIEND)) ? sprintf(" AND `rel` = %d ",intval($sort_type)) : '');
773 $r = q("SELECT COUNT(*) AS `total` FROM `contact`
774 WHERE `uid` = %d AND `self` = 0 AND `pending` = 0 $sql_extra $sql_extra2 ",
775 intval($_SESSION['uid']));
776 if (dbm::is_result($r)) {
777 $a->set_pager_total($r[0]['total']);
778 $total = $r[0]['total'];
781 $sql_extra3 = unavailable_networks();
783 $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 ",
784 intval($_SESSION['uid']),
785 intval($a->pager['start']),
786 intval($a->pager['itemspage'])
791 if (dbm::is_result($r)) {
792 foreach ($r as $rr) {
793 $contacts[] = _contact_detail_for_template($rr);
797 $tpl = get_markup_template("contacts-template.tpl");
798 $o .= replace_macros($tpl, array(
799 '$baseurl' => z_root(),
800 '$header' => t('Contacts') . (($nets) ? ' - ' . network_to_name($nets) : ''),
803 '$search' => $search_hdr,
804 '$desc' => t('Search your contacts'),
805 '$finding' => (($searching) ? sprintf(t('Results for: %s'),$search) : ""),
806 '$submit' => t('Find'),
808 '$contacts' => $contacts,
809 '$contact_drop_confirm' => t('Do you really want to delete this contact?'),
811 '$batch_actions' => array(
812 'contacts_batch_update' => t('Update'),
813 'contacts_batch_block' => t('Block')."/".t("Unblock"),
814 "contacts_batch_ignore" => t('Ignore')."/".t("Unignore"),
815 "contacts_batch_archive" => t('Archive')."/".t("Unarchive"),
816 "contacts_batch_drop" => t('Delete'),
818 '$h_batch_actions' => t('Batch Actions'),
819 '$paginate' => paginate($a),
827 * @brief List of pages for the Contact TabBar
829 * Available Pages are 'Status', 'Profile', 'Contacts' and 'Common Friends'
832 * @param int $contact_id The ID of the contact
833 * @param int $active_tab 1 if tab should be marked as active
835 * @return array with with contact TabBar data
837 function contacts_tab($a, $contact_id, $active_tab) {
841 'label'=>t('Status'),
842 'url' => "contacts/".$contact_id."/posts",
843 'sel' => (($active_tab == 1)?'active':''),
844 'title' => t('Status Messages and Posts'),
845 'id' => 'status-tab',
849 'label'=>t('Profile'),
850 'url' => "contacts/".$contact_id,
851 'sel' => (($active_tab == 2)?'active':''),
852 'title' => t('Profile Details'),
853 'id' => 'status-tab',
858 // Show this tab only if there is visible friend list
859 $x = count_all_friends(local_user(), $contact_id);
861 $tabs[] = array('label'=>t('Contacts'),
862 'url' => "allfriends/".$contact_id,
863 'sel' => (($active_tab == 3)?'active':''),
864 'title' => t('View all contacts'),
865 'id' => 'allfriends-tab',
868 // Show this tab only if there is visible common friend list
869 $common = count_common_friends(local_user(),$contact_id);
871 $tabs[] = array('label'=>t('Common Friends'),
872 'url' => "common/loc/".local_user()."/".$contact_id,
873 'sel' => (($active_tab == 4)?'active':''),
874 'title' => t('View all common friends'),
875 'id' => 'common-loc-tab',
878 $tabs[] = array('label' => t('Advanced'),
879 'url' => 'crepair/' . $contact_id,
880 'sel' => (($active_tab == 5)?'active':''),
881 'title' => t('Advanced Contact Settings'),
882 'id' => 'advanced-tab',
885 $tab_tpl = get_markup_template('common_tabs.tpl');
886 $tab_str = replace_macros($tab_tpl, array('$tabs' => $tabs));
891 function contact_posts($a, $contact_id) {
893 $r = q("SELECT `url` FROM `contact` WHERE `id` = %d", intval($contact_id));
896 $a->page['aside'] = "";
897 profile_load($a, "", 0, get_contact_details_by_url($contact["url"]));
901 $tab_str = contacts_tab($a, $contact_id, 1);
905 $o .= posts_from_contact_url($a, $contact["url"]);
910 function _contact_detail_for_template($rr){
913 case CONTACT_IS_FRIEND:
914 $dir_icon = 'images/lrarrow.gif';
915 $alt_text = t('Mutual Friendship');
917 case CONTACT_IS_FOLLOWER;
918 $dir_icon = 'images/larrow.gif';
919 $alt_text = t('is a fan of yours');
921 case CONTACT_IS_SHARING;
922 $dir_icon = 'images/rarrow.gif';
923 $alt_text = t('you are a fan of');
928 if(($rr['network'] === NETWORK_DFRN) && ($rr['rel'])) {
929 $url = "redir/{$rr['id']}";
930 $sparkle = ' class="sparkle" ';
938 'img_hover' => sprintf( t('Visit %s\'s profile [%s]'),$rr['name'],$rr['url']),
939 'edit_hover' => t('Edit contact'),
940 'photo_menu' => contact_photo_menu($rr),
942 'alt_text' => $alt_text,
943 'dir_icon' => $dir_icon,
944 'thumb' => proxy_url($rr['thumb'], false, PROXY_SIZE_THUMB),
945 'name' => htmlentities($rr['name']),
946 'username' => htmlentities($rr['name']),
947 'account_type' => account_type($rr),
948 'sparkle' => $sparkle,
949 'itemurl' => (($rr['addr'] != "") ? $rr['addr'] : $rr['url']),
951 'network' => network_to_name($rr['network'], $rr['url']),
957 * @brief Gives a array with actions which can performed to a given contact
959 * This includes actions like e.g. 'block', 'hide', 'archive', 'delete' and others
961 * @param array $contact Data about the Contact
962 * @return array with contact related actions
964 function contact_actions($contact) {
966 $poll_enabled = in_array($contact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_FEED, NETWORK_MAIL, NETWORK_MAIL2));
967 $contact_action = array();
969 // Provide friend suggestion only for Friendica contacts
970 if($contact['network'] === NETWORK_DFRN) {
971 $contact_actions['suggest'] = array(
972 'label' => t('Suggest friends'),
973 'url' => 'fsuggest/' . $contact['id'],
981 $contact_actions['update'] = array(
982 'label' => t('Update now'),
983 'url' => 'contacts/' . $contact['id'] . '/update',
990 $contact_actions['block'] = array(
991 'label' => (intval($contact['blocked']) ? t('Unblock') : t('Block') ),
992 'url' => 'contacts/' . $contact['id'] . '/block',
993 'title' => t('Toggle Blocked status'),
994 'sel' => (intval($contact['blocked']) ? 'active' : ''),
995 'id' => 'toggle-block',
998 $contact_actions['ignore'] = array(
999 'label' => (intval($contact['readonly']) ? t('Unignore') : t('Ignore') ),
1000 'url' => 'contacts/' . $contact['id'] . '/ignore',
1001 'title' => t('Toggle Ignored status'),
1002 'sel' => (intval($contact['readonly']) ? 'active' : ''),
1003 'id' => 'toggle-ignore',
1006 $contact_actions['archive'] = array(
1007 'label' => (intval($contact['archive']) ? t('Unarchive') : t('Archive') ),
1008 'url' => 'contacts/' . $contact['id'] . '/archive',
1009 'title' => t('Toggle Archive status'),
1010 'sel' => (intval($contact['archive']) ? 'active' : ''),
1011 'id' => 'toggle-archive',
1014 $contact_actions['delete'] = array(
1015 'label' => t('Delete'),
1016 'url' => 'contacts/' . $contact['id'] . '/drop',
1017 'title' => t('Delete contact'),
1022 return $contact_actions;