2018-09-26 17:24:29 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-02 07:27:47 +00:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 14:45:36 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-09-26 17:24:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Model;
|
|
|
|
|
2018-11-08 16:28:29 +00:00
|
|
|
use Friendica\Content\Text\HTML;
|
2021-10-23 08:49:27 +00:00
|
|
|
use Friendica\Core\Cache\Enum\Duration;
|
2018-10-29 21:20:46 +00:00
|
|
|
use Friendica\Core\Logger;
|
2022-08-15 13:23:01 +00:00
|
|
|
use Friendica\Core\Protocol;
|
2020-10-02 09:31:39 +00:00
|
|
|
use Friendica\Core\System;
|
2018-09-26 17:24:29 +00:00
|
|
|
use Friendica\Database\DBA;
|
2020-10-02 09:31:39 +00:00
|
|
|
use Friendica\DI;
|
2022-09-12 21:12:11 +00:00
|
|
|
use Friendica\Model\Item;
|
2022-04-02 18:26:11 +00:00
|
|
|
use Friendica\Network\HTTPClient\Client\HttpClientAccept;
|
2021-07-20 17:04:25 +00:00
|
|
|
use Friendica\Network\HTTPException;
|
2020-06-04 21:55:14 +00:00
|
|
|
use Friendica\Network\Probe;
|
|
|
|
use Friendica\Protocol\ActivityNamespace;
|
2018-09-26 17:24:29 +00:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2021-07-18 18:54:25 +00:00
|
|
|
use Friendica\Protocol\ActivityPub\Transmitter;
|
2020-03-24 23:12:53 +00:00
|
|
|
use Friendica\Util\Crypto;
|
2018-09-26 17:24:29 +00:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2020-11-23 19:25:22 +00:00
|
|
|
use Friendica\Util\HTTPSignature;
|
2020-03-04 21:07:05 +00:00
|
|
|
use Friendica\Util\JsonLD;
|
|
|
|
use Friendica\Util\Network;
|
2022-07-27 17:39:00 +00:00
|
|
|
use GuzzleHttp\Psr7\Uri;
|
2018-09-26 17:24:29 +00:00
|
|
|
|
2019-12-15 22:28:01 +00:00
|
|
|
class APContact
|
2018-09-26 17:24:29 +00:00
|
|
|
{
|
|
|
|
/**
|
2020-06-04 21:55:14 +00:00
|
|
|
* Fetch webfinger data
|
2018-09-26 17:24:29 +00:00
|
|
|
*
|
2020-06-04 21:55:14 +00:00
|
|
|
* @param string $addr Address
|
|
|
|
* @return array webfinger data
|
2018-09-26 17:24:29 +00:00
|
|
|
*/
|
2022-06-17 08:44:13 +00:00
|
|
|
private static function fetchWebfingerData(string $addr): array
|
2018-09-26 17:24:29 +00:00
|
|
|
{
|
|
|
|
$addr_parts = explode('@', $addr);
|
|
|
|
if (count($addr_parts) != 2) {
|
2020-06-04 21:55:14 +00:00
|
|
|
return [];
|
2018-09-26 17:24:29 +00:00
|
|
|
}
|
|
|
|
|
2021-07-19 04:15:57 +00:00
|
|
|
if (Contact::isLocal($addr) && ($local_uid = User::getIdForURL($addr)) && ($local_owner = User::getOwnerDataById($local_uid))) {
|
|
|
|
$data = [
|
|
|
|
'addr' => $local_owner['addr'],
|
|
|
|
'baseurl' => $local_owner['baseurl'],
|
|
|
|
'url' => $local_owner['url'],
|
|
|
|
'subscribe' => $local_owner['baseurl'] . '/follow?url={uri}'];
|
|
|
|
|
|
|
|
if (!empty($local_owner['alias']) && ($local_owner['url'] != $local_owner['alias'])) {
|
|
|
|
$data['alias'] = $local_owner['alias'];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2020-06-04 21:55:14 +00:00
|
|
|
$data = ['addr' => $addr];
|
|
|
|
$template = 'https://' . $addr_parts[1] . '/.well-known/webfinger?resource=acct:' . urlencode($addr);
|
2022-04-02 18:26:11 +00:00
|
|
|
$webfinger = Probe::webfinger(str_replace('{uri}', urlencode($addr), $template), HttpClientAccept::JRD_JSON);
|
2020-06-04 21:55:14 +00:00
|
|
|
if (empty($webfinger['links'])) {
|
|
|
|
$template = 'http://' . $addr_parts[1] . '/.well-known/webfinger?resource=acct:' . urlencode($addr);
|
2022-04-02 18:26:11 +00:00
|
|
|
$webfinger = Probe::webfinger(str_replace('{uri}', urlencode($addr), $template), HttpClientAccept::JRD_JSON);
|
2020-06-04 21:55:14 +00:00
|
|
|
if (empty($webfinger['links'])) {
|
|
|
|
return [];
|
2019-06-18 07:47:21 +00:00
|
|
|
}
|
2020-06-04 21:55:14 +00:00
|
|
|
$data['baseurl'] = 'http://' . $addr_parts[1];
|
|
|
|
} else {
|
|
|
|
$data['baseurl'] = 'https://' . $addr_parts[1];
|
2018-09-26 17:24:29 +00:00
|
|
|
}
|
|
|
|
|
2020-06-04 21:55:14 +00:00
|
|
|
foreach ($webfinger['links'] as $link) {
|
|
|
|
if (empty($link['rel'])) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-09-26 17:24:29 +00:00
|
|
|
|
2020-06-04 21:55:14 +00:00
|
|
|
if (!empty($link['template']) && ($link['rel'] == ActivityNamespace::OSTATUSSUB)) {
|
|
|
|
$data['subscribe'] = $link['template'];
|
2019-06-18 07:47:21 +00:00
|
|
|
}
|
|
|
|
|
2020-06-04 21:55:14 +00:00
|
|
|
if (!empty($link['href']) && !empty($link['type']) && ($link['rel'] == 'self') && ($link['type'] == 'application/activity+json')) {
|
|
|
|
$data['url'] = $link['href'];
|
2018-09-26 17:24:29 +00:00
|
|
|
}
|
|
|
|
|
2020-06-04 21:55:14 +00:00
|
|
|
if (!empty($link['href']) && !empty($link['type']) && ($link['rel'] == 'http://webfinger.net/rel/profile-page') && ($link['type'] == 'text/html')) {
|
|
|
|
$data['alias'] = $link['href'];
|
2018-09-26 17:24:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-04 21:55:14 +00:00
|
|
|
if (!empty($data['url']) && !empty($data['alias']) && ($data['url'] == $data['alias'])) {
|
|
|
|
unset($data['alias']);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
2018-09-26 17:24:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetches a profile from a given url
|
|
|
|
*
|
|
|
|
* @param string $url profile url
|
2019-01-05 22:04:32 +00:00
|
|
|
* @param boolean $update true = always update, false = never update, null = update when not found or outdated
|
2018-09-26 17:24:29 +00:00
|
|
|
* @return array profile array
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2022-06-20 18:59:08 +00:00
|
|
|
* @todo Rewrite parameter $update to avoid true|false|null (boolean is binary, null adds a third case)
|
2018-09-26 17:24:29 +00:00
|
|
|
*/
|
2022-06-17 08:44:13 +00:00
|
|
|
public static function getByURL(string $url, $update = null): array
|
2018-09-26 17:24:29 +00:00
|
|
|
{
|
2021-10-02 10:25:50 +00:00
|
|
|
if (empty($url) || Network::isUrlBlocked($url)) {
|
|
|
|
Logger::info('Domain is blocked', ['url' => $url]);
|
2019-12-11 13:20:38 +00:00
|
|
|
return [];
|
2018-09-26 17:24:29 +00:00
|
|
|
}
|
|
|
|
|
2022-06-17 09:48:52 +00:00
|
|
|
$fetched_contact = [];
|
2019-06-20 03:06:34 +00:00
|
|
|
|
2018-09-26 17:24:29 +00:00
|
|
|
if (empty($update)) {
|
2019-01-05 22:04:32 +00:00
|
|
|
if (is_null($update)) {
|
|
|
|
$ref_update = DateTimeFormat::utc('now - 1 month');
|
|
|
|
} else {
|
|
|
|
$ref_update = DBA::NULL_DATETIME;
|
|
|
|
}
|
|
|
|
|
2018-09-26 17:24:29 +00:00
|
|
|
$apcontact = DBA::selectFirst('apcontact', [], ['url' => $url]);
|
2019-01-05 22:04:32 +00:00
|
|
|
if (!DBA::isResult($apcontact)) {
|
|
|
|
$apcontact = DBA::selectFirst('apcontact', [], ['alias' => $url]);
|
2018-09-26 17:24:29 +00:00
|
|
|
}
|
|
|
|
|
2019-01-05 22:04:32 +00:00
|
|
|
if (!DBA::isResult($apcontact)) {
|
|
|
|
$apcontact = DBA::selectFirst('apcontact', [], ['addr' => $url]);
|
2018-09-26 17:24:29 +00:00
|
|
|
}
|
|
|
|
|
2021-07-09 14:52:22 +00:00
|
|
|
if (DBA::isResult($apcontact) && ($apcontact['updated'] > $ref_update) && !empty($apcontact['pubkey']) && !empty($apcontact['uri-id'])) {
|
2018-09-26 17:24:29 +00:00
|
|
|
return $apcontact;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_null($update)) {
|
2019-12-11 13:20:38 +00:00
|
|
|
return DBA::isResult($apcontact) ? $apcontact : [];
|
2018-09-26 17:24:29 +00:00
|
|
|
}
|
2019-06-20 03:06:34 +00:00
|
|
|
|
|
|
|
if (DBA::isResult($apcontact)) {
|
|
|
|
$fetched_contact = $apcontact;
|
|
|
|
}
|
2018-09-26 17:24:29 +00:00
|
|
|
}
|
|
|
|
|
2020-06-04 21:55:14 +00:00
|
|
|
$apcontact = [];
|
|
|
|
|
|
|
|
$webfinger = empty(parse_url($url, PHP_URL_SCHEME));
|
|
|
|
if ($webfinger) {
|
|
|
|
$apcontact = self::fetchWebfingerData($url);
|
|
|
|
if (empty($apcontact['url'])) {
|
2019-06-20 03:06:34 +00:00
|
|
|
return $fetched_contact;
|
2018-09-26 17:24:29 +00:00
|
|
|
}
|
2020-06-04 21:55:14 +00:00
|
|
|
$url = $apcontact['url'];
|
2022-07-05 05:04:05 +00:00
|
|
|
} elseif (empty(parse_url($url, PHP_URL_PATH))) {
|
|
|
|
$apcontact['baseurl'] = $url;
|
2018-09-26 17:24:29 +00:00
|
|
|
}
|
|
|
|
|
2021-07-18 16:42:55 +00:00
|
|
|
// Detect multiple fast repeating request to the same address
|
|
|
|
// See https://github.com/friendica/friendica/issues/9303
|
2022-03-15 14:52:40 +00:00
|
|
|
$cachekey = 'apcontact:' . ItemURI::getIdByURI($url);
|
2021-07-18 16:42:55 +00:00
|
|
|
$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]);
|
|
|
|
if (!empty($fetched_contact)) {
|
|
|
|
return $fetched_contact;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
DI::cache()->set($cachekey, System::callstack(20), Duration::FIVE_MINUTES);
|
|
|
|
}
|
|
|
|
|
2021-07-18 18:54:25 +00:00
|
|
|
if (Network::isLocalLink($url) && ($local_uid = User::getIdForURL($url))) {
|
2021-07-20 17:04:25 +00:00
|
|
|
try {
|
|
|
|
$data = Transmitter::getProfile($local_uid);
|
|
|
|
$local_owner = User::getOwnerDataById($local_uid);
|
|
|
|
} catch(HTTPException\NotFoundException $e) {
|
|
|
|
$data = null;
|
|
|
|
}
|
2020-12-15 22:56:46 +00:00
|
|
|
}
|
|
|
|
|
2021-07-18 18:54:25 +00:00
|
|
|
if (empty($data)) {
|
|
|
|
$local_owner = [];
|
2020-12-15 22:56:46 +00:00
|
|
|
|
2021-07-18 18:54:25 +00:00
|
|
|
$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) {
|
|
|
|
self::markForArchival($fetched_contact ?: []);
|
|
|
|
return $fetched_contact;
|
|
|
|
}
|
2018-09-26 17:24:29 +00:00
|
|
|
}
|
|
|
|
|
2021-05-17 05:59:41 +00:00
|
|
|
$compacted = JsonLD::compact($data);
|
|
|
|
if (empty($compacted['@id'])) {
|
2019-06-20 03:06:34 +00:00
|
|
|
return $fetched_contact;
|
2018-11-02 21:57:06 +00:00
|
|
|
}
|
2021-05-17 05:59:41 +00:00
|
|
|
|
|
|
|
$apcontact['url'] = $compacted['@id'];
|
|
|
|
$apcontact['uuid'] = JsonLD::fetchElement($compacted, 'diaspora:guid', '@value');
|
|
|
|
$apcontact['type'] = str_replace('as:', '', JsonLD::fetchElement($compacted, '@type'));
|
|
|
|
$apcontact['following'] = JsonLD::fetchElement($compacted, 'as:following', '@id');
|
|
|
|
$apcontact['followers'] = JsonLD::fetchElement($compacted, 'as:followers', '@id');
|
2022-06-17 08:53:45 +00:00
|
|
|
$apcontact['inbox'] = (JsonLD::fetchElement($compacted, 'ldp:inbox', '@id') ?? '');
|
2019-03-26 05:14:47 +00:00
|
|
|
self::unarchiveInbox($apcontact['inbox'], false);
|
2021-05-17 05:59:41 +00:00
|
|
|
|
|
|
|
$apcontact['outbox'] = JsonLD::fetchElement($compacted, 'as:outbox', '@id');
|
2018-10-22 07:24:47 +00:00
|
|
|
|
|
|
|
$apcontact['sharedinbox'] = '';
|
2021-05-17 05:59:41 +00:00
|
|
|
if (!empty($compacted['as:endpoints'])) {
|
2022-06-17 08:53:45 +00:00
|
|
|
$apcontact['sharedinbox'] = (JsonLD::fetchElement($compacted['as:endpoints'], 'as:sharedInbox', '@id') ?? '');
|
2019-03-26 05:14:47 +00:00
|
|
|
self::unarchiveInbox($apcontact['sharedinbox'], true);
|
2018-10-22 07:24:47 +00:00
|
|
|
}
|
|
|
|
|
2022-04-04 23:07:44 +00:00
|
|
|
$apcontact['featured'] = JsonLD::fetchElement($compacted, 'toot:featured', '@id');
|
|
|
|
$apcontact['featured-tags'] = JsonLD::fetchElement($compacted, 'toot:featuredTags', '@id');
|
|
|
|
|
2021-05-17 05:59:41 +00:00
|
|
|
$apcontact['nick'] = JsonLD::fetchElement($compacted, 'as:preferredUsername', '@value') ?? '';
|
|
|
|
$apcontact['name'] = JsonLD::fetchElement($compacted, 'as:name', '@value');
|
2018-10-22 07:24:47 +00:00
|
|
|
|
|
|
|
if (empty($apcontact['name'])) {
|
|
|
|
$apcontact['name'] = $apcontact['nick'];
|
|
|
|
}
|
|
|
|
|
2022-06-16 15:34:43 +00:00
|
|
|
$apcontact['about'] = HTML::toBBCode(JsonLD::fetchElement($compacted, 'as:summary', '@value') ?? '');
|
2018-10-22 07:24:47 +00:00
|
|
|
|
2021-08-10 23:49:09 +00:00
|
|
|
$ims = JsonLD::fetchElementArray($compacted, 'vcard:hasInstantMessage');
|
2022-06-16 11:14:00 +00:00
|
|
|
|
2021-08-10 23:49:09 +00:00
|
|
|
if (!empty($ims)) {
|
|
|
|
foreach ($ims as $link) {
|
|
|
|
if (substr($link, 0, 5) == 'xmpp:') {
|
|
|
|
$apcontact['xmpp'] = substr($link, 5);
|
|
|
|
}
|
|
|
|
if (substr($link, 0, 7) == 'matrix:') {
|
|
|
|
$apcontact['matrix'] = substr($link, 7);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-17 05:59:41 +00:00
|
|
|
$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');
|
2018-10-22 07:24:47 +00:00
|
|
|
}
|
|
|
|
|
2021-06-17 11:23:32 +00:00
|
|
|
$apcontact['header'] = JsonLD::fetchElement($compacted, 'as:image', '@id');
|
|
|
|
if (is_array($apcontact['header']) || !empty($compacted['as:image']['as:url']['@id'])) {
|
|
|
|
$apcontact['header'] = JsonLD::fetchElement($compacted['as:image'], 'as:url', '@id');
|
|
|
|
}
|
|
|
|
|
2020-06-04 21:55:14 +00:00
|
|
|
if (empty($apcontact['alias'])) {
|
2021-05-17 05:59:41 +00:00
|
|
|
$apcontact['alias'] = JsonLD::fetchElement($compacted, 'as:url', '@id');
|
2020-06-04 21:55:14 +00:00
|
|
|
if (is_array($apcontact['alias'])) {
|
2021-05-17 05:59:41 +00:00
|
|
|
$apcontact['alias'] = JsonLD::fetchElement($compacted['as:url'], 'as:href', '@id');
|
2020-06-04 21:55:14 +00:00
|
|
|
}
|
2018-10-22 07:24:47 +00:00
|
|
|
}
|
|
|
|
|
2019-06-11 05:26:16 +00:00
|
|
|
// Quit if none of the basic values are set
|
2020-12-15 22:56:46 +00:00
|
|
|
if (empty($apcontact['url']) || empty($apcontact['type']) || (($apcontact['type'] != 'Tombstone') && empty($apcontact['inbox']))) {
|
2019-06-20 03:06:34 +00:00
|
|
|
return $fetched_contact;
|
2020-12-15 22:56:46 +00:00
|
|
|
} elseif ($apcontact['type'] == 'Tombstone') {
|
|
|
|
// The "inbox" field must have a content
|
|
|
|
$apcontact['inbox'] = '';
|
2019-06-11 05:26:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Quit if this doesn't seem to be an account at all
|
|
|
|
if (!in_array($apcontact['type'], ActivityPub::ACCOUNT_TYPES)) {
|
2019-06-20 03:06:34 +00:00
|
|
|
return $fetched_contact;
|
2018-10-22 07:24:47 +00:00
|
|
|
}
|
2018-09-26 17:24:29 +00:00
|
|
|
|
|
|
|
$parts = parse_url($apcontact['url']);
|
|
|
|
unset($parts['scheme']);
|
|
|
|
unset($parts['path']);
|
2019-07-24 19:30:36 +00:00
|
|
|
|
2020-06-04 21:55:14 +00:00
|
|
|
if (empty($apcontact['addr'])) {
|
2021-05-11 01:52:26 +00:00
|
|
|
if (!empty($apcontact['nick']) && is_array($parts)) {
|
2020-06-04 21:55:14 +00:00
|
|
|
$apcontact['addr'] = $apcontact['nick'] . '@' . str_replace('//', '', Network::unparseURL($parts));
|
|
|
|
} else {
|
|
|
|
$apcontact['addr'] = '';
|
|
|
|
}
|
2019-07-24 19:30:36 +00:00
|
|
|
}
|
2018-09-26 17:24:29 +00:00
|
|
|
|
2019-12-24 20:37:35 +00:00
|
|
|
$apcontact['pubkey'] = null;
|
2021-05-17 05:59:41 +00:00
|
|
|
if (!empty($compacted['w3id:publicKey'])) {
|
|
|
|
$apcontact['pubkey'] = trim(JsonLD::fetchElement($compacted['w3id:publicKey'], 'w3id:publicKeyPem', '@value'));
|
2020-03-24 23:12:53 +00:00
|
|
|
if (strstr($apcontact['pubkey'], 'RSA ')) {
|
|
|
|
$apcontact['pubkey'] = Crypto::rsaToPem($apcontact['pubkey']);
|
|
|
|
}
|
2019-04-24 20:08:43 +00:00
|
|
|
}
|
2018-09-26 17:24:29 +00:00
|
|
|
|
2021-05-17 05:59:41 +00:00
|
|
|
$apcontact['manually-approve'] = (int)JsonLD::fetchElement($compacted, 'as:manuallyApprovesFollowers');
|
2019-01-12 16:09:27 +00:00
|
|
|
|
2022-07-27 17:39:00 +00:00
|
|
|
$apcontact['suspended'] = (int)JsonLD::fetchElement($compacted, 'toot:suspended');
|
|
|
|
|
2021-05-17 05:59:41 +00:00
|
|
|
if (!empty($compacted['as:generator'])) {
|
|
|
|
$apcontact['baseurl'] = JsonLD::fetchElement($compacted['as:generator'], 'as:url', '@id');
|
|
|
|
$apcontact['generator'] = JsonLD::fetchElement($compacted['as:generator'], 'as:name', '@value');
|
2019-05-02 13:05:31 +00:00
|
|
|
}
|
|
|
|
|
2019-12-11 00:05:50 +00:00
|
|
|
if (!empty($apcontact['following'])) {
|
2021-07-18 18:54:25 +00:00
|
|
|
if (!empty($local_owner)) {
|
|
|
|
$following = ActivityPub\Transmitter::getContacts($local_owner, [Contact::SHARING, Contact::FRIEND], 'following');
|
|
|
|
} else {
|
|
|
|
$following = ActivityPub::fetchContent($apcontact['following']);
|
|
|
|
}
|
2021-05-16 20:10:22 +00:00
|
|
|
if (!empty($following['totalItems'])) {
|
2021-07-19 04:15:57 +00:00
|
|
|
// Mastodon seriously allows for this condition?
|
2021-07-14 20:51:30 +00:00
|
|
|
// Jul 14 2021 - See https://mastodon.social/@BLUW for a negative following count
|
|
|
|
if ($following['totalItems'] < 0) {
|
|
|
|
$following['totalItems'] = 0;
|
|
|
|
}
|
2021-05-16 20:10:22 +00:00
|
|
|
$apcontact['following_count'] = $following['totalItems'];
|
2019-12-11 00:05:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($apcontact['followers'])) {
|
2021-07-18 18:54:25 +00:00
|
|
|
if (!empty($local_owner)) {
|
|
|
|
$followers = ActivityPub\Transmitter::getContacts($local_owner, [Contact::FOLLOWER, Contact::FRIEND], 'followers');
|
|
|
|
} else {
|
|
|
|
$followers = ActivityPub::fetchContent($apcontact['followers']);
|
|
|
|
}
|
2021-05-16 20:10:22 +00:00
|
|
|
if (!empty($followers['totalItems'])) {
|
2021-07-19 04:15:57 +00:00
|
|
|
// Mastodon seriously allows for this condition?
|
2021-07-14 20:46:38 +00:00
|
|
|
// Jul 14 2021 - See https://mastodon.online/@goes11 for a negative followers count
|
|
|
|
if ($followers['totalItems'] < 0) {
|
|
|
|
$followers['totalItems'] = 0;
|
|
|
|
}
|
2021-05-16 20:10:22 +00:00
|
|
|
$apcontact['followers_count'] = $followers['totalItems'];
|
2019-12-11 00:05:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($apcontact['outbox'])) {
|
2021-07-18 18:54:25 +00:00
|
|
|
if (!empty($local_owner)) {
|
2022-08-15 13:23:01 +00:00
|
|
|
$statuses_count = self::getStatusesCount($local_owner);
|
2021-07-18 18:54:25 +00:00
|
|
|
} else {
|
|
|
|
$outbox = ActivityPub::fetchContent($apcontact['outbox']);
|
2022-08-15 13:23:01 +00:00
|
|
|
$statuses_count = $outbox['totalItems'] ?? 0;
|
2021-07-18 18:54:25 +00:00
|
|
|
}
|
2022-08-15 13:23:01 +00:00
|
|
|
if (!empty($statuses_count)) {
|
2021-07-20 17:11:04 +00:00
|
|
|
// Mastodon seriously allows for this condition?
|
|
|
|
// Jul 20 2021 - See https://chaos.social/@m11 for a negative posts count
|
2022-08-15 13:23:01 +00:00
|
|
|
if ($statuses_count < 0) {
|
|
|
|
$statuses_count = 0;
|
2021-07-20 17:11:04 +00:00
|
|
|
}
|
2022-08-15 13:23:01 +00:00
|
|
|
$apcontact['statuses_count'] = $statuses_count;
|
2019-12-11 00:05:50 +00:00
|
|
|
}
|
|
|
|
}
|
2019-12-11 00:10:25 +00:00
|
|
|
|
2021-06-30 05:40:11 +00:00
|
|
|
$apcontact['discoverable'] = JsonLD::fetchElement($compacted, 'toot:discoverable', '@value');
|
|
|
|
|
2018-09-26 17:24:29 +00:00
|
|
|
// To-Do
|
|
|
|
|
|
|
|
// Unhandled
|
2022-04-25 13:45:03 +00:00
|
|
|
// tag, attachment, image, nomadicLocations, signature, movedTo, liked
|
2018-09-26 17:24:29 +00:00
|
|
|
|
|
|
|
// Unhandled from Misskey
|
|
|
|
// sharedInbox, isCat
|
|
|
|
|
|
|
|
// Unhandled from Kroeg
|
|
|
|
// kroeg:blocks, updated
|
|
|
|
|
2020-03-28 15:14:40 +00:00
|
|
|
// When the photo is too large, try to shorten it by removing parts
|
|
|
|
if (strlen($apcontact['photo']) > 255) {
|
|
|
|
$parts = parse_url($apcontact['photo']);
|
2020-03-28 15:18:12 +00:00
|
|
|
unset($parts['fragment']);
|
2022-07-29 16:05:04 +00:00
|
|
|
$apcontact['photo'] = (string)Uri::fromParts($parts);
|
2020-03-28 15:14:40 +00:00
|
|
|
|
|
|
|
if (strlen($apcontact['photo']) > 255) {
|
2020-03-28 15:18:12 +00:00
|
|
|
unset($parts['query']);
|
2022-07-29 16:05:04 +00:00
|
|
|
$apcontact['photo'] = (string)Uri::fromParts($parts);
|
2020-03-28 15:14:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (strlen($apcontact['photo']) > 255) {
|
|
|
|
$apcontact['photo'] = substr($apcontact['photo'], 0, 255);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-04 21:55:14 +00:00
|
|
|
if (!$webfinger && !empty($apcontact['addr'])) {
|
|
|
|
$data = self::fetchWebfingerData($apcontact['addr']);
|
|
|
|
if (!empty($data)) {
|
|
|
|
$apcontact['baseurl'] = $data['baseurl'];
|
2020-06-01 21:52:31 +00:00
|
|
|
|
2020-06-04 21:55:14 +00:00
|
|
|
if (empty($apcontact['alias']) && !empty($data['alias'])) {
|
|
|
|
$apcontact['alias'] = $data['alias'];
|
|
|
|
}
|
|
|
|
if (!empty($data['subscribe'])) {
|
|
|
|
$apcontact['subscribe'] = $data['subscribe'];
|
|
|
|
}
|
2020-06-04 22:08:31 +00:00
|
|
|
} else {
|
|
|
|
$apcontact['addr'] = null;
|
2020-06-01 21:52:31 +00:00
|
|
|
}
|
2019-05-02 13:05:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($apcontact['baseurl'])) {
|
2018-09-26 17:24:29 +00:00
|
|
|
$apcontact['baseurl'] = null;
|
|
|
|
}
|
|
|
|
|
2020-06-05 10:44:36 +00:00
|
|
|
if (empty($apcontact['subscribe'])) {
|
|
|
|
$apcontact['subscribe'] = null;
|
2021-05-17 06:01:47 +00:00
|
|
|
}
|
2020-06-05 10:44:36 +00:00
|
|
|
|
2020-05-22 11:29:58 +00:00
|
|
|
if (!empty($apcontact['baseurl']) && empty($fetched_contact['gsid'])) {
|
2020-05-22 04:19:32 +00:00
|
|
|
$apcontact['gsid'] = GServer::getID($apcontact['baseurl']);
|
2020-05-22 11:29:58 +00:00
|
|
|
} elseif (!empty($fetched_contact['gsid'])) {
|
|
|
|
$apcontact['gsid'] = $fetched_contact['gsid'];
|
2020-05-26 05:18:50 +00:00
|
|
|
} else {
|
|
|
|
$apcontact['gsid'] = null;
|
2020-05-22 04:19:32 +00:00
|
|
|
}
|
|
|
|
|
2018-09-26 17:24:29 +00:00
|
|
|
if ($apcontact['url'] == $apcontact['alias']) {
|
|
|
|
$apcontact['alias'] = null;
|
|
|
|
}
|
|
|
|
|
2021-07-09 07:09:33 +00:00
|
|
|
if (empty($apcontact['uuid'])) {
|
|
|
|
$apcontact['uri-id'] = ItemURI::getIdByURI($apcontact['url']);
|
|
|
|
} else {
|
2021-07-09 14:52:22 +00:00
|
|
|
$apcontact['uri-id'] = ItemURI::insert(['uri' => $apcontact['url'], 'guid' => $apcontact['uuid']]);
|
2021-07-09 07:09:33 +00:00
|
|
|
}
|
|
|
|
|
2022-04-25 13:45:03 +00:00
|
|
|
foreach (APContact\Endpoint::ENDPOINT_NAMES as $type => $name) {
|
|
|
|
$value = JsonLD::fetchElement($compacted, $name, '@id');
|
|
|
|
if (empty($value)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
APContact\Endpoint::update($apcontact['uri-id'], $type, $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($compacted['as:endpoints'])) {
|
|
|
|
foreach ($compacted['as:endpoints'] as $name => $endpoint) {
|
|
|
|
if (empty($endpoint['@id']) || !is_string($endpoint['@id'])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (in_array($name, APContact\Endpoint::ENDPOINT_NAMES)) {
|
|
|
|
$key = array_search($name, APContact\Endpoint::ENDPOINT_NAMES);
|
|
|
|
APContact\Endpoint::update($apcontact['uri-id'], $key, $endpoint['@id']);
|
|
|
|
Logger::debug('Store endpoint', ['key' => $key, 'name' => $name, 'endpoint' => $endpoint['@id']]);
|
|
|
|
} elseif (!in_array($name, ['as:sharedInbox', 'as:uploadMedia', 'as:oauthTokenEndpoint', 'as:oauthAuthorizationEndpoint', 'litepub:oauthRegistrationEndpoint'])) {
|
|
|
|
Logger::debug('Unknown endpoint', ['name' => $name, 'endpoint' => $endpoint['@id']]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-26 17:24:29 +00:00
|
|
|
$apcontact['updated'] = DateTimeFormat::utcNow();
|
|
|
|
|
2019-06-18 07:47:21 +00:00
|
|
|
// We delete the old entry when the URL is changed
|
2020-09-06 09:39:47 +00:00
|
|
|
if ($url != $apcontact['url']) {
|
|
|
|
Logger::info('Delete changed profile url', ['old' => $url, 'new' => $apcontact['url']]);
|
2019-06-18 07:47:21 +00:00
|
|
|
DBA::delete('apcontact', ['url' => $url]);
|
|
|
|
}
|
|
|
|
|
2021-05-24 19:44:24 +00:00
|
|
|
// Limit the length on incoming fields
|
2022-07-12 22:23:12 +00:00
|
|
|
$apcontact = DI::dbaDefinition()->truncateFieldsForTable('apcontact', $apcontact);
|
2021-05-24 19:44:24 +00:00
|
|
|
|
2020-09-06 09:39:47 +00:00
|
|
|
if (DBA::exists('apcontact', ['url' => $apcontact['url']])) {
|
|
|
|
DBA::update('apcontact', $apcontact, ['url' => $apcontact['url']]);
|
|
|
|
} else {
|
|
|
|
DBA::replace('apcontact', $apcontact);
|
|
|
|
}
|
|
|
|
|
2020-06-01 21:52:31 +00:00
|
|
|
Logger::info('Updated profile', ['url' => $url]);
|
2018-09-26 17:24:29 +00:00
|
|
|
|
2021-05-25 13:11:23 +00:00
|
|
|
return DBA::selectFirst('apcontact', [], ['url' => $apcontact['url']]) ?: [];
|
2018-09-26 17:24:29 +00:00
|
|
|
}
|
2019-03-25 22:43:00 +00:00
|
|
|
|
2022-08-15 13:23:01 +00:00
|
|
|
/**
|
|
|
|
* Fetch the number of statuses for the given owner
|
|
|
|
*
|
|
|
|
* @param array $owner
|
|
|
|
*
|
|
|
|
* @return integer
|
|
|
|
*/
|
|
|
|
private static function getStatusesCount(array $owner): int
|
|
|
|
{
|
|
|
|
$condition = [
|
2022-09-12 21:12:11 +00:00
|
|
|
'private' => [Item::PUBLIC, Item::UNLISTED],
|
2022-08-15 13:23:01 +00:00
|
|
|
'author-id' => Contact::getIdForURL($owner['url'], 0, false),
|
2022-09-12 21:12:11 +00:00
|
|
|
'gravity' => [Item::GRAVITY_PARENT, Item::GRAVITY_COMMENT],
|
2022-08-15 13:23:01 +00:00
|
|
|
'network' => Protocol::DFRN,
|
|
|
|
'parent-network' => Protocol::FEDERATED,
|
|
|
|
'deleted' => false,
|
2022-09-12 21:12:11 +00:00
|
|
|
'visible' => true,
|
2022-08-15 13:23:01 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
$count = Post::countPosts($condition);
|
|
|
|
|
|
|
|
return $count;
|
|
|
|
}
|
|
|
|
|
2020-11-23 19:25:22 +00:00
|
|
|
/**
|
|
|
|
* Mark the given AP Contact as "to archive"
|
|
|
|
*
|
|
|
|
* @param array $apcontact
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function markForArchival(array $apcontact)
|
|
|
|
{
|
|
|
|
if (!empty($apcontact['inbox'])) {
|
|
|
|
Logger::info('Set inbox status to failure', ['inbox' => $apcontact['inbox']]);
|
|
|
|
HTTPSignature::setInboxStatus($apcontact['inbox'], false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($apcontact['sharedinbox'])) {
|
2020-11-24 07:49:36 +00:00
|
|
|
// Check if there are any available inboxes
|
|
|
|
$available = DBA::exists('apcontact', ["`sharedinbox` = ? AnD `inbox` IN (SELECT `url` FROM `inbox-status` WHERE `success` > `failure`)",
|
2020-11-23 19:25:22 +00:00
|
|
|
$apcontact['sharedinbox']]);
|
2020-11-24 07:49:36 +00:00
|
|
|
if (!$available) {
|
2020-11-23 19:25:22 +00:00
|
|
|
// If all known personal inboxes are failing then set their shared inbox to failure as well
|
|
|
|
Logger::info('Set shared inbox status to failure', ['sharedinbox' => $apcontact['sharedinbox']]);
|
|
|
|
HTTPSignature::setInboxStatus($apcontact['sharedinbox'], false, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unmark the given AP Contact as "to archive"
|
|
|
|
*
|
|
|
|
* @param array $apcontact
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function unmarkForArchival(array $apcontact)
|
|
|
|
{
|
|
|
|
if (!empty($apcontact['inbox'])) {
|
|
|
|
Logger::info('Set inbox status to success', ['inbox' => $apcontact['inbox']]);
|
|
|
|
HTTPSignature::setInboxStatus($apcontact['inbox'], true);
|
|
|
|
}
|
|
|
|
if (!empty($apcontact['sharedinbox'])) {
|
|
|
|
Logger::info('Set shared inbox status to success', ['sharedinbox' => $apcontact['sharedinbox']]);
|
|
|
|
HTTPSignature::setInboxStatus($apcontact['sharedinbox'], true, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-25 22:43:00 +00:00
|
|
|
/**
|
|
|
|
* Unarchive inboxes
|
|
|
|
*
|
2020-11-23 19:25:22 +00:00
|
|
|
* @param string $url inbox url
|
|
|
|
* @param boolean $shared Shared Inbox
|
2022-06-18 15:09:18 +00:00
|
|
|
* @return void
|
2019-03-25 22:43:00 +00:00
|
|
|
*/
|
2022-06-17 08:44:13 +00:00
|
|
|
private static function unarchiveInbox(string $url, bool $shared)
|
2019-03-25 22:43:00 +00:00
|
|
|
{
|
|
|
|
if (empty($url)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-11-23 19:25:22 +00:00
|
|
|
HTTPSignature::setInboxStatus($url, true, $shared);
|
2019-03-25 22:43:00 +00:00
|
|
|
}
|
2022-07-20 05:37:40 +00:00
|
|
|
|
2022-07-23 12:50:15 +00:00
|
|
|
/**
|
|
|
|
* Check if the apcontact is a relay account
|
|
|
|
*
|
|
|
|
* @param array $apcontact
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2022-07-20 05:37:40 +00:00
|
|
|
public static function isRelay(array $apcontact): bool
|
|
|
|
{
|
2022-09-24 13:56:12 +00:00
|
|
|
if (empty($apcontact['nick']) || $apcontact['nick'] != 'relay') {
|
2022-07-20 05:37:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-09-24 13:56:12 +00:00
|
|
|
if (!empty($apcontact['type']) && $apcontact['type'] == 'Application') {
|
2022-07-20 05:37:40 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-09-24 13:56:12 +00:00
|
|
|
if (!empty($apcontact['type']) && in_array($apcontact['type'], ['Group', 'Service']) && is_null($apcontact['outbox'])) {
|
2022-07-20 05:37:40 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2018-09-26 17:24:29 +00:00
|
|
|
}
|