2011-11-10 03:33:08 +01:00
|
|
|
<?php
|
2017-11-15 15:47:28 +01:00
|
|
|
/**
|
|
|
|
* @file mod/allfriends.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;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
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-10 03:33:08 +01:00
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
function allfriends_content(App $a)
|
|
|
|
{
|
2011-11-10 03:33:08 +01:00
|
|
|
$o = '';
|
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);
|
2011-11-10 03:33:08 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
$cid = 0;
|
2016-12-20 11:56:34 +01:00
|
|
|
if ($a->argc > 1) {
|
2011-11-10 03:33:08 +01:00
|
|
|
$cid = intval($a->argv[1]);
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2015-10-27 15:27:26 +01:00
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
if (!$cid) {
|
2011-11-10 03:33:08 +01:00
|
|
|
return;
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2011-11-10 03:33:08 +01:00
|
|
|
|
2016-12-20 10:58:55 +01:00
|
|
|
$uid = $a->user['uid'];
|
2015-11-03 14:31:15 +01:00
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
$contact = DBA::selectFirst('contact', ['name', 'url', 'photo'], ['id' => $cid, 'uid' => local_user()]);
|
2011-11-10 03:33:08 +01:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($contact)) {
|
2011-11-10 03:33:08 +01:00
|
|
|
return;
|
2016-12-20 17:43:46 +01:00
|
|
|
}
|
2011-11-10 03:33:08 +01:00
|
|
|
|
2015-12-01 08:12:05 +01:00
|
|
|
$a->page['aside'] = "";
|
2018-01-15 05:44:39 +01:00
|
|
|
Profile::load($a, "", 0, Contact::getDetailsByURL($contact["url"]));
|
2011-11-10 03:33:08 +01:00
|
|
|
|
2017-12-07 15:09:28 +01:00
|
|
|
$total = GContact::countAllFriends(local_user(), $cid);
|
2015-12-15 14:31:24 +01:00
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
$a->set_pager_total($total);
|
2015-12-15 14:31:24 +01:00
|
|
|
|
2017-12-07 15:09:28 +01:00
|
|
|
$r = GContact::allFriends(local_user(), $cid, $a->pager['start'], $a->pager['itemspage']);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2018-01-21 19:33:59 +01:00
|
|
|
$o .= L10n::t('No friends to display.');
|
2011-11-10 03:33:08 +01:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2015-10-27 15:27:26 +01:00
|
|
|
$id = 0;
|
2011-11-10 03:33:08 +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:31:15 +01:00
|
|
|
//get further details of the contact
|
2017-11-19 23:03:39 +01:00
|
|
|
$contact_details = Contact::getDetailsByURL($rr['url'], $uid, $rr);
|
2015-11-03 14:31:15 +01:00
|
|
|
|
|
|
|
$photo_menu = '';
|
|
|
|
|
2018-01-05 01:42:48 +01:00
|
|
|
$connlnk = '';
|
2015-11-03 14:31:15 +01:00
|
|
|
// $rr[cid] is only available for common contacts. So if the contact is a common one, use contact_photo_menu to generate the photo_menu
|
|
|
|
// If the contact is not common to the user, Connect/Follow' will be added to the photo menu
|
2018-01-05 01:42:48 +01:00
|
|
|
if ($rr['cid']) {
|
|
|
|
$rr['id'] = $rr['cid'];
|
|
|
|
$photo_menu = Contact::photoMenu($rr);
|
|
|
|
} else {
|
2017-08-26 09:32:10 +02:00
|
|
|
$connlnk = System::baseUrl() . '/follow/?url=' . $rr['url'];
|
2018-01-15 14:05:12 +01:00
|
|
|
$photo_menu = [
|
2018-06-02 10:05:06 +02:00
|
|
|
'profile' => [L10n::t("View Profile"), Contact::magicLink($rr['url'])],
|
2018-01-21 19:33:59 +01:00
|
|
|
'follow' => [L10n::t("Connect/Follow"), $connlnk]
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2015-11-03 14:31:15 +01:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$entry = [
|
2016-12-22 17:03:00 +01:00
|
|
|
'url' => $rr['url'],
|
2018-01-05 01:42:48 +01:00
|
|
|
'itemurl' => defaults($contact_details, 'addr', $rr['url']),
|
2016-12-22 17:03:00 +01:00
|
|
|
'name' => htmlentities($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:03:00 +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:03:00 +01:00
|
|
|
'photo_menu' => $photo_menu,
|
2018-01-21 19:33:59 +01:00
|
|
|
'conntxt' => L10n::t('Connect'),
|
2016-12-22 17:03:00 +01:00
|
|
|
'connlnk' => $connlnk,
|
|
|
|
'id' => ++$id,
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2015-10-27 15:27:26 +01:00
|
|
|
$entries[] = $entry;
|
2011-11-10 03:33:08 +01:00
|
|
|
}
|
|
|
|
|
2015-12-01 08:12:05 +01:00
|
|
|
$tab_str = contacts_tab($a, $cid, 3);
|
|
|
|
|
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, [
|
2018-01-24 03:59:16 +01:00
|
|
|
//'$title' => L10n::t('Friends of %s', htmlentities($c[0]['name'])),
|
2015-12-01 08:12:05 +01:00
|
|
|
'$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-10 03:33:08 +01:00
|
|
|
return $o;
|
|
|
|
}
|