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