friendica/mod/viewcontacts.php

132 lines
3.6 KiB
PHP
Raw Normal View History

2010-07-29 03:24:07 +02:00
<?php
/**
* @file mod/viewcontacts.php
*/
use Friendica\App;
use Friendica\Content\ContactSelector;
use Friendica\Content\Nav;
use Friendica\Core\Config;
2018-01-21 19:33:59 +01:00
use Friendica\Core\L10n;
use Friendica\Core\Protocol;
use Friendica\Database\DBA;
2017-12-07 15:04:24 +01:00
use Friendica\Model\Contact;
use Friendica\Model\Profile;
use Friendica\Util\Proxy as ProxyUtils;
use Friendica\Core\System;
2018-01-22 15:16:25 +01:00
function viewcontacts_init(App $a)
{
if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
System::httpExit(403, ["title" => L10n::t('Access denied.')]);
}
2010-07-29 03:24:07 +02:00
if ($a->argc < 2) {
System::httpExit(403, ["title" => L10n::t('Access denied.')]);
}
Nav::setSelected('home');
$nick = $a->argv[1];
$r = q("SELECT * FROM `user` WHERE `nickname` = '%s' AND `blocked` = 0 LIMIT 1",
DBA::escape($nick)
);
if (!DBA::isResult($r)) {
System::httpExit(404, ["title" => L10n::t('Page not found.')]);
}
$a->data['user'] = $r[0];
$a->profile_uid = $r[0]['uid'];
$is_owner = (local_user() && (local_user() == $a->profile_uid));
Profile::load($a, $a->argv[1]);
2010-07-29 03:24:07 +02:00
}
2018-01-22 15:16:25 +01:00
function viewcontacts_content(App $a)
{
if (Config::get('system', 'block_public') && !local_user() && !remote_user()) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('Public access denied.') . EOL);
return;
}
2018-02-12 04:10:11 +01:00
$is_owner = $a->profile['profile_uid'] == local_user();
$o = "";
// tabs
$o .= Profile::getTabs($a, $is_owner, $a->data['user']['nickname']);
2010-07-29 03:24:07 +02:00
if (!count($a->profile) || $a->profile['hide-friends']) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('Permission denied.') . EOL);
return $o;
}
$r = q("SELECT COUNT(*) AS `total` FROM `contact`
WHERE `uid` = %d AND NOT `blocked` AND NOT `pending`
AND NOT `hidden` AND NOT `archive`
AND `network` IN ('%s', '%s', '%s')",
intval($a->profile['uid']),
DBA::escape(Protocol::DFRN),
DBA::escape(Protocol::DIASPORA),
DBA::escape(Protocol::OSTATUS)
2010-07-29 03:24:07 +02:00
);
2018-07-21 14:46:04 +02:00
if (DBA::isResult($r)) {
2010-07-30 15:09:20 +02:00
$a->set_pager_total($r[0]['total']);
2018-01-22 15:16:25 +01:00
}
2010-07-29 03:24:07 +02:00
$r = q("SELECT * FROM `contact`
WHERE `uid` = %d AND NOT `blocked` AND NOT `pending`
AND NOT `hidden` AND NOT `archive`
AND `network` IN ('%s', '%s', '%s')
ORDER BY `name` ASC LIMIT %d, %d",
2010-07-29 03:24:07 +02:00
intval($a->profile['uid']),
DBA::escape(Protocol::DFRN),
DBA::escape(Protocol::DIASPORA),
DBA::escape(Protocol::OSTATUS),
2010-07-29 03:24:07 +02:00
intval($a->pager['start']),
intval($a->pager['itemspage'])
);
2018-07-21 14:46:04 +02:00
if (!DBA::isResult($r)) {
2018-01-22 15:16:25 +01:00
info(L10n::t('No contacts.').EOL);
2010-07-29 03:24:07 +02:00
return $o;
}
$contacts = [];
2010-07-29 03:24:07 +02:00
foreach ($r as $rr) {
/// @TODO This triggers an E_NOTICE if 'self' is not there
if ($rr['self']) {
2010-07-29 03:24:07 +02:00
continue;
}
2010-07-29 03:24:07 +02:00
$contact_details = Contact::getDetailsByURL($rr['url'], $a->profile['uid'], $rr);
$contacts[] = [
'id' => $rr['id'],
'img_hover' => L10n::t('Visit %s\'s profile [%s]', $contact_details['name'], $rr['url']),
'photo_menu' => Contact::photoMenu($rr),
'thumb' => ProxyUtils::proxifyUrl($contact_details['thumb'], false, ProxyUtils::SIZE_THUMB),
2018-01-22 15:16:25 +01:00
'name' => htmlentities(substr($contact_details['name'], 0, 20)),
2016-06-05 13:57:11 +02:00
'username' => htmlentities($contact_details['name']),
'details' => $contact_details['location'],
'tags' => $contact_details['keywords'],
'about' => $contact_details['about'],
'account_type' => Contact::getAccountType($contact_details),
2018-06-02 10:05:06 +02:00
'url' => Contact::magicLink($rr['url']),
'sparkle' => '',
'itemurl' => (($contact_details['addr'] != "") ? $contact_details['addr'] : $rr['url']),
'network' => ContactSelector::networkToName($rr['network'], $rr['url']),
];
2010-07-29 03:24:07 +02:00
}
$tpl = get_markup_template("viewcontact_template.tpl");
$o .= replace_macros($tpl, [
2018-01-22 15:16:25 +01:00
'$title' => L10n::t('Contacts'),
'$contacts' => $contacts,
'$paginate' => paginate($a),
]);
2010-07-29 03:24:07 +02:00
return $o;
}