X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fhovercard.php;h=8b51eb00ae6b14881dde6128b32603b10e2228ea;hb=7529fc61dd9169368224a092bcdf7d3cfeee1982;hp=a9cd95f58753c75ca8da80009545967d5c0eaccc;hpb=ae66bcaff3c01d10fb8bee04201b692c1fae9032;p=friendica.git diff --git a/mod/hovercard.php b/mod/hovercard.php index a9cd95f587..8b51eb00ae 100644 --- a/mod/hovercard.php +++ b/mod/hovercard.php @@ -7,10 +7,14 @@ * Author: Rabuzarus * License: GNU AFFERO GENERAL PUBLIC LICENSE (Version 3) */ + use Friendica\App; use Friendica\Core\Config; +use Friendica\Core\System; +use Friendica\Database\DBA; use Friendica\Model\Contact; use Friendica\Model\GContact; +use Friendica\Util\Proxy as ProxyUtils; function hovercard_init(App $a) { @@ -25,7 +29,7 @@ function hovercard_content() // Get out if the system doesn't have public access allowed if (intval(Config::get('system', 'block_public'))) { - http_status_exit(401); + System::httpExit(401); } // Return the raw content of the template. We use this to make templates usable for js functions. @@ -42,19 +46,41 @@ function hovercard_content() // the contact. So we strip out the contact id from the internal url and look in the contact table for // the real url (nurl) $cid = 0; - if (local_user() && strpos($profileurl, 'redir/') === 0) { + if (strpos($profileurl, 'redir/') === 0) { $cid = intval(substr($profileurl, 6)); - $r = dba::selectFirst('contact', ['nurl'], ['id' => $cid]); - $profileurl = defaults($r, 'nurl', ''); + $remote_contact = DBA::selectFirst('contact', ['nurl'], ['id' => $cid]); + $profileurl = defaults($remote_contact, 'nurl', ''); } $contact = []; // if it's the url containing https it should be converted to http $nurl = normalise_link(GContact::cleanContactUrl($profileurl)); - if ($nurl) { - // Search for contact data + if (!$nurl) { + return; + } + + // Search for contact data + // Look if the local user has got the contact + if (local_user()) { + $contact = Contact::getDetailsByURL($nurl, local_user()); + } + + // If not then check the global user + if (!count($contact)) { $contact = Contact::getDetailsByURL($nurl); } + + // Feeds url could have been destroyed through "cleanContactUrl", so we now use the original url + if (!count($contact) && local_user()) { + $nurl = normalise_link($profileurl); + $contact = Contact::getDetailsByURL($nurl, local_user()); + } + + if (!count($contact)) { + $nurl = normalise_link($profileurl); + $contact = Contact::getDetailsByURL($nurl); + } + if (!count($contact)) { return; } @@ -62,15 +88,17 @@ function hovercard_content() // Get the photo_menu - the menu if possible contact actions if (local_user()) { $actions = Contact::photoMenu($contact); + } else { + $actions = []; } // Move the contact data to the profile array so we can deliver it to - $profile = array( + $profile = [ 'name' => $contact['name'], 'nick' => $contact['nick'], 'addr' => defaults($contact, 'addr', $contact['url']), - 'thumb' => proxy_url($contact['thumb'], false, PROXY_SIZE_THUMB), - 'url' => $cid ? ('redir/' . $cid) : zrl($contact['url']), + 'thumb' => ProxyUtils::proxifyUrl($contact['thumb'], false, ProxyUtils::SIZE_THUMB), + 'url' => Contact::magicLink($contact['url']), 'nurl' => $contact['nurl'], // We additionally store the nurl as identifier 'location' => $contact['location'], 'gender' => $contact['gender'], @@ -80,16 +108,16 @@ function hovercard_content() 'bd' => $contact['birthday'] <= '0001-01-01' ? '' : $contact['birthday'], 'account_type' => Contact::getAccountType($contact), 'actions' => $actions, - ); + ]; if ($datatype == 'html') { $tpl = get_markup_template('hovercard.tpl'); - $o = replace_macros($tpl, array( + $o = replace_macros($tpl, [ '$profile' => $profile, - )); + ]); return $o; } else { - json_return_and_die($profile); + System::jsonExit($profile); } }