X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModule%2FContact%2FHovercard.php;h=5c82fd2c4243217303853dcd2aafc867773ef224;hb=79235b6db1c9badd6c9602d54ad0d550e4bec2fd;hp=620b96095a4077d3307e6d03b6f9c6ce89080c73;hpb=f2cf3d007250cfb14c97fb130114cba10acdeb7e;p=friendica.git diff --git a/src/Module/Contact/Hovercard.php b/src/Module/Contact/Hovercard.php index 620b96095a..5c82fd2c42 100644 --- a/src/Module/Contact/Hovercard.php +++ b/src/Module/Contact/Hovercard.php @@ -44,23 +44,15 @@ class Hovercard extends BaseModule throw new HTTPException\ForbiddenException(); } - // If a contact is connected the url is internally changed to 'contact/redir/CID'. We need the pure url to search for - // the contact. So we strip out the contact id from the internal url and look in the contact table for - // the real url (nurl) - if (strpos($contact_url, 'contact/redir/') === 0) { - $cid = intval(substr($contact_url, 6)); - } elseif (strpos($contact_url, 'contact/') === 0) { - $cid = intval(substr($contact_url, 8)); - } - - if (!empty($cid)) { - $remote_contact = Contact::selectFirst(['nurl'], ['id' => $cid]); + /* Possible formats for relative URLs that need to be converted to the absolute contact URL: + * - contact/redir/123456 + * - contact/123456/conversations + */ + if (strpos($contact_url, 'contact/') === 0 && preg_match('/(\d+)/', $contact_url, $matches)) { + $remote_contact = Contact::selectFirst(['nurl'], ['id' => $matches[1]]); $contact_url = $remote_contact['nurl'] ?? ''; } - $contact = []; - - // if it's the url containing https it should be converted to http if (!$contact_url) { throw new HTTPException\BadRequestException(); }