friendica/mod/allfriends.php

111 lines
3.0 KiB
PHP
Raw Normal View History

2011-11-10 03:33:08 +01:00
<?php
/**
* @file mod/allfriends.php
*/
use Friendica\App;
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;
use Friendica\Database\DBA;
use Friendica\Model;
use Friendica\Module;
use Friendica\Util\Proxy as ProxyUtils;
2018-10-13 11:23:52 +02:00
require_once 'include/dba.php';
2011-11-10 03:33:08 +01:00
function allfriends_content(App $a)
{
2011-11-10 03:33:08 +01:00
$o = '';
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;
}
$cid = 0;
if ($a->argc > 1) {
2011-11-10 03:33:08 +01:00
$cid = intval($a->argv[1]);
}
if (!$cid) {
2011-11-10 03:33:08 +01:00
return;
}
2011-11-10 03:33:08 +01:00
$uid = $a->user['uid'];
$contact = DBA::selectFirst('contact', ['name', 'url', 'photo', 'uid', 'id'], ['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;
}
2011-11-10 03:33:08 +01:00
$a->page['aside'] = "";
2018-10-13 11:23:52 +02:00
Model\Profile::load($a, "", 0, Model\Contact::getDetailsByURL($contact["url"]));
2011-11-10 03:33:08 +01:00
2018-10-13 11:23:52 +02:00
$total = Model\GContact::countAllFriends(local_user(), $cid);
$a->setPagerTotal($total);
2018-10-13 11:23:52 +02:00
$r = Model\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;
}
$id = 0;
2011-11-10 03:33:08 +01:00
$entries = [];
foreach ($r as $rr) {
//get further details of the contact
2018-10-13 11:23:52 +02:00
$contact_details = Model\Contact::getDetailsByURL($rr['url'], $uid, $rr);
$photo_menu = '';
$connlnk = '';
// $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
if ($rr['cid']) {
$rr['id'] = $rr['cid'];
2018-10-13 11:23:52 +02:00
$photo_menu = Model\Contact::photoMenu($rr);
} else {
$connlnk = System::baseUrl() . '/follow/?url=' . $rr['url'];
$photo_menu = [
2018-10-13 11:23:52 +02:00
'profile' => [L10n::t("View Profile"), Model\Contact::magicLink($rr['url'])],
2018-01-21 19:33:59 +01:00
'follow' => [L10n::t("Connect/Follow"), $connlnk]
];
}
$entry = [
'url' => $rr['url'],
'itemurl' => defaults($contact_details, 'addr', $rr['url']),
'name' => htmlentities($contact_details['name']),
'thumb' => ProxyUtils::proxifyUrl($contact_details['thumb'], false, ProxyUtils::SIZE_THUMB),
'img_hover' => htmlentities($contact_details['name']),
'details' => $contact_details['location'],
'tags' => $contact_details['keywords'],
'about' => $contact_details['about'],
2018-10-13 11:23:52 +02:00
'account_type' => Model\Contact::getAccountType($contact_details),
'network' => ContactSelector::networkToName($contact_details['network'], $contact_details['url']),
'photo_menu' => $photo_menu,
2018-01-21 19:33:59 +01:00
'conntxt' => L10n::t('Connect'),
'connlnk' => $connlnk,
'id' => ++$id,
];
$entries[] = $entry;
2011-11-10 03:33:08 +01:00
}
$tab_str = Module\Contact::getTabsHTML($a, $contact, 4);
$tpl = get_markup_template('viewcontact_template.tpl');
$o .= replace_macros($tpl, [
//'$title' => L10n::t('Friends of %s', htmlentities($c[0]['name'])),
'$tab_str' => $tab_str,
'$contacts' => $entries,
'$paginate' => paginate($a),
]);
2011-11-10 03:33:08 +01:00
return $o;
}