2011-11-01 22:16:33 -04:00
|
|
|
<?php
|
2017-11-15 09:47:28 -05:00
|
|
|
/**
|
|
|
|
* @file include/common.php
|
|
|
|
*/
|
2018-07-19 22:15:21 -04:00
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2018-01-09 22:42:04 -05:00
|
|
|
use Friendica\Content\ContactSelector;
|
2018-01-21 13:33:59 -05:00
|
|
|
use Friendica\Core\L10n;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2017-12-07 09:04:24 -05:00
|
|
|
use Friendica\Model\Contact;
|
2017-12-07 09:09:28 -05:00
|
|
|
use Friendica\Model\GContact;
|
2018-01-14 21:22:39 -05:00
|
|
|
use Friendica\Model\Profile;
|
2018-07-30 22:06:22 -04:00
|
|
|
use Friendica\Util\Proxy as ProxyUtils;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2018-01-14 21:22:39 -05:00
|
|
|
require_once 'include/dba.php';
|
2017-11-15 09:47:28 -05:00
|
|
|
require_once 'mod/contacts.php';
|
2011-11-01 22:16:33 -04:00
|
|
|
|
2018-01-04 19:42:48 -05:00
|
|
|
function common_content(App $a)
|
|
|
|
{
|
2011-11-01 22:16:33 -04:00
|
|
|
$o = '';
|
|
|
|
|
2012-05-04 04:46:36 -04:00
|
|
|
$cmd = $a->argv[1];
|
|
|
|
$uid = intval($a->argv[2]);
|
|
|
|
$cid = intval($a->argv[3]);
|
|
|
|
$zcid = 0;
|
|
|
|
|
2018-01-04 19:42:48 -05:00
|
|
|
if (!local_user()) {
|
2018-01-21 13:33:59 -05:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2015-11-03 08:31:15 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-22 11:12:34 -05:00
|
|
|
if ($cmd !== 'loc' && $cmd != 'rem') {
|
2012-05-04 04:46:36 -04:00
|
|
|
return;
|
2016-12-22 11:12:34 -05:00
|
|
|
}
|
2015-11-03 08:31:15 -05:00
|
|
|
|
2018-01-04 19:42:48 -05:00
|
|
|
if (!$uid) {
|
2011-11-01 22:16:33 -04:00
|
|
|
return;
|
2016-12-22 11:12:34 -05:00
|
|
|
}
|
2011-11-01 22:16:33 -04:00
|
|
|
|
2016-12-22 11:12:34 -05:00
|
|
|
if ($cmd === 'loc' && $cid) {
|
2018-08-25 09:48:00 -04:00
|
|
|
$contact = DBA::selectFirst('contact', ['name', 'url', 'photo', 'uid', 'id'], ['id' => $cid, 'uid' => $uid]);
|
2018-01-14 21:22:39 -05:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($contact)) {
|
2018-01-14 21:22:39 -05:00
|
|
|
$a->page['aside'] = "";
|
2018-01-14 23:44:39 -05:00
|
|
|
Profile::load($a, "", 0, Contact::getDetailsByURL($contact["url"]));
|
2018-01-14 21:22:39 -05:00
|
|
|
}
|
2015-12-01 02:12:05 -05:00
|
|
|
} else {
|
2018-08-25 09:48:00 -04:00
|
|
|
$contact = DBA::selectFirst('contact', ['name', 'url', 'photo', 'uid', 'id'], ['self' => true, 'uid' => $uid]);
|
2015-05-27 06:44:40 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($contact)) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$vcard_widget = replace_macros(get_markup_template("vcard-widget.tpl"), [
|
2018-01-14 23:44:39 -05:00
|
|
|
'$name' => htmlentities($contact['name']),
|
|
|
|
'$photo' => $contact['photo'],
|
2018-01-14 21:22:39 -05:00
|
|
|
'url' => 'contacts/' . $cid
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
|
|
|
|
2018-01-14 21:22:39 -05:00
|
|
|
if (!x($a->page, 'aside')) {
|
|
|
|
$a->page['aside'] = '';
|
|
|
|
}
|
|
|
|
$a->page['aside'] .= $vcard_widget;
|
2016-12-22 11:12:34 -05:00
|
|
|
}
|
2015-12-01 02:12:05 -05:00
|
|
|
}
|
2011-11-01 22:16:33 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($contact)) {
|
2011-11-01 22:16:33 -04:00
|
|
|
return;
|
2016-12-20 09:37:27 -05:00
|
|
|
}
|
2011-11-01 22:16:33 -04:00
|
|
|
|
2018-01-14 21:22:39 -05:00
|
|
|
if (!$cid && Profile::getMyURL()) {
|
2018-07-20 08:19:26 -04:00
|
|
|
$contact = DBA::selectFirst('contact', ['id'], ['nurl' => normalise_link(Profile::getMyURL()), 'uid' => $uid]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($contact)) {
|
2018-01-09 22:20:33 -05:00
|
|
|
$cid = $contact['id'];
|
2018-01-04 19:42:48 -05:00
|
|
|
} else {
|
2018-07-20 08:19:26 -04:00
|
|
|
$gcontact = DBA::selectFirst('gcontact', ['id'], ['nurl' => normalise_link(Profile::getMyURL())]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($gcontact)) {
|
2018-01-09 22:20:33 -05:00
|
|
|
$zcid = $gcontact['id'];
|
2012-05-04 04:46:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-22 11:12:34 -05:00
|
|
|
if ($cid == 0 && $zcid == 0) {
|
2015-11-05 18:47:54 -05:00
|
|
|
return;
|
2016-12-22 11:12:34 -05:00
|
|
|
}
|
2012-05-04 04:46:36 -04:00
|
|
|
|
2016-12-22 11:12:34 -05:00
|
|
|
if ($cid) {
|
2017-12-07 09:09:28 -05:00
|
|
|
$t = GContact::countCommonFriends($uid, $cid);
|
2016-12-22 11:12:34 -05:00
|
|
|
} else {
|
2017-12-07 09:09:28 -05:00
|
|
|
$t = GContact::countCommonFriendsZcid($uid, $zcid);
|
2016-12-22 11:12:34 -05:00
|
|
|
}
|
2012-05-04 04:46:36 -04:00
|
|
|
|
2018-01-04 19:42:48 -05:00
|
|
|
if ($t > 0) {
|
2015-12-15 08:31:24 -05:00
|
|
|
$a->set_pager_total($t);
|
2016-12-22 11:12:34 -05:00
|
|
|
} else {
|
2018-01-21 13:33:59 -05:00
|
|
|
notice(L10n::t('No contacts in common.') . EOL);
|
2012-05-04 04:46:36 -04:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2016-12-22 11:12:34 -05:00
|
|
|
if ($cid) {
|
2017-12-07 09:09:28 -05:00
|
|
|
$r = GContact::commonFriends($uid, $cid, $a->pager['start'], $a->pager['itemspage']);
|
2016-12-22 11:12:34 -05:00
|
|
|
} else {
|
2017-12-07 09:09:28 -05:00
|
|
|
$r = GContact::commonFriendsZcid($uid, $zcid, $a->pager['start'], $a->pager['itemspage']);
|
2016-12-22 11:12:34 -05:00
|
|
|
}
|
2011-11-01 22:16:33 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($r)) {
|
2011-11-01 22:16:33 -04:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2015-10-27 10:27:26 -04:00
|
|
|
$id = 0;
|
2011-11-01 22:16:33 -04:00
|
|
|
|
2018-01-04 19:42:48 -05:00
|
|
|
$entries = [];
|
2016-12-20 15:15:53 -05:00
|
|
|
foreach ($r as $rr) {
|
2015-11-03 08:33:17 -05:00
|
|
|
//get further details of the contact
|
2017-11-19 17:03:39 -05:00
|
|
|
$contact_details = Contact::getDetailsByURL($rr['url'], $uid);
|
2015-11-03 08:33:17 -05:00
|
|
|
|
2016-12-22 11:12:34 -05:00
|
|
|
// $rr['id'] is needed to use contact_photo_menu()
|
|
|
|
/// @TODO Adding '/" here avoids E_NOTICE on missing constants
|
|
|
|
$rr['id'] = $rr['cid'];
|
2015-11-03 08:31:15 -05:00
|
|
|
|
2017-11-19 17:03:39 -05:00
|
|
|
$photo_menu = Contact::photoMenu($rr);
|
2015-11-03 08:31:15 -05:00
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$entry = [
|
2016-12-22 11:12:34 -05:00
|
|
|
'url' => $rr['url'],
|
2018-01-04 19:42:48 -05:00
|
|
|
'itemurl' => defaults($contact_details, 'addr', $rr['url']),
|
2016-12-22 11:12:34 -05:00
|
|
|
'name' => $contact_details['name'],
|
2018-07-30 22:06:22 -04:00
|
|
|
'thumb' => ProxyUtils::proxifyUrl($contact_details['thumb'], false, ProxyUtils::SIZE_THUMB),
|
2016-12-22 11:12:34 -05:00
|
|
|
'img_hover' => htmlentities($contact_details['name']),
|
|
|
|
'details' => $contact_details['location'],
|
|
|
|
'tags' => $contact_details['keywords'],
|
|
|
|
'about' => $contact_details['about'],
|
2017-11-19 17:03:39 -05:00
|
|
|
'account_type' => Contact::getAccountType($contact_details),
|
2018-01-09 22:42:04 -05:00
|
|
|
'network' => ContactSelector::networkToName($contact_details['network'], $contact_details['url']),
|
2016-12-22 11:12:34 -05:00
|
|
|
'photo_menu' => $photo_menu,
|
|
|
|
'id' => ++$id,
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2015-10-27 10:27:26 -04:00
|
|
|
$entries[] = $entry;
|
2011-11-01 22:16:33 -04:00
|
|
|
}
|
|
|
|
|
2018-01-04 19:42:48 -05:00
|
|
|
$title = '';
|
|
|
|
$tab_str = '';
|
|
|
|
if ($cmd === 'loc' && $cid && local_user() == $uid) {
|
2018-08-25 09:48:00 -04:00
|
|
|
$tab_str = contacts_tab($a, $contact, 4);
|
2016-12-22 11:12:34 -05:00
|
|
|
} else {
|
2018-01-21 13:33:59 -05:00
|
|
|
$title = L10n::t('Common Friends');
|
2016-12-22 11:12:34 -05:00
|
|
|
}
|
2015-12-01 02:12:05 -05:00
|
|
|
|
2015-10-27 10:27:26 -04:00
|
|
|
$tpl = get_markup_template('viewcontact_template.tpl');
|
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$o .= replace_macros($tpl, [
|
2016-12-22 11:12:34 -05:00
|
|
|
'$title' => $title,
|
|
|
|
'$tab_str' => $tab_str,
|
2015-10-27 10:27:26 -04:00
|
|
|
'$contacts' => $entries,
|
2015-12-15 08:31:24 -05:00
|
|
|
'$paginate' => paginate($a),
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2015-10-27 10:27:26 -04:00
|
|
|
|
2011-11-01 22:16:33 -04:00
|
|
|
return $o;
|
|
|
|
}
|