friendica-github/src/Protocol/ATProtocol/Actor.php

203 lines
5.7 KiB
PHP
Executable file

#!/usr/bin/env php
<?php
/**
* Copyright (C) 2010-2024, the Friendica project
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*
*/
namespace Friendica\Protocol\ATProtocol;
use Friendica\Content\Text\HTML;
use Friendica\Core\Protocol;
use Friendica\Model\Contact;
use Friendica\Model\GServer;
use Friendica\Protocol\ATProtocol;
use Friendica\Util\DateTimeFormat;
use Psr\Log\LoggerInterface;
/**
* Class to handle AT Protocol actors
*/
class Actor
{
/** @var LoggerInterface */
private $logger;
/** @var ATProtocol */
private $atprotocol;
public function __construct(LoggerInterface $logger, ATProtocol $atprotocol)
{
$this->logger = $logger;
$this->atprotocol = $atprotocol;
}
public function syncContacts(int $uid)
{
$this->logger->info('Sync contacts for user - start', ['uid' => $uid]);
$contacts = Contact::selectToArray(['id', 'url', 'rel'], ['uid' => $uid, 'network' => Protocol::BLUESKY, 'rel' => [Contact::FRIEND, Contact::SHARING, Contact::FOLLOWER]]);
$follows = [];
$cursor = '';
$profiles = [];
do {
$parameters = [
'actor' => $this->atprotocol->getUserDid($uid),
'limit' => 100,
'cursor' => $cursor
];
$data = $this->atprotocol->XRPCGet('app.bsky.graph.getFollows', $parameters);
foreach ($data->follows ?? [] as $follow) {
$profiles[$follow->did] = $follow;
$follows[$follow->did] = Contact::SHARING;
}
$cursor = $data->cursor ?? '';
} while (!empty($data->follows) && !empty($data->cursor));
$cursor = '';
do {
$parameters = [
'actor' => $this->atprotocol->getUserDid($uid),
'limit' => 100,
'cursor' => $cursor
];
$data = $this->atprotocol->XRPCGet('app.bsky.graph.getFollowers', $parameters);
foreach ($data->followers ?? [] as $follow) {
$profiles[$follow->did] = $follow;
$follows[$follow->did] = ($follows[$follow->did] ?? 0) | Contact::FOLLOWER;
}
$cursor = $data->cursor ?? '';
} while (!empty($data->followers) && !empty($data->cursor));
foreach ($contacts as $contact) {
if (empty($follows[$contact['url']])) {
Contact::update(['rel' => Contact::NOTHING], ['id' => $contact['id']]);
}
}
foreach ($follows as $did => $rel) {
$contact = $this->getContactByDID($did, $uid, $uid);
if (($contact['rel'] != $rel) && ($contact['uid'] != 0)) {
Contact::update(['rel' => $rel], ['id' => $contact['id']]);
}
}
$this->logger->info('Sync contacts for user - done', ['uid' => $uid]);
}
public function updateContactByDID(string $did)
{
$profile = $this->atprotocol->XRPCGet('app.bsky.actor.getProfile', ['actor' => $did]);
if (empty($profile) || empty($profile->did)) {
return;
}
$nick = $profile->handle ?? $profile->did;
$name = $profile->displayName ?? $nick;
$fields = [
'alias' => ATProtocol::WEB . '/profile/' . $nick,
'name' => $name ?: $nick,
'nick' => $nick,
'addr' => $nick,
'updated' => DateTimeFormat::utcNow(DateTimeFormat::MYSQL),
];
if (!empty($profile->description)) {
$fields['about'] = HTML::toBBCode($profile->description);
}
if (!empty($profile->banner)) {
$fields['header'] = $profile->banner;
}
$directory = $this->atprotocol->get(ATProtocol::DIRECTORY . '/' . $profile->did);
if (!empty($directory)) {
foreach ($directory->service as $service) {
if (($service->id == '#atproto_pds') && ($service->type == 'AtprotoPersonalDataServer') && !empty($service->serviceEndpoint)) {
$fields['baseurl'] = $service->serviceEndpoint;
}
}
if (!empty($fields['baseurl'])) {
GServer::check($fields['baseurl'], Protocol::BLUESKY);
$fields['gsid'] = GServer::getID($fields['baseurl'], true);
}
foreach ($directory->verificationMethod as $method) {
if (!empty($method->publicKeyMultibase)) {
$fields['pubkey'] = $method->publicKeyMultibase;
}
}
}
/*
@todo Add this part when the function will be callable with a uid
if (!empty($profile->viewer)) {
if (!empty($profile->viewer->following) && !empty($profile->viewer->followedBy)) {
$fields['rel'] = Contact::FRIEND;
} elseif (!empty($profile->viewer->following) && empty($profile->viewer->followedBy)) {
$fields['rel'] = Contact::SHARING;
} elseif (empty($profile->viewer->following) && !empty($profile->viewer->followedBy)) {
$fields['rel'] = Contact::FOLLOWER;
} else {
$fields['rel'] = Contact::NOTHING;
}
}
*/
if (!empty($profile->avatar)) {
$contact = Contact::selectFirst(['id', 'avatar'], ['network' => Protocol::BLUESKY, 'nurl' => $did, 'uid' => 0]);
if (!empty($contact['id']) && ($contact['avatar'] != $profile->avatar)) {
Contact::updateAvatar($contact['id'], $profile->avatar);
}
}
$this->logger->notice('Update profile', ['did' => $profile->did, 'fields' => $fields]);
Contact::update($fields, ['nurl' => $profile->did, 'network' => Protocol::BLUESKY]);
}
public function getContactByDID(string $did, int $uid, int $contact_uid): array
{
$contact = Contact::selectFirst([], ['network' => Protocol::BLUESKY, 'nurl' => $did, 'uid' => [$contact_uid, $uid]], ['order' => ['uid' => true]]);
if (!empty($contact)) {
return $contact;
}
if (empty($contact)) {
$fields = [
'uid' => $contact_uid,
'network' => Protocol::BLUESKY,
'priority' => 1,
'writable' => true,
'blocked' => false,
'readonly' => false,
'pending' => false,
'url' => $did,
'nurl' => $did,
'alias' => ATProtocol::WEB . '/profile/' . $did,
'name' => $did,
'nick' => $did,
'addr' => $did,
'rel' => Contact::NOTHING,
];
$cid = Contact::insert($fields);
} else {
$cid = $contact['id'];
}
$this->updateContactByDID($did);
return Contact::getById($cid);
}
}