2021-12-04 04:07:08 +00:00
|
|
|
<?php
|
|
|
|
|
2021-12-26 09:48:16 +00:00
|
|
|
declare(strict_types = 1);
|
2021-12-04 04:07:08 +00:00
|
|
|
|
|
|
|
// {{{ License
|
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social 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.
|
|
|
|
//
|
|
|
|
// GNU social 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 GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// }}}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ActivityPub implementation for GNU social
|
|
|
|
*
|
|
|
|
* @package GNUsocial
|
|
|
|
* @category ActivityPub
|
2021-12-26 09:48:16 +00:00
|
|
|
*
|
2021-12-04 04:07:08 +00:00
|
|
|
* @author Diogo Peralta Cordeiro <@diogo.site>
|
|
|
|
* @copyright 2021 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Plugin\ActivityPub\Util\Model;
|
|
|
|
|
|
|
|
use ActivityPhp\Type\AbstractObject;
|
2022-01-22 15:02:21 +00:00
|
|
|
use App\Core\ActorLocalRoles;
|
2021-12-04 04:07:08 +00:00
|
|
|
use App\Core\DB\DB;
|
|
|
|
use App\Core\Event;
|
2021-12-05 03:36:37 +00:00
|
|
|
use App\Core\GSFile;
|
|
|
|
use App\Core\HTTPClient;
|
|
|
|
use App\Core\Log;
|
2021-12-04 04:07:08 +00:00
|
|
|
use App\Core\Router\Router;
|
|
|
|
use App\Entity\Actor as GSActor;
|
|
|
|
use App\Util\Exception\ServerException;
|
2021-12-05 03:36:37 +00:00
|
|
|
use App\Util\TemporaryFile;
|
2021-12-04 04:07:08 +00:00
|
|
|
use Component\Avatar\Avatar;
|
2022-02-10 16:02:51 +00:00
|
|
|
use Component\Group\Entity\LocalGroup;
|
2021-12-04 04:07:08 +00:00
|
|
|
use DateTime;
|
|
|
|
use DateTimeInterface;
|
|
|
|
use Exception;
|
|
|
|
use InvalidArgumentException;
|
2022-02-23 17:39:11 +00:00
|
|
|
use Plugin\ActivityPub\ActivityPub;
|
2021-12-04 04:07:08 +00:00
|
|
|
use Plugin\ActivityPub\Entity\ActivitypubActor;
|
|
|
|
use Plugin\ActivityPub\Entity\ActivitypubRsa;
|
|
|
|
use Plugin\ActivityPub\Util\Model;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class handles translation between JSON and GSActors
|
|
|
|
*
|
|
|
|
* @copyright 2021 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
|
|
*/
|
|
|
|
class Actor extends Model
|
|
|
|
{
|
2022-02-21 04:53:12 +00:00
|
|
|
public static array $_gs_actor_type_to_as2_actor_type = [
|
2022-02-10 04:31:06 +00:00
|
|
|
GSActor::PERSON => 'Person',
|
|
|
|
GSActor::GROUP => 'Group',
|
|
|
|
GSActor::BOT => 'Application',
|
2022-01-19 02:22:29 +00:00
|
|
|
];
|
2022-02-21 04:53:12 +00:00
|
|
|
public static array $_as2_actor_type_to_gs_actor_type = [
|
2022-01-19 02:22:29 +00:00
|
|
|
'Person' => GSActor::PERSON,
|
|
|
|
'Group' => GSActor::GROUP,
|
2022-02-10 04:31:06 +00:00
|
|
|
'Organization' => GSActor::GROUP,
|
2022-01-19 02:22:29 +00:00
|
|
|
'Application' => GSActor::BOT,
|
|
|
|
'Service' => null,
|
|
|
|
];
|
|
|
|
|
2021-12-04 04:07:08 +00:00
|
|
|
/**
|
|
|
|
* Create an Entity from an ActivityStreams 2.0 JSON string
|
|
|
|
* This will persist a new GSActor, ActivityPubRSA, and ActivityPubActor
|
|
|
|
*
|
|
|
|
* @throws Exception
|
|
|
|
*/
|
2021-12-05 03:11:08 +00:00
|
|
|
public static function fromJson(string|AbstractObject $json, array $options = []): ActivitypubActor
|
2021-12-04 04:07:08 +00:00
|
|
|
{
|
2022-02-14 01:47:58 +00:00
|
|
|
$object = \is_string($json) ? self::jsonToType($json) : $json;
|
|
|
|
|
|
|
|
switch ($object->get('type')) {
|
|
|
|
case 'Application':
|
|
|
|
case 'Person':
|
|
|
|
// TODO: Operator may prefer users to start with Visitor and then have them being manually promoted
|
|
|
|
$roles = ActorLocalRoles::PARTICIPANT | ActorLocalRoles::VISITOR; // Can view and participate
|
|
|
|
break;
|
|
|
|
case 'Group':
|
|
|
|
case 'Organisation':
|
|
|
|
$roles = ActorLocalRoles::VISITOR; // Can send direct messages to other actors
|
|
|
|
if ($object->get('private')) {
|
|
|
|
$roles |= ActorLocalRoles::PRIVATE_GROUP;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'Service':
|
|
|
|
default:
|
|
|
|
$roles = ActorLocalRoles::NONE;
|
|
|
|
}
|
2021-12-04 04:07:08 +00:00
|
|
|
|
|
|
|
// Actor
|
2022-02-18 17:48:06 +00:00
|
|
|
if (isset($options['objects']['Actor'])) {
|
|
|
|
$actor = $options['objects']['Actor'];
|
|
|
|
} else {
|
|
|
|
$actor_map = [
|
|
|
|
'nickname' => $object->get('preferredUsername'),
|
|
|
|
'fullname' => !empty($object->get('name')) ? $object->get('name') : null,
|
|
|
|
'created' => new DateTime($object->get('published') ?? 'now'),
|
|
|
|
'bio' => $object->get('summary'),
|
|
|
|
'is_local' => false, // duh!
|
|
|
|
'type' => self::$_as2_actor_type_to_gs_actor_type[$object->get('type')],
|
|
|
|
'roles' => $roles,
|
|
|
|
'modified' => new DateTime(),
|
|
|
|
];
|
|
|
|
$actor = GSActor::create($actor_map);
|
|
|
|
DB::persist($actor);
|
2021-12-05 03:11:08 +00:00
|
|
|
}
|
2021-12-04 04:07:08 +00:00
|
|
|
|
|
|
|
// ActivityPub Actor
|
2022-02-18 17:48:06 +00:00
|
|
|
if (isset($options['objects']['ActivitypubActor'])) {
|
|
|
|
$ap_actor = $options['objects']['ActivitypubActor'];
|
|
|
|
} else {
|
|
|
|
$ap_actor = ActivitypubActor::create([
|
|
|
|
'inbox_uri' => $object->get('inbox'),
|
|
|
|
'inbox_shared_uri' => ($object->has('endpoints') && isset($object->get('endpoints')['sharedInbox'])) ? $object->get('endpoints')['sharedInbox'] : null,
|
|
|
|
'uri' => $object->get('id'),
|
|
|
|
'actor_id' => $actor->getId(),
|
|
|
|
'url' => $object->get('url') ?? null,
|
|
|
|
], $options['objects']['ActivitypubActor'] ?? null);
|
|
|
|
DB::persist($ap_actor);
|
2021-12-05 03:11:08 +00:00
|
|
|
}
|
2021-12-04 04:07:08 +00:00
|
|
|
|
|
|
|
// Public Key
|
2022-02-18 17:48:06 +00:00
|
|
|
if (isset($options['objects']['ActivitypubRsa'])) {
|
|
|
|
$apRSA = $options['objects']['ActivitypubRsa'];
|
|
|
|
} else {
|
|
|
|
$apRSA = ActivitypubRsa::create([
|
|
|
|
'actor_id' => $actor->getID(),
|
|
|
|
'public_key' => ($object->has('publicKey') && isset($object->get('publicKey')['publicKeyPem'])) ? $object->get('publicKey')['publicKeyPem'] : null,
|
|
|
|
], $options['objects']['ActivitypubRsa'] ?? null);
|
|
|
|
DB::persist($apRSA);
|
2021-12-05 03:11:08 +00:00
|
|
|
}
|
2021-12-04 04:07:08 +00:00
|
|
|
|
|
|
|
// Avatar
|
2022-02-14 01:47:58 +00:00
|
|
|
if ($object->has('icon') && !empty($object->get('icon'))) {
|
2021-12-05 03:36:37 +00:00
|
|
|
try {
|
|
|
|
// Retrieve media
|
2022-02-14 01:47:58 +00:00
|
|
|
$get_response = HTTPClient::get($object->get('icon')->get('url'));
|
2021-12-26 09:48:16 +00:00
|
|
|
$media = $get_response->getContent();
|
|
|
|
$mimetype = $get_response->getHeaders()['content-type'][0] ?? null;
|
2021-12-05 03:36:37 +00:00
|
|
|
unset($get_response);
|
|
|
|
|
|
|
|
// Only handle if it is an image
|
|
|
|
if (GSFile::mimetypeMajor($mimetype) === 'image') {
|
|
|
|
// Ignore empty files
|
|
|
|
if (!empty($media)) {
|
|
|
|
// Create an attachment for this
|
|
|
|
$temp_file = new TemporaryFile();
|
|
|
|
$temp_file->write($media);
|
|
|
|
$attachment = GSFile::storeFileAsAttachment($temp_file);
|
|
|
|
// Delete current avatar if there's one
|
2022-01-02 03:06:07 +00:00
|
|
|
if (!\is_null($avatar = DB::findOneBy(\Component\Avatar\Entity\Avatar::class, ['actor_id' => $actor->getId()], return_null: true))) {
|
|
|
|
$avatar->delete();
|
|
|
|
}
|
2022-02-18 17:48:06 +00:00
|
|
|
|
2022-02-23 17:39:11 +00:00
|
|
|
DB::persist($attachment);
|
|
|
|
DB::persist(\Component\Avatar\Entity\Avatar::create([
|
|
|
|
'actor_id' => $actor->getId(),
|
|
|
|
'attachment_id' => $attachment->getId(),
|
|
|
|
'title' => $object->get('icon')->get('name') ?? null,
|
|
|
|
]));
|
2022-02-18 17:48:06 +00:00
|
|
|
|
2021-12-05 03:36:37 +00:00
|
|
|
Event::handle('AvatarUpdate', [$actor->getId()]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (Exception $e) {
|
|
|
|
// Let the exception go, it isn't a serious issue
|
|
|
|
Log::warning('ActivityPub Explorer: An error occurred while grabbing remote avatar: ' . $e->getMessage());
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Delete existing avatar if any
|
|
|
|
try {
|
|
|
|
$avatar = DB::findOneBy('avatar', ['actor_id' => $actor->getId()]);
|
|
|
|
$avatar->delete();
|
|
|
|
Event::handle('AvatarUpdate', [$actor->getId()]);
|
|
|
|
} catch (Exception) {
|
2021-12-08 22:24:52 +00:00
|
|
|
// No avatar set, so cannot delete
|
2021-12-05 03:36:37 +00:00
|
|
|
}
|
|
|
|
}
|
2021-12-04 04:07:08 +00:00
|
|
|
|
2021-12-05 03:11:08 +00:00
|
|
|
return $ap_actor;
|
2021-12-04 04:07:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a JSON
|
|
|
|
*
|
2021-12-26 09:48:16 +00:00
|
|
|
* @param null|int $options PHP JSON options
|
|
|
|
*
|
2021-12-04 04:07:08 +00:00
|
|
|
* @throws ServerException
|
|
|
|
*/
|
2022-02-25 13:52:21 +00:00
|
|
|
public static function toJson(mixed $object, int $options = \JSON_UNESCAPED_SLASHES): string
|
2021-12-04 04:07:08 +00:00
|
|
|
{
|
2021-12-28 16:07:35 +00:00
|
|
|
if ($object::class !== GSActor::class) {
|
2022-01-02 20:37:15 +00:00
|
|
|
throw new InvalidArgumentException('First argument type must be an Actor.');
|
2021-12-04 04:07:08 +00:00
|
|
|
}
|
2021-12-26 09:48:16 +00:00
|
|
|
$rsa = ActivitypubRsa::getByActor($object);
|
2021-12-04 04:07:08 +00:00
|
|
|
$public_key = $rsa->getPublicKey();
|
2022-01-02 03:06:07 +00:00
|
|
|
$uri = $object->getUri(Router::ABSOLUTE_URL);
|
2021-12-26 09:48:16 +00:00
|
|
|
$attr = [
|
2022-02-23 17:39:11 +00:00
|
|
|
'@context' => ActivityPub::$activity_streams_two_context,
|
|
|
|
'type' => ($object->getType() === GSActor::GROUP) ? (DB::findOneBy(LocalGroup::class, ['actor_id' => $object->getId()], return_null: true)?->getType() === 'organisation' ? 'Organization' : 'Group') : self::$_gs_actor_type_to_as2_actor_type[$object->getType()],
|
2022-01-02 03:06:07 +00:00
|
|
|
'id' => $uri,
|
2021-12-26 09:48:16 +00:00
|
|
|
'inbox' => Router::url('activitypub_actor_inbox', ['gsactor_id' => $object->getId()], Router::ABSOLUTE_URL),
|
|
|
|
'outbox' => Router::url('activitypub_actor_outbox', ['gsactor_id' => $object->getId()], Router::ABSOLUTE_URL),
|
2021-12-04 04:07:08 +00:00
|
|
|
'following' => Router::url('actor_subscriptions_id', ['id' => $object->getId()], Router::ABSOLUTE_URL),
|
|
|
|
'followers' => Router::url('actor_subscribers_id', ['id' => $object->getId()], Router::ABSOLUTE_URL),
|
2021-12-26 09:48:16 +00:00
|
|
|
'liked' => Router::url('favourites_view_by_actor_id', ['id' => $object->getId()], Router::ABSOLUTE_URL),
|
2021-12-04 04:07:08 +00:00
|
|
|
//'streams' =>
|
|
|
|
'preferredUsername' => $object->getNickname(),
|
2021-12-26 09:48:16 +00:00
|
|
|
'publicKey' => [
|
|
|
|
'id' => $uri . '#public-key',
|
|
|
|
'owner' => $uri,
|
|
|
|
'publicKeyPem' => $public_key,
|
2021-12-04 04:07:08 +00:00
|
|
|
],
|
2021-12-26 09:48:16 +00:00
|
|
|
'name' => $object->getFullname(),
|
|
|
|
'location' => $object->getLocation(),
|
2021-12-04 04:07:08 +00:00
|
|
|
'published' => $object->getCreated()->format(DateTimeInterface::RFC3339),
|
2021-12-26 09:48:16 +00:00
|
|
|
'summary' => $object->getBio(),
|
2021-12-04 04:07:08 +00:00
|
|
|
//'tag' => $object->getSelfTags(),
|
2022-01-02 03:06:07 +00:00
|
|
|
'updated' => $object->getModified()->format(DateTimeInterface::RFC3339),
|
|
|
|
'url' => $object->getUrl(Router::ABSOLUTE_URL),
|
|
|
|
'endpoints' => [
|
|
|
|
'sharedInbox' => Router::url('activitypub_inbox', type: Router::ABSOLUTE_URL),
|
|
|
|
],
|
2021-12-04 04:07:08 +00:00
|
|
|
];
|
2021-12-05 03:36:37 +00:00
|
|
|
|
|
|
|
// Avatar
|
2021-12-04 04:07:08 +00:00
|
|
|
try {
|
2021-12-26 09:48:16 +00:00
|
|
|
$avatar = Avatar::getAvatar($object->getId());
|
2022-01-02 03:06:07 +00:00
|
|
|
$attr['icon'] = [
|
2021-12-26 09:48:16 +00:00
|
|
|
'type' => 'Image',
|
2022-01-02 03:06:07 +00:00
|
|
|
'summary' => 'Small Avatar',
|
|
|
|
'name' => \is_null($avatar->getTitle()) ? null : 'small-' . $avatar->getTitle(),
|
2021-12-05 03:36:37 +00:00
|
|
|
'mediaType' => $avatar->getAttachment()->getMimetype(),
|
2022-01-02 03:06:07 +00:00
|
|
|
'url' => $avatar->getUrl(size: 'small', type: Router::ABSOLUTE_URL),
|
|
|
|
];
|
|
|
|
$attr['image'] = [
|
|
|
|
[
|
|
|
|
'type' => 'Image',
|
|
|
|
'summary' => 'Medium Avatar',
|
|
|
|
'name' => \is_null($avatar->getTitle()) ? null : 'medium-' . $avatar->getTitle(),
|
|
|
|
'mediaType' => $avatar->getAttachment()->getMimetype(),
|
|
|
|
'url' => $avatar->getUrl(size: 'medium', type: Router::ABSOLUTE_URL),
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'type' => 'Image',
|
|
|
|
'summary' => 'Full Avatar',
|
|
|
|
'name' => $avatar->getTitle(),
|
|
|
|
'mediaType' => $avatar->getAttachment()->getMimetype(),
|
|
|
|
'url' => $avatar->getUrl(size: 'full', type: Router::ABSOLUTE_URL),
|
|
|
|
],
|
2021-12-05 03:36:37 +00:00
|
|
|
];
|
|
|
|
} catch (Exception) {
|
2021-12-04 04:07:08 +00:00
|
|
|
// No icon for this actor
|
|
|
|
}
|
|
|
|
|
2022-02-14 01:47:58 +00:00
|
|
|
if ($object->isGroup()) {
|
|
|
|
if ($object->getRoles() & ActorLocalRoles::PRIVATE_GROUP) {
|
|
|
|
$attr['private'] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-04 04:07:08 +00:00
|
|
|
$type = self::jsonToType($attr);
|
2021-12-05 03:36:37 +00:00
|
|
|
Event::handle('ActivityPubAddActivityStreamsTwoData', [$type->get('type'), &$type]);
|
2021-12-04 04:07:08 +00:00
|
|
|
return $type->toJson($options);
|
|
|
|
}
|
2021-12-26 09:48:16 +00:00
|
|
|
}
|