friendica/mod/contacts.php

1056 lines
31 KiB
PHP
Raw Normal View History

2010-07-02 01:48:07 +02:00
<?php
/**
* @file mod/contacts.php
*/
use Friendica\App;
2017-08-26 08:04:21 +02:00
use Friendica\Core\System;
2017-11-05 13:15:53 +01:00
use Friendica\Core\Worker;
2017-11-08 04:57:46 +01:00
use Friendica\Database\DBM;
2017-12-07 15:04:24 +01:00
use Friendica\Model\Contact;
use Friendica\Model\GContact;
2017-12-09 19:45:17 +01:00
use Friendica\Model\Group;
2017-05-07 20:44:30 +02:00
use Friendica\Network\Probe;
2017-05-07 20:40:23 +02:00
require_once 'include/contact_selectors.php';
require_once 'mod/proxy.php';
2017-12-27 16:26:17 +01:00
require_once 'include/follow.php';
2010-09-09 05:14:17 +02:00
function contacts_init(App $a) {
if (! local_user()) {
2011-07-18 01:08:47 +02:00
return;
}
2011-07-18 01:08:47 +02:00
$contact_id = 0;
if((($a->argc == 2) && intval($a->argv[1])) || (($a->argc == 3) && intval($a->argv[1]) && ($a->argv[2] == "posts"))) {
$contact_id = intval($a->argv[1]);
$r = q("SELECT * FROM `contact` WHERE `uid` = %d and `id` = %d LIMIT 1",
intval(local_user()),
intval($contact_id)
);
2017-11-08 04:57:46 +01:00
if (! DBM::is_result($r)) {
$contact_id = 0;
}
}
2017-05-07 20:40:23 +02:00
require_once 'include/contact_widgets.php';
if ($_GET['nets'] == "all") {
$_GET['nets'] = "";
}
if (! x($a->page,'aside')) {
2010-11-01 00:38:22 +01:00
$a->page['aside'] = '';
}
if ($contact_id) {
$a->data['contact'] = $r[0];
2015-12-01 18:31:08 +01:00
if (($a->data['contact']['network'] != "") && ($a->data['contact']['network'] != NETWORK_DFRN)) {
$networkname = format_network_name($a->data['contact']['network'],$a->data['contact']['url']);
} else {
$networkname = '';
}
2015-12-01 18:31:08 +01:00
/// @TODO Add nice spaces
$vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"),array(
'$name' => htmlentities($a->data['contact']['name']),
'$photo' => $a->data['contact']['photo'],
'$url' => ($a->data['contact']['network'] == NETWORK_DFRN) ? "redir/".$a->data['contact']['id'] : $a->data['contact']['url'],
'$addr' => (($a->data['contact']['addr'] != "") ? ($a->data['contact']['addr']) : ""),
'$network_name' => $networkname,
'$network' => t('Network:'),
'$account_type' => Contact::getAccountType($a->data['contact'])
));
$finpeople_widget = '';
$follow_widget = '';
$networks_widget = '';
} else {
$vcard_widget = '';
$networks_widget .= networks_widget('contacts',$_GET['nets']);
if (isset($_GET['add'])) {
$follow_widget = follow_widget($_GET['add']);
} else {
$follow_widget = follow_widget();
}
$findpeople_widget .= findpeople_widget();
}
2017-12-09 19:45:17 +01:00
$groups_widget .= Group::sidebarWidget('contacts','group','full',0,$contact_id);
$a->page['aside'] .= replace_macros(get_markup_template("contacts-widget-sidebar.tpl"),array(
'$vcard_widget' => $vcard_widget,
'$findpeople_widget' => $findpeople_widget,
'$follow_widget' => $follow_widget,
'$groups_widget' => $groups_widget,
'$networks_widget' => $networks_widget
));
2011-03-22 05:43:22 +01:00
$base = System::baseUrl();
$tpl = get_markup_template("contacts-head.tpl");
$a->page['htmlhead'] .= replace_macros($tpl,array(
'$baseurl' => System::baseUrl(true),
'$base' => $base
));
$tpl = get_markup_template("contacts-end.tpl");
$a->page['end'] .= replace_macros($tpl,array(
'$baseurl' => System::baseUrl(true),
'$base' => $base
));
2012-06-06 05:33:11 +02:00
2010-07-02 01:48:07 +02:00
}
function contacts_batch_actions(App $a) {
$contacts_id = $_POST['contact_batch'];
if (!is_array($contacts_id)) return;
$orig_records = q("SELECT * FROM `contact` WHERE `id` IN (%s) AND `uid` = %d AND `self` = 0",
implode(",", $contacts_id),
intval(local_user())
);
$count_actions=0;
foreach($orig_records as $orig_record) {
$contact_id = $orig_record['id'];
if (x($_POST, 'contacts_batch_update')) {
_contact_update($contact_id);
$count_actions++;
}
if (x($_POST, 'contacts_batch_block')) {
$r = _contact_block($contact_id, $orig_record);
if ($r) $count_actions++;
}
if (x($_POST, 'contacts_batch_ignore')) {
$r = _contact_ignore($contact_id, $orig_record);
if ($r) $count_actions++;
}
if (x($_POST, 'contacts_batch_archive')) {
$r = _contact_archive($contact_id, $orig_record);
if ($r) $count_actions++;
}
if (x($_POST, 'contacts_batch_drop')) {
_contact_drop($orig_record);
$count_actions++;
}
}
if ($count_actions>0) {
2016-01-20 17:52:58 +01:00
info ( sprintf( tt("%d contact edited.", "%d contacts edited.", $count_actions), $count_actions) );
}
if (x($_SESSION,'return_url')) {
goaway('' . $_SESSION['return_url']);
}
else {
goaway('contacts');
}
}
function contacts_post(App $a) {
if (! local_user()) {
2010-07-02 01:48:07 +02:00
return;
}
2010-07-02 01:48:07 +02:00
if ($a->argv[1]==="batch") {
contacts_batch_actions($a);
return;
}
2010-07-02 01:48:07 +02:00
$contact_id = intval($a->argv[1]);
if (! $contact_id) {
2010-07-02 01:48:07 +02:00
return;
}
2010-07-11 11:52:47 +02:00
2010-07-11 08:03:54 +02:00
$orig_record = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
2010-07-02 01:48:07 +02:00
intval($contact_id),
2010-10-18 23:34:59 +02:00
intval(local_user())
2010-07-02 01:48:07 +02:00
);
if (! count($orig_record)) {
2010-09-09 05:14:17 +02:00
notice( t('Could not access contact record.') . EOL);
goaway('contacts');
2010-07-11 08:03:54 +02:00
return; // NOTREACHED
}
2010-07-02 01:48:07 +02:00
2011-01-07 12:15:52 +01:00
call_hooks('contact_edit_post', $_POST);
2010-07-11 08:03:54 +02:00
$profile_id = intval($_POST['profile-assign']);
if ($profile_id) {
2010-07-11 08:03:54 +02:00
$r = q("SELECT `id` FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
intval($profile_id),
2010-10-18 23:34:59 +02:00
intval(local_user())
2010-07-11 08:03:54 +02:00
);
2017-11-08 04:57:46 +01:00
if (! DBM::is_result($r)) {
2010-07-28 07:32:21 +02:00
notice( t('Could not locate selected profile.') . EOL);
2010-07-02 01:48:07 +02:00
return;
2010-07-11 08:03:54 +02:00
}
2010-07-02 01:48:07 +02:00
}
2011-05-31 07:17:04 +02:00
2011-12-06 03:36:26 +01:00
$hidden = intval($_POST['hidden']);
$notify = intval($_POST['notify']);
$fetch_further_information = intval($_POST['fetch_further_information']);
$ffi_keyword_blacklist = escape_tags(trim($_POST['ffi_keyword_blacklist']));
$priority = intval($_POST['poll']);
if($priority > 5 || $priority < 0)
$priority = 0;
$info = escape_tags(trim($_POST['info']));
2011-12-06 03:36:26 +01:00
$r = q("UPDATE `contact` SET `profile-id` = %d, `priority` = %d , `info` = '%s',
`hidden` = %d, `notify_new_posts` = %d, `fetch_further_information` = %d,
`ffi_keyword_blacklist` = '%s' WHERE `id` = %d AND `uid` = %d",
2010-07-11 08:03:54 +02:00
intval($profile_id),
intval($priority),
dbesc($info),
2011-12-06 03:36:26 +01:00
intval($hidden),
intval($notify),
intval($fetch_further_information),
dbesc($ffi_keyword_blacklist),
2010-07-11 08:03:54 +02:00
intval($contact_id),
2010-10-18 23:34:59 +02:00
intval(local_user())
2010-07-11 08:03:54 +02:00
);
if($r)
info( t('Contact updated.') . EOL);
else
2010-07-28 07:32:21 +02:00
notice( t('Failed to update contact record.') . EOL);
$r = q("select * from contact where id = %d and uid = %d limit 1",
intval($contact_id),
intval(local_user())
);
2017-11-08 04:57:46 +01:00
if($r && DBM::is_result($r))
$a->data['contact'] = $r[0];
2010-07-11 08:03:54 +02:00
return;
2010-07-02 01:48:07 +02:00
}
/*contact actions*/
function _contact_update($contact_id) {
2015-09-03 22:18:25 +02:00
$r = q("SELECT `uid`, `url`, `network` FROM `contact` WHERE `id` = %d", intval($contact_id));
if (!$r)
2015-09-03 22:18:25 +02:00
return;
$uid = $r[0]["uid"];
if ($uid != local_user())
2015-09-03 22:18:25 +02:00
return;
if ($r[0]["network"] == NETWORK_OSTATUS) {
2017-10-15 21:34:15 +02:00
$result = new_contact($uid, $r[0]["url"], false, $r[0]["network"]);
2015-09-03 22:18:25 +02:00
if ($result['success'])
2015-09-03 22:18:25 +02:00
$r = q("UPDATE `contact` SET `subhub` = 1 WHERE `id` = %d",
intval($contact_id));
} else
2015-09-03 22:18:25 +02:00
// pull feed and consume it, which should subscribe to the hub.
2017-11-12 19:50:35 +01:00
Worker::add(PRIORITY_HIGH, "OnePoll", $contact_id, "force");
}
function _contact_update_profile($contact_id) {
2015-09-03 22:18:25 +02:00
$r = q("SELECT `uid`, `url`, `network` FROM `contact` WHERE `id` = %d", intval($contact_id));
if (!$r)
return;
2015-09-03 22:18:25 +02:00
$uid = $r[0]["uid"];
if ($uid != local_user())
2015-09-03 22:18:25 +02:00
return;
2017-05-07 18:33:54 +02:00
$data = Probe::uri($r[0]["url"], "", 0, false);
// "Feed" or "Unknown" is mostly a sign of communication problems
if ((in_array($data["network"], array(NETWORK_FEED, NETWORK_PHANTOM))) && ($data["network"] != $r[0]["network"]))
2015-04-12 10:32:02 +02:00
return;
$updatefields = array("name", "nick", "url", "addr", "batch", "notify", "poll", "request", "confirm",
"poco", "network", "alias");
$update = array();
2015-09-03 22:18:25 +02:00
if ($data["network"] == NETWORK_OSTATUS) {
$result = new_contact($uid, $data["url"], false);
if ($result['success'])
2015-09-03 22:18:25 +02:00
$update["subhub"] = true;
}
foreach($updatefields AS $field)
if (isset($data[$field]) && ($data[$field] != ""))
$update[$field] = $data[$field];
2015-04-12 10:32:02 +02:00
$update["nurl"] = normalise_link($data["url"]);
$query = "";
if (isset($data["priority"]) && ($data["priority"] != 0))
$query = "`priority` = ".intval($data["priority"]);
foreach($update AS $key => $value) {
if ($query != "")
$query .= ", ";
$query .= "`".$key."` = '".dbesc($value)."'";
}
if ($query == "")
return;
$r = q("UPDATE `contact` SET $query WHERE `id` = %d AND `uid` = %d",
intval($contact_id),
intval(local_user())
);
// Update the entry in the contact table
Contact::updateAvatar($data['photo'], local_user(), $contact_id, true);
2016-01-10 19:06:34 +01:00
// Update the entry in the gcontact table
GContact::updateFromProbe($data["url"]);
}
function _contact_block($contact_id, $orig_record) {
$blocked = (($orig_record['blocked']) ? 0 : 1);
$r = q("UPDATE `contact` SET `blocked` = %d WHERE `id` = %d AND `uid` = %d",
intval($blocked),
intval($contact_id),
intval(local_user())
);
return $r;
}
function _contact_ignore($contact_id, $orig_record) {
$readonly = (($orig_record['readonly']) ? 0 : 1);
$r = q("UPDATE `contact` SET `readonly` = %d WHERE `id` = %d AND `uid` = %d",
intval($readonly),
intval($contact_id),
intval(local_user())
);
return $r;
}
function _contact_archive($contact_id, $orig_record) {
$archived = (($orig_record['archive']) ? 0 : 1);
$r = q("UPDATE `contact` SET `archive` = %d WHERE `id` = %d AND `uid` = %d",
intval($archived),
intval($contact_id),
intval(local_user())
);
if ($archived) {
q("UPDATE `item` SET `private` = 2 WHERE `contact-id` = %d AND `uid` = %d", intval($contact_id), intval(local_user()));
}
return $r;
}
function _contact_drop($orig_record)
{
$a = get_app();
$r = q("SELECT `contact`.*, `user`.* FROM `contact` INNER JOIN `user` ON `contact`.`uid` = `user`.`uid`
WHERE `user`.`uid` = %d AND `contact`.`self` LIMIT 1",
intval($a->user['uid'])
);
2017-11-08 04:57:46 +01:00
if (!DBM::is_result($r)) {
return;
}
Contact::terminateFriendship($r[0], $orig_record);
Contact::remove($orig_record['id']);
}
2010-07-02 01:48:07 +02:00
function contacts_content(App $a) {
2010-07-11 08:03:54 +02:00
2010-11-01 00:38:22 +01:00
$sort_type = 0;
$o = '';
nav_set_selected('contacts');
2010-11-01 00:38:22 +01:00
if (! local_user()) {
2010-07-28 07:32:21 +02:00
notice( t('Permission denied.') . EOL);
2010-07-02 01:48:07 +02:00
return;
}
if($a->argc == 3) {
2010-07-11 08:03:54 +02:00
$contact_id = intval($a->argv[1]);
if(! $contact_id)
2010-07-11 08:03:54 +02:00
return;
$cmd = $a->argv[2];
2011-08-19 14:20:30 +02:00
$orig_record = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d AND `self` = 0 LIMIT 1",
2010-07-11 08:03:54 +02:00
intval($contact_id),
2010-10-18 23:34:59 +02:00
intval(local_user())
2010-07-11 08:03:54 +02:00
);
if(! count($orig_record)) {
2010-07-28 07:32:21 +02:00
notice( t('Could not access contact record.') . EOL);
goaway('contacts');
2010-07-11 08:03:54 +02:00
return; // NOTREACHED
}
if($cmd === 'update') {
_contact_update($contact_id);
goaway('contacts/' . $contact_id);
// NOTREACHED
}
2010-07-11 08:03:54 +02:00
if($cmd === 'updateprofile') {
_contact_update_profile($contact_id);
goaway('crepair/' . $contact_id);
// NOTREACHED
}
if($cmd === 'block') {
$r = _contact_block($contact_id, $orig_record[0]);
if ($r) {
$blocked = (($orig_record[0]['blocked']) ? 0 : 1);
info((($blocked) ? t('Contact has been blocked') : t('Contact has been unblocked')).EOL);
2010-07-28 07:32:21 +02:00
}
goaway('contacts/' . $contact_id);
2010-07-28 07:32:21 +02:00
return; // NOTREACHED
}
if($cmd === 'ignore') {
$r = _contact_ignore($contact_id, $orig_record[0]);
if ($r) {
$readonly = (($orig_record[0]['readonly']) ? 0 : 1);
info((($readonly) ? t('Contact has been ignored') : t('Contact has been unignored')).EOL);
2010-07-11 08:03:54 +02:00
}
goaway('contacts/' . $contact_id);
2010-07-11 08:03:54 +02:00
return; // NOTREACHED
}
2012-04-28 02:17:58 +02:00
if($cmd === 'archive') {
$r = _contact_archive($contact_id, $orig_record[0]);
if ($r) {
$archived = (($orig_record[0]['archive']) ? 0 : 1);
info((($archived) ? t('Contact has been archived') : t('Contact has been unarchived')).EOL);
}
goaway('contacts/' . $contact_id);
2012-04-28 02:17:58 +02:00
return; // NOTREACHED
}
if($cmd === 'drop') {
// Check if we should do HTML-based delete confirmation
if($_REQUEST['confirm']) {
// <form> can't take arguments in its "action" parameter
// so add any arguments as hidden inputs
$query = explode_querystring($a->query_string);
$inputs = array();
foreach($query['args'] as $arg) {
if(strpos($arg, 'confirm=') === false) {
$arg_parts = explode('=', $arg);
$inputs[] = array('name' => $arg_parts[0], 'value' => $arg_parts[1]);
}
}
$a->page['aside'] = '';
return replace_macros(get_markup_template('contact_drop_confirm.tpl'), array(
2016-07-26 10:36:34 +02:00
'$header' => t('Drop contact'),
'$contact' => _contact_detail_for_template($orig_record[0]),
'$method' => 'get',
'$message' => t('Do you really want to delete this contact?'),
'$extra_inputs' => $inputs,
'$confirm' => t('Yes'),
'$confirm_url' => $query['base'],
'$confirm_name' => 'confirmed',
'$cancel' => t('Cancel'),
));
}
// Now check how the user responded to the confirmation query
if ($_REQUEST['canceled']) {
if (x($_SESSION,'return_url')) {
goaway('' . $_SESSION['return_url']);
}
else {
goaway('contacts');
}
}
_contact_drop($orig_record[0]);
info( t('Contact has been removed.') . EOL );
if (x($_SESSION,'return_url')) {
goaway('' . $_SESSION['return_url']);
}
else {
goaway('contacts');
}
2010-07-11 08:03:54 +02:00
return; // NOTREACHED
}
if ($cmd === 'posts') {
return contact_posts($a, $contact_id);
}
2010-07-11 08:03:54 +02:00
}
2010-07-06 14:07:28 +02:00
$_SESSION['return_url'] = $a->query_string;
if((x($a->data,'contact')) && (is_array($a->data['contact']))) {
2010-07-06 14:07:28 +02:00
2011-11-10 04:30:14 +01:00
$contact_id = $a->data['contact']['id'];
$contact = $a->data['contact'];
2010-07-06 14:07:28 +02:00
2012-04-11 03:08:06 +02:00
$a->page['htmlhead'] .= replace_macros(get_markup_template('contact_head.tpl'), array(
'$baseurl' => System::baseUrl(true),
2012-04-11 03:08:06 +02:00
));
$a->page['end'] .= replace_macros(get_markup_template('contact_end.tpl'), array(
'$baseurl' => System::baseUrl(true),
));
2017-05-07 20:40:23 +02:00
require_once 'include/contact_selectors.php';
2010-07-06 14:07:28 +02:00
2011-05-11 13:37:13 +02:00
$tpl = get_markup_template("contact_edit.tpl");
2010-07-06 14:07:28 +02:00
2011-11-10 04:30:14 +01:00
switch($contact['rel']) {
2011-08-08 01:15:54 +02:00
case CONTACT_IS_FRIEND:
2010-07-11 08:03:54 +02:00
$dir_icon = 'images/lrarrow.gif';
2011-11-09 06:22:45 +01:00
$relation_text = t('You are mutual friends with %s');
2010-09-09 05:14:17 +02:00
break;
2011-08-08 01:15:54 +02:00
case CONTACT_IS_FOLLOWER;
2010-07-11 08:03:54 +02:00
$dir_icon = 'images/larrow.gif';
2011-11-09 06:22:45 +01:00
$relation_text = t('You are sharing with %s');
2010-09-09 05:14:17 +02:00
break;
2011-08-08 01:15:54 +02:00
case CONTACT_IS_SHARING;
2010-09-09 05:14:17 +02:00
$dir_icon = 'images/rarrow.gif';
2011-11-09 06:22:45 +01:00
$relation_text = t('%s is sharing with you');
2010-09-09 05:14:17 +02:00
break;
default:
break;
2010-07-11 08:03:54 +02:00
}
if(!in_array($contact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA)))
$relation_text = "";
$relation_text = sprintf($relation_text,htmlentities($contact['name']));
2011-11-09 06:22:45 +01:00
if(($contact['network'] === NETWORK_DFRN) && ($contact['rel'])) {
2011-11-10 04:30:14 +01:00
$url = "redir/{$contact['id']}";
$sparkle = ' class="sparkle" ';
}
else {
2011-11-10 04:30:14 +01:00
$url = $contact['url'];
$sparkle = '';
}
2011-11-09 06:22:45 +01:00
$insecure = t('Private communications are not available for this contact.');
2011-03-21 03:29:01 +01:00
2017-02-28 00:37:15 +01:00
$last_update = (($contact['last-update'] <= NULL_DATE)
? t('Never')
2011-11-10 04:30:14 +01:00
: datetime_convert('UTC',date_default_timezone_get(),$contact['last-update'],'D, j M Y, g:i A'));
if ($contact['last-update'] > NULL_DATE) {
$last_update .= ' ' . (($contact['last-update'] <= $contact['success_update']) ? t("\x28Update was successful\x29") : t("\x28Update was not successful\x29"));
2017-03-19 09:04:04 +01:00
}
2011-11-10 04:30:14 +01:00
$lblsuggest = (($contact['network'] === NETWORK_DFRN) ? t('Suggest friends') : '');
2011-06-27 07:57:08 +02:00
$poll_enabled = in_array($contact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_FEED, NETWORK_MAIL));
2011-08-26 03:12:42 +02:00
2015-07-16 10:09:59 +02:00
$nettype = sprintf( t('Network type: %s'),network_to_name($contact['network'], $contact["url"]));
2011-06-27 07:57:08 +02:00
//$common = GlobalContact::countCommonFriends(local_user(),$contact['id']);
//$common_text = (($common) ? sprintf( tt('%d contact in common','%d contacts in common', $common),$common) : '');
2011-11-09 06:22:45 +01:00
$polling = (($contact['network'] === NETWORK_MAIL | $contact['network'] === NETWORK_FEED) ? 'polling' : '');
2011-11-09 06:22:45 +01:00
//$x = GlobalContact::countAllFriends(local_user(), $contact['id']);
//$all_friends = (($x) ? t('View all contacts') : '');
2011-11-09 06:22:45 +01:00
2011-11-10 04:30:14 +01:00
// tabs
$tab_str = contacts_tab($a, $contact_id, 2);
2011-11-10 04:30:14 +01:00
2017-02-28 00:37:15 +01:00
$lost_contact = (($contact['archive'] && $contact['term-date'] > NULL_DATE && $contact['term-date'] < datetime_convert('','','now')) ? t('Communications lost with this contact!') : '');
2011-11-10 04:30:14 +01:00
2017-03-19 09:04:04 +01:00
if ($contact['network'] == NETWORK_FEED) {
$fetch_further_information = array('fetch_further_information',
t('Fetch further information for feeds'),
$contact['fetch_further_information'],
t("Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."),
array('0' => t('Disabled'),
'1' => t('Fetch information'),
'3' => t('Fetch keywords'),
'2' => t('Fetch information and keywords')));
2017-03-19 09:04:04 +01:00
}
if (in_array($contact['network'], array(NETWORK_FEED, NETWORK_MAIL)))
$poll_interval = contact_poll_interval($contact['priority'],(! $poll_enabled));
if ($contact['network'] == NETWORK_DFRN)
$profile_select = contact_profile_assign($contact['profile-id'],(($contact['network'] !== NETWORK_DFRN) ? true : false));
if (in_array($contact['network'], array(NETWORK_DIASPORA, NETWORK_OSTATUS))) {
if ($contact['rel'] == CONTACT_IS_FOLLOWER) {
$follow = System::baseUrl(true)."/follow?url=".urlencode($contact["url"]);
$follow_text = t("Connect/Follow");
} elseif ($contact['rel'] == CONTACT_IS_FRIEND) {
$follow = System::baseUrl(true)."/unfollow?url=".urlencode($contact["url"]);
$follow_text = t("Disconnect/Unfollow");
}
}
// Load contactact related actions like hide, suggest, delete and others
$contact_actions = contact_actions($contact);
$o .= replace_macros($tpl, array(
//'$header' => t('Contact Editor'),
'$header' => t("Contact"),
2011-11-10 04:30:14 +01:00
'$tab_str' => $tab_str,
'$submit' => t('Submit'),
'$lbl_vis1' => t('Profile Visibility'),
2011-11-10 04:30:14 +01:00
'$lbl_vis2' => sprintf( t('Please choose the profile you would like to display to %s when viewing your profile securely.'), $contact['name']),
'$lbl_info1' => t('Contact Information / Notes'),
'$lbl_info2' => t('Their personal note'),
'$reason' => trim(notags($contact['reason'])),
2011-11-09 06:22:45 +01:00
'$infedit' => t('Edit contact notes'),
2011-11-02 03:16:33 +01:00
'$common_text' => $common_text,
'$common_link' => 'common/loc/' . local_user() . '/' . $contact['id'],
'$all_friends' => $all_friends,
2011-11-09 06:22:45 +01:00
'$relation_text' => $relation_text,
2011-11-10 04:30:14 +01:00
'$visit' => sprintf( t('Visit %s\'s profile [%s]'),$contact['name'],$contact['url']),
2010-11-17 08:26:14 +01:00
'$blockunblock' => t('Block/Unblock contact'),
'$ignorecont' => t('Ignore contact'),
'$lblcrepair' => t("Repair URL settings"),
'$lblrecent' => t('View conversations'),
2011-06-27 07:57:08 +02:00
'$lblsuggest' => $lblsuggest,
//'$delete' => t('Delete contact'),
2011-08-26 03:12:42 +02:00
'$nettype' => $nettype,
'$poll_interval' => $poll_interval,
2011-08-26 03:12:42 +02:00
'$poll_enabled' => $poll_enabled,
'$lastupdtext' => t('Last update:'),
2012-06-15 01:56:46 +02:00
'$lost_contact' => $lost_contact,
'$updpub' => t('Update public posts'),
'$last_update' => $last_update,
'$udnow' => t('Update now'),
'$follow' => $follow,
'$follow_text' => $follow_text,
'$profile_select' => $profile_select,
2011-11-10 04:30:14 +01:00
'$contact_id' => $contact['id'],
'$block_text' => (($contact['blocked']) ? t('Unblock') : t('Block') ),
'$ignore_text' => (($contact['readonly']) ? t('Unignore') : t('Ignore') ),
'$insecure' => (($contact['network'] !== NETWORK_DFRN && $contact['network'] !== NETWORK_MAIL && $contact['network'] !== NETWORK_FACEBOOK && $contact['network'] !== NETWORK_DIASPORA) ? $insecure : ''),
'$info' => $contact['info'],
'$cinfo' => array('info', '', $contact['info'], ''),
2011-11-10 04:30:14 +01:00
'$blocked' => (($contact['blocked']) ? t('Currently blocked') : ''),
'$ignored' => (($contact['readonly']) ? t('Currently ignored') : ''),
2012-04-28 02:17:58 +02:00
'$archived' => (($contact['archive']) ? t('Currently archived') : ''),
'$pending' => (($contact['pending']) ? t('Awaiting connection acknowledge') : ''),
2011-12-06 03:36:26 +01:00
'$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')),
'$notify' => array('notify', t('Notification for new posts'), ($contact['notify_new_posts'] == 1), t('Send a notification of every new post of this contact')),
'$fetch_further_information' => $fetch_further_information,
'$ffi_keyword_blacklist' => $contact['ffi_keyword_blacklist'],
'$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')),
2011-11-10 04:30:14 +01:00
'$photo' => $contact['photo'],
'$name' => htmlentities($contact['name']),
2010-07-06 14:07:28 +02:00
'$dir_icon' => $dir_icon,
2010-07-11 12:35:33 +02:00
'$alt_text' => $alt_text,
'$sparkle' => $sparkle,
2012-12-22 20:57:29 +01:00
'$url' => $url,
'$profileurllabel' => t('Profile URL'),
'$profileurl' => $contact['url'],
'$account_type' => Contact::getAccountType($contact),
'$location' => bbcode($contact["location"]),
'$location_label' => t("Location:"),
'$xmpp' => bbcode($contact["xmpp"]),
'$xmpp_label' => t("XMPP:"),
'$about' => bbcode($contact["about"], false, false),
'$about_label' => t("About:"),
'$keywords' => $contact["keywords"],
'$keywords_label' => t("Tags:"),
'$contact_action_button' => t("Actions"),
'$contact_actions' => $contact_actions,
'$contact_status' => t("Status"),
'$contact_settings_label' => t('Contact Settings'),
'$contact_profile_label' => t("Profile"),
2010-07-06 14:07:28 +02:00
));
2011-11-10 04:30:14 +01:00
$arr = array('contact' => $contact,'output' => $o);
2011-01-07 12:15:52 +01:00
call_hooks('contact_edit', $arr);
return $arr['output'];
2010-07-06 14:07:28 +02:00
}
2010-07-19 15:58:03 +02:00
2012-02-11 12:07:15 +01:00
$blocked = false;
2012-02-14 05:38:00 +01:00
$hidden = false;
$ignored = false;
2012-02-14 05:38:00 +01:00
$all = false;
2012-02-11 12:07:15 +01:00
if(($a->argc == 2) && ($a->argv[1] === 'all')) {
2010-07-02 01:48:07 +02:00
$sql_extra = '';
2012-02-14 05:38:00 +01:00
$all = true;
}
elseif(($a->argc == 2) && ($a->argv[1] === 'blocked')) {
2012-02-14 05:38:00 +01:00
$sql_extra = " AND `blocked` = 1 ";
$blocked = true;
}
elseif(($a->argc == 2) && ($a->argv[1] === 'hidden')) {
2012-02-14 05:38:00 +01:00
$sql_extra = " AND `hidden` = 1 ";
$hidden = true;
}
elseif(($a->argc == 2) && ($a->argv[1] === 'ignored')) {
$sql_extra = " AND `readonly` = 1 ";
$ignored = true;
}
elseif(($a->argc == 2) && ($a->argv[1] === 'archived')) {
2012-04-28 02:17:58 +02:00
$sql_extra = " AND `archive` = 1 ";
$archived = true;
}
else
$sql_extra = " AND `blocked` = 0 ";
2012-02-14 05:38:00 +01:00
$search = ((x($_GET,'search')) ? notags(trim($_GET['search'])) : '');
$nets = ((x($_GET,'nets')) ? notags(trim($_GET['nets'])) : '');
2012-02-14 05:38:00 +01:00
$tabs = array(
array(
'label' => t('Suggestions'),
'url' => 'suggest',
'sel' => '',
2012-04-30 14:15:29 +02:00
'title' => t('Suggest potential friends'),
2015-10-24 15:04:27 +02:00
'id' => 'suggestions-tab',
2015-08-08 17:33:43 +02:00
'accesskey' => 'g',
),
2012-02-14 05:38:00 +01:00
array(
'label' => t('All Contacts'),
'url' => 'contacts/all',
2012-02-14 05:38:00 +01:00
'sel' => ($all) ? 'active' : '',
2012-04-30 14:15:29 +02:00
'title' => t('Show all contacts'),
2015-10-24 15:04:27 +02:00
'id' => 'showall-tab',
2015-08-08 17:33:43 +02:00
'accesskey' => 'l',
2012-02-14 05:38:00 +01:00
),
array(
2012-04-28 02:17:58 +02:00
'label' => t('Unblocked'),
'url' => 'contacts',
2012-04-28 02:17:58 +02:00
'sel' => ((! $all) && (! $blocked) && (! $hidden) && (! $search) && (! $nets) && (! $ignored) && (! $archived)) ? 'active' : '',
2012-04-30 14:15:29 +02:00
'title' => t('Only show unblocked contacts'),
2015-10-24 15:04:27 +02:00
'id' => 'showunblocked-tab',
2015-08-08 17:33:43 +02:00
'accesskey' => 'o',
2012-02-14 05:38:00 +01:00
),
array(
2012-04-28 02:17:58 +02:00
'label' => t('Blocked'),
'url' => 'contacts/blocked',
2012-02-14 05:38:00 +01:00
'sel' => ($blocked) ? 'active' : '',
2012-04-30 14:15:29 +02:00
'title' => t('Only show blocked contacts'),
2015-10-24 15:04:27 +02:00
'id' => 'showblocked-tab',
2015-08-08 17:33:43 +02:00
'accesskey' => 'b',
2012-02-14 05:38:00 +01:00
),
array(
2012-04-28 02:17:58 +02:00
'label' => t('Ignored'),
'url' => 'contacts/ignored',
'sel' => ($ignored) ? 'active' : '',
2012-04-30 14:15:29 +02:00
'title' => t('Only show ignored contacts'),
2015-10-24 15:04:27 +02:00
'id' => 'showignored-tab',
2015-08-08 17:33:43 +02:00
'accesskey' => 'i',
),
2012-02-14 05:38:00 +01:00
array(
2012-04-28 02:17:58 +02:00
'label' => t('Archived'),
'url' => 'contacts/archived',
2012-04-28 02:17:58 +02:00
'sel' => ($archived) ? 'active' : '',
2012-04-30 14:15:29 +02:00
'title' => t('Only show archived contacts'),
2015-10-24 15:04:27 +02:00
'id' => 'showarchived-tab',
2015-08-08 17:33:43 +02:00
'accesskey' => 'y',
2012-04-28 02:17:58 +02:00
),
array(
'label' => t('Hidden'),
'url' => 'contacts/hidden',
2012-02-14 05:38:00 +01:00
'sel' => ($hidden) ? 'active' : '',
2012-04-30 14:15:29 +02:00
'title' => t('Only show hidden contacts'),
2015-10-24 15:04:27 +02:00
'id' => 'showhidden-tab',
2015-08-08 17:33:43 +02:00
'accesskey' => 'h',
2012-02-14 05:38:00 +01:00
),
2012-02-14 05:38:00 +01:00
);
$tab_tpl = get_markup_template('common_tabs.tpl');
$t = replace_macros($tab_tpl, array('$tabs'=>$tabs));
2012-06-21 01:05:46 +02:00
$searching = false;
if($search) {
$search_hdr = $search;
2012-06-21 01:20:55 +02:00
$search_txt = dbesc(protect_sprintf(preg_quote($search)));
2012-06-21 01:05:46 +02:00
$searching = true;
}
$sql_extra .= (($searching) ? " AND (name REGEXP '$search_txt' OR url REGEXP '$search_txt' OR nick REGEXP '$search_txt') " : "");
if($nets)
$sql_extra .= sprintf(" AND network = '%s' ", dbesc($nets));
$sql_extra2 = ((($sort_type > 0) && ($sort_type <= CONTACT_IS_FRIEND)) ? sprintf(" AND `rel` = %d ",intval($sort_type)) : '');
$r = q("SELECT COUNT(*) AS `total` FROM `contact`
2012-03-14 00:02:20 +01:00
WHERE `uid` = %d AND `self` = 0 AND `pending` = 0 $sql_extra $sql_extra2 ",
2010-07-30 15:09:20 +02:00
intval($_SESSION['uid']));
2017-11-08 04:57:46 +01:00
if (DBM::is_result($r)) {
2010-07-30 15:09:20 +02:00
$a->set_pager_total($r[0]['total']);
$total = $r[0]['total'];
}
2012-02-14 05:38:00 +01:00
$sql_extra3 = unavailable_networks();
2012-02-14 05:38:00 +01:00
$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 ",
intval($_SESSION['uid']),
intval($a->pager['start']),
intval($a->pager['itemspage'])
);
2010-07-02 01:48:07 +02:00
$contacts = array();
2010-07-02 01:48:07 +02:00
2017-11-08 04:57:46 +01:00
if (DBM::is_result($r)) {
foreach ($r as $rr) {
$contacts[] = _contact_detail_for_template($rr);
2010-07-02 01:48:07 +02:00
}
}
$tpl = get_markup_template("contacts-template.tpl");
$o .= replace_macros($tpl, array(
'$baseurl' => System::baseUrl(),
'$header' => t('Contacts') . (($nets) ? ' - ' . network_to_name($nets) : ''),
'$tabs' => $t,
'$total' => $total,
'$search' => $search_hdr,
'$desc' => t('Search your contacts'),
'$finding' => (($searching) ? sprintf(t('Results for: %s'),$search) : ""),
'$submit' => t('Find'),
'$cmd' => $a->cmd,
'$contacts' => $contacts,
'$contact_drop_confirm' => t('Do you really want to delete this contact?'),
'multiselect' => 1,
'$batch_actions' => array(
'contacts_batch_update' => t('Update'),
'contacts_batch_block' => t('Block')."/".t("Unblock"),
"contacts_batch_ignore" => t('Ignore')."/".t("Unignore"),
"contacts_batch_archive" => t('Archive')."/".t("Unarchive"),
"contacts_batch_drop" => t('Delete'),
),
2016-06-25 12:21:13 +02:00
'$h_batch_actions' => t('Batch Actions'),
'$paginate' => paginate($a),
));
2010-07-02 01:48:07 +02:00
return $o;
}
/**
* @brief List of pages for the Contact TabBar
*
* Available Pages are 'Status', 'Profile', 'Contacts' and 'Common Friends'
*
* @param App $a
* @param int $contact_id The ID of the contact
* @param int $active_tab 1 if tab should be marked as active
*
* @return array with with contact TabBar data
*/
function contacts_tab($a, $contact_id, $active_tab) {
// tabs
$tabs = array(
array(
'label'=>t('Status'),
'url' => "contacts/".$contact_id."/posts",
'sel' => (($active_tab == 1)?'active':''),
'title' => t('Status Messages and Posts'),
'id' => 'status-tab',
'accesskey' => 'm',
),
array(
'label'=>t('Profile'),
'url' => "contacts/".$contact_id,
'sel' => (($active_tab == 2)?'active':''),
'title' => t('Profile Details'),
2017-10-20 15:21:42 +02:00
'id' => 'profile-tab',
'accesskey' => 'o',
)
);
// Show this tab only if there is visible friend list
$x = GContact::countAllFriends(local_user(), $contact_id);
if ($x)
2015-12-01 19:02:03 +01:00
$tabs[] = array('label'=>t('Contacts'),
'url' => "allfriends/".$contact_id,
'sel' => (($active_tab == 3)?'active':''),
'title' => t('View all contacts'),
'id' => 'allfriends-tab',
'accesskey' => 't');
// Show this tab only if there is visible common friend list
$common = GContact::countCommonFriends(local_user(), $contact_id);
if ($common)
$tabs[] = array('label'=>t('Common Friends'),
'url' => "common/loc/".local_user()."/".$contact_id,
'sel' => (($active_tab == 4)?'active':''),
'title' => t('View all common friends'),
'id' => 'common-loc-tab',
'accesskey' => 'd');
$tabs[] = array('label' => t('Advanced'),
'url' => 'crepair/' . $contact_id,
'sel' => (($active_tab == 5)?'active':''),
'title' => t('Advanced Contact Settings'),
'id' => 'advanced-tab',
'accesskey' => 'r');
$tab_tpl = get_markup_template('common_tabs.tpl');
$tab_str = replace_macros($tab_tpl, array('$tabs' => $tabs));
return $tab_str;
}
function contact_posts($a, $contact_id) {
$r = q("SELECT `url` FROM `contact` WHERE `id` = %d", intval($contact_id));
if ($r) {
$contact = $r[0];
$a->page['aside'] = "";
profile_load($a, "", 0, Contact::getDetailsByURL($contact["url"]));
} else
$profile = "";
$tab_str = contacts_tab($a, $contact_id, 1);
2015-11-29 23:33:32 +01:00
$o .= $tab_str;
$o .= Contact::getPostsFromUrl($contact["url"]);
return $o;
}
function _contact_detail_for_template($rr){
switch($rr['rel']) {
case CONTACT_IS_FRIEND:
$dir_icon = 'images/lrarrow.gif';
$alt_text = t('Mutual Friendship');
break;
case CONTACT_IS_FOLLOWER;
$dir_icon = 'images/larrow.gif';
$alt_text = t('is a fan of yours');
break;
case CONTACT_IS_SHARING;
$dir_icon = 'images/rarrow.gif';
$alt_text = t('you are a fan of');
break;
default:
break;
}
if(($rr['network'] === NETWORK_DFRN) && ($rr['rel'])) {
$url = "redir/{$rr['id']}";
$sparkle = ' class="sparkle" ';
}
else {
$url = $rr['url'];
$sparkle = '';
}
return array(
'img_hover' => sprintf( t('Visit %s\'s profile [%s]'),$rr['name'],$rr['url']),
'edit_hover' => t('Edit contact'),
'photo_menu' => Contact::photoMenu($rr),
'id' => $rr['id'],
'alt_text' => $alt_text,
'dir_icon' => $dir_icon,
'thumb' => proxy_url($rr['thumb'], false, PROXY_SIZE_THUMB),
'name' => htmlentities($rr['name']),
'username' => htmlentities($rr['name']),
'account_type' => Contact::getAccountType($rr),
'sparkle' => $sparkle,
'itemurl' => (($rr['addr'] != "") ? $rr['addr'] : $rr['url']),
'url' => $url,
2015-07-16 10:09:59 +02:00
'network' => network_to_name($rr['network'], $rr['url']),
);
2015-07-16 10:09:59 +02:00
}
/**
* @brief Gives a array with actions which can performed to a given contact
*
* This includes actions like e.g. 'block', 'hide', 'archive', 'delete' and others
*
* @param array $contact Data about the Contact
* @return array with contact related actions
*/
function contact_actions($contact) {
$poll_enabled = in_array($contact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_FEED, NETWORK_MAIL));
$contact_action = array();
// Provide friend suggestion only for Friendica contacts
if($contact['network'] === NETWORK_DFRN) {
$contact_actions['suggest'] = array(
'label' => t('Suggest friends'),
'url' => 'fsuggest/' . $contact['id'],
'title' => '',
'sel' => '',
'id' => 'suggest',
);
}
if($poll_enabled) {
$contact_actions['update'] = array(
'label' => t('Update now'),
'url' => 'contacts/' . $contact['id'] . '/update',
'title' => '',
'sel' => '',
'id' => 'update',
);
}
$contact_actions['block'] = array(
'label' => (intval($contact['blocked']) ? t('Unblock') : t('Block') ),
'url' => 'contacts/' . $contact['id'] . '/block',
'title' => t('Toggle Blocked status'),
'sel' => (intval($contact['blocked']) ? 'active' : ''),
'id' => 'toggle-block',
);
$contact_actions['ignore'] = array(
'label' => (intval($contact['readonly']) ? t('Unignore') : t('Ignore') ),
'url' => 'contacts/' . $contact['id'] . '/ignore',
'title' => t('Toggle Ignored status'),
'sel' => (intval($contact['readonly']) ? 'active' : ''),
'id' => 'toggle-ignore',
);
$contact_actions['archive'] = array(
'label' => (intval($contact['archive']) ? t('Unarchive') : t('Archive') ),
'url' => 'contacts/' . $contact['id'] . '/archive',
'title' => t('Toggle Archive status'),
'sel' => (intval($contact['archive']) ? 'active' : ''),
'id' => 'toggle-archive',
);
$contact_actions['delete'] = array(
'label' => t('Delete'),
'url' => 'contacts/' . $contact['id'] . '/drop',
'title' => t('Delete contact'),
'sel' => '',
'id' => 'delete',
);
return $contact_actions;
}