X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModel%2FAPContact.php;h=c49017b595b120d3730e3d885417a7d4fedc4e27;hb=f2c1ecd19bb344137a91faab58d9a2524e0c8893;hp=36ca7de446b29fbbb2e32f2b923ff6bf3a1b2a15;hpb=3f618218c70b12b8c8bde58b3d65ea2b2f1d20e7;p=friendica.git diff --git a/src/Model/APContact.php b/src/Model/APContact.php index 36ca7de446..c49017b595 100644 --- a/src/Model/APContact.php +++ b/src/Model/APContact.php @@ -119,6 +119,11 @@ class APContact return []; } + if (!Network::isValidHttpUrl($url) && !filter_var($url, FILTER_VALIDATE_EMAIL)) { + Logger::info('Invalid URL', ['url' => $url]); + return []; + } + $fetched_contact = []; if (empty($update)) { @@ -168,7 +173,7 @@ class APContact $cachekey = 'apcontact:' . ItemURI::getIdByURI($url); $result = DI::cache()->get($cachekey); if (!is_null($result)) { - Logger::notice('Multiple requests for the address', ['url' => $url, 'update' => $update, 'callstack' => System::callstack(20), 'result' => $result]); + Logger::info('Multiple requests for the address', ['url' => $url, 'update' => $update, 'callstack' => System::callstack(20), 'result' => $result]); if (!empty($fetched_contact)) { return $fetched_contact; } @@ -188,17 +193,22 @@ class APContact if (empty($data)) { $local_owner = []; - $curlResult = HTTPSignature::fetchRaw($url); - $failed = empty($curlResult) || empty($curlResult->getBody()) || - (!$curlResult->isSuccess() && ($curlResult->getReturnCode() != 410)); - - if (!$failed) { - $data = json_decode($curlResult->getBody(), true); - $failed = empty($data) || !is_array($data); - } + try { + $curlResult = HTTPSignature::fetchRaw($url); + $failed = empty($curlResult) || empty($curlResult->getBody()) || + (!$curlResult->isSuccess() && ($curlResult->getReturnCode() != 410)); + + if (!$failed) { + $data = json_decode($curlResult->getBody(), true); + $failed = empty($data) || !is_array($data); + } - if (!$failed && ($curlResult->getReturnCode() == 410)) { - $data = ['@context' => ActivityPub::CONTEXT, 'id' => $url, 'type' => 'Tombstone']; + if (!$failed && ($curlResult->getReturnCode() == 410)) { + $data = ['@context' => ActivityPub::CONTEXT, 'id' => $url, 'type' => 'Tombstone']; + } + } catch (\Exception $exception) { + Logger::notice('Error fetching url', ['url' => $url, 'exception' => $exception]); + $failed = true; } if ($failed) { @@ -253,6 +263,11 @@ class APContact $apcontact['photo'] = JsonLD::fetchElement($compacted, 'as:icon', '@id'); if (is_array($apcontact['photo']) || !empty($compacted['as:icon']['as:url']['@id'])) { $apcontact['photo'] = JsonLD::fetchElement($compacted['as:icon'], 'as:url', '@id'); + } elseif (empty($apcontact['photo'])) { + $photo = JsonLD::fetchElementArray($compacted, 'as:icon', 'as:url'); + if (!empty($photo[0]['@id'])) { + $apcontact['photo'] = $photo[0]['@id']; + } } $apcontact['header'] = JsonLD::fetchElement($compacted, 'as:image', '@id'); @@ -358,12 +373,12 @@ class APContact $apcontact['discoverable'] = JsonLD::fetchElement($compacted, 'toot:discoverable', '@value'); if (!empty($apcontact['photo'])) { - $apcontact['photo'] = trim($apcontact['photo']); - } + $apcontact['photo'] = Network::addBasePath($apcontact['photo'], $apcontact['url']); - if (!empty($apcontact['photo']) && !Network::isValidHttpUrl($apcontact['photo'])) { - Logger::warning('Invalid URL for photo', ['url' => $apcontact['url'], 'photo' => $apcontact['photo']]); - $apcontact['photo'] = ''; + if (!Network::isValidHttpUrl($apcontact['photo'])) { + Logger::warning('Invalid URL for photo', ['url' => $apcontact['url'], 'photo' => $apcontact['photo']]); + $apcontact['photo'] = ''; + } } // When the photo is too large, try to shorten it by removing parts @@ -569,6 +584,14 @@ class APContact */ public static function isRelay(array $apcontact): bool { + if (in_array($apcontact['type'], ['Person', 'Organization'])) { + return false; + } + + if (($apcontact['type'] == 'Service') && empty($apcontact['outbox']) && empty($apcontact['sharedinbox']) && empty($apcontact['following']) && empty($apcontact['followers']) && empty($apcontact['statuses_count'])) { + return true; + } + if (empty($apcontact['nick']) || $apcontact['nick'] != 'relay') { return false; }