Merge pull request '"bluesky" is now "AT Protocol"' (#1642) from heluecht/friendica-addons:bluesky into develop
Reviewed-on: friendica/friendica-addons#1642
This commit is contained in:
commit
52f7242247
3 changed files with 132 additions and 87 deletions
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
/**
|
||||
* Name: Bluesky Connector
|
||||
* Description: Post to Bluesky, import timelines and feeds
|
||||
* Name: AT Protocol Connector (Bluesky, Eurosky, Blacksky, ...)
|
||||
* Description: Post via AT Protocol, import timelines and feeds
|
||||
* Version: 1.1
|
||||
* Author: Michael Vogel <https://pirati.ca/profile/heluecht>
|
||||
*
|
||||
|
|
@ -46,6 +46,7 @@ use Friendica\Protocol\Activity;
|
|||
use Friendica\Protocol\ATProtocol;
|
||||
use Friendica\Protocol\Relay;
|
||||
use Friendica\Util\DateTimeFormat;
|
||||
use Friendica\Util\ParseUrl;
|
||||
use Friendica\Util\Strings;
|
||||
|
||||
const BLUESKY_DEFAULT_POLL_INTERVAL = 10; // given in minutes
|
||||
|
|
@ -81,6 +82,8 @@ function bluesky_check_item_notification(array &$notification_data)
|
|||
return;
|
||||
}
|
||||
|
||||
DI::atProtocol()->setApiForUser($notification_data['uid']);
|
||||
|
||||
$did = DI::atProtocol()->getUserDid($notification_data['uid']);
|
||||
if (empty($did)) {
|
||||
return;
|
||||
|
|
@ -96,24 +99,16 @@ function bluesky_item_by_link(array &$hookData)
|
|||
return;
|
||||
}
|
||||
|
||||
if (substr($hookData['uri'], 0, 5) != 'at://') {
|
||||
if (!preg_match('#^' . ATProtocol::WEB . '/profile/(.+)/post/(.+)#', $hookData['uri'], $matches)) {
|
||||
return;
|
||||
}
|
||||
DI::atProtocol()->setApiForUser($hookData['uid']);
|
||||
|
||||
$did = DI::atProtocol()->getDid($matches[1]);
|
||||
if (empty($did)) {
|
||||
return;
|
||||
}
|
||||
|
||||
DI::logger()->debug('Found bluesky post', ['uri' => $hookData['uri'], 'did' => $did, 'cid' => $matches[2]]);
|
||||
|
||||
$uri = 'at://' . $did . '/app.bsky.feed.post/' . $matches[2];
|
||||
if (!str_starts_with($hookData['uri'], 'at://')) {
|
||||
$data = ParseUrl::getSiteinfoCached($hookData['uri']);
|
||||
$uri = $data['atprotocol']['uri'] ?? '';
|
||||
} else {
|
||||
$uri = $hookData['uri'];
|
||||
}
|
||||
|
||||
$uri = DI::atpProcessor()->fetchMissingPost($uri, $hookData['uid'], Item::PR_FETCHED, 0, 0);
|
||||
$uri = DI::atpProcessor()->fetchMissingPost($uri, $hookData['uid'], Item::PR_FETCHED, 0, 0, '', false, Conversation::PARCEL_CONNECTOR);
|
||||
DI::logger()->debug('Got post', ['uri' => $uri]);
|
||||
if (!empty($uri)) {
|
||||
$item = Post::selectFirst(['id'], ['uri' => $uri, 'uid' => $hookData['uid']]);
|
||||
|
|
@ -125,20 +120,22 @@ function bluesky_item_by_link(array &$hookData)
|
|||
|
||||
function bluesky_support_follow(array &$data)
|
||||
{
|
||||
if ($data['protocol'] == Protocol::BLUESKY) {
|
||||
if ($data['protocol'] == Protocol::ATPROTO) {
|
||||
$data['result'] = true;
|
||||
}
|
||||
}
|
||||
|
||||
function bluesky_follow(array &$hook_data)
|
||||
{
|
||||
DI::atProtocol()->setApiForUser($hook_data['uid']);
|
||||
|
||||
$token = DI::atProtocol()->getUserToken($hook_data['uid']);
|
||||
if (empty($token)) {
|
||||
return;
|
||||
}
|
||||
|
||||
DI::logger()->debug('Check if contact is bluesky', ['data' => $hook_data]);
|
||||
$contact = DBA::selectFirst('contact', [], ['network' => Protocol::BLUESKY, 'nurl' => Strings::normaliseLink($hook_data['url']), 'uid' => [0, $hook_data['uid']]]);
|
||||
DI::logger()->debug('Check if contact is AT Protocol', ['data' => $hook_data]);
|
||||
$contact = DBA::selectFirst('contact', [], ['network' => Protocol::ATPROTO, 'nurl' => Strings::normaliseLink($hook_data['url']), 'uid' => [0, $hook_data['uid']]]);
|
||||
if (empty($contact)) {
|
||||
return;
|
||||
}
|
||||
|
|
@ -164,12 +161,14 @@ function bluesky_follow(array &$hook_data)
|
|||
|
||||
function bluesky_unfollow(array &$hook_data)
|
||||
{
|
||||
DI::atProtocol()->setApiForUser($hook_data['uid']);
|
||||
|
||||
$token = DI::atProtocol()->getUserToken($hook_data['uid']);
|
||||
if (empty($token)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($hook_data['contact']['network'] != Protocol::BLUESKY) {
|
||||
if ($hook_data['contact']['network'] != Protocol::ATPROTO) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -185,12 +184,14 @@ function bluesky_unfollow(array &$hook_data)
|
|||
|
||||
function bluesky_block(array &$hook_data)
|
||||
{
|
||||
DI::atProtocol()->setApiForUser($hook_data['uid']);
|
||||
|
||||
$token = DI::atProtocol()->getUserToken($hook_data['uid']);
|
||||
if (empty($token)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($hook_data['contact']['network'] != Protocol::BLUESKY) {
|
||||
if ($hook_data['contact']['network'] != Protocol::ATPROTO) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -218,12 +219,14 @@ function bluesky_block(array &$hook_data)
|
|||
|
||||
function bluesky_unblock(array &$hook_data)
|
||||
{
|
||||
DI::atProtocol()->setApiForUser($hook_data['uid']);
|
||||
|
||||
$token = DI::atProtocol()->getUserToken($hook_data['uid']);
|
||||
if (empty($token)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($hook_data['contact']['network'] != Protocol::BLUESKY) {
|
||||
if ($hook_data['contact']['network'] != Protocol::ATPROTO) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -243,7 +246,7 @@ function bluesky_addon_admin(string &$o)
|
|||
|
||||
$o = Renderer::replaceMacros($t, [
|
||||
'$submit' => DI::l10n()->t('Save Settings'),
|
||||
'$friendica_handles' => ['friendica_handles', DI::l10n()->t('Allow your users to use your hostname for their Bluesky handles'), DI::config()->get('bluesky', 'friendica_handles'), DI::l10n()->t('Before enabling this option, you have to setup a wildcard domain configuration and you have to enable wildcard requests in your webserver configuration. On Apache this is done by adding "ServerAlias *.%s" to your HTTP configuration. You don\'t need to change the HTTPS configuration.', DI::baseUrl()->getHost())],
|
||||
'$friendica_handles' => ['friendica_handles', DI::l10n()->t('Allow your users to use your hostname for their AT Protocol handles'), DI::config()->get('bluesky', 'friendica_handles'), DI::l10n()->t('Before enabling this option, you have to setup a wildcard domain configuration and you have to enable wildcard requests in your webserver configuration. On Apache this is done by adding "ServerAlias *.%s" to your HTTP configuration. You don\'t need to change the HTTPS configuration.', DI::baseUrl()->getHost())],
|
||||
]);
|
||||
}
|
||||
|
||||
|
|
@ -258,10 +261,13 @@ function bluesky_settings(array &$data)
|
|||
return;
|
||||
}
|
||||
|
||||
DI::atProtocol()->setApiForUser(DI::userSession()->getLocalUserId());
|
||||
|
||||
$enabled = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'post') ?? false;
|
||||
$def_enabled = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'post_by_default') ?? false;
|
||||
$pds = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'pds');
|
||||
$handle = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'handle');
|
||||
$web = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'web');
|
||||
$did = DI::atProtocol()->getUserDid(DI::userSession()->getLocalUserId());
|
||||
$token = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'access_token');
|
||||
$import = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'import') ?? false;
|
||||
|
|
@ -272,7 +278,7 @@ function bluesky_settings(array &$data)
|
|||
if (DI::config()->get('bluesky', 'friendica_handles')) {
|
||||
$self = User::getById(DI::userSession()->getLocalUserId(), ['nickname']);
|
||||
$host_handle = $self['nickname'] . '.' . DI::baseUrl()->getHost();
|
||||
$friendica_handle = ['bluesky_friendica_handle', DI::l10n()->t('Allow to use %s as your Bluesky handle.', $host_handle), $custom_handle, DI::l10n()->t('When enabled, you can use %s as your Bluesky handle. After you enabled this option, please go to https://bsky.app/settings and select to change your handle. Select that you have got your own domain. Then enter %s and select "No DNS Panel". Then select "Verify Text File".', $host_handle, $host_handle)];
|
||||
$friendica_handle = ['bluesky_friendica_handle', DI::l10n()->t('Allow to use %s as your AT Protocol handle.', $host_handle), $custom_handle, DI::l10n()->t('When enabled, you can use %s as your AT Protocol handle. After you enabled this option, please go to https://bsky.app/settings and select to change your handle. Select that you have got your own domain. Then enter %s and select "No DNS Panel". Then select "Verify Text File".', $host_handle, $host_handle)];
|
||||
if ($custom_handle) {
|
||||
$handle = $host_handle;
|
||||
}
|
||||
|
|
@ -280,25 +286,33 @@ function bluesky_settings(array &$data)
|
|||
$friendica_handle = [];
|
||||
}
|
||||
|
||||
$web_frontend = [
|
||||
'' => 'System Default',
|
||||
ATProtocol::WEB => 'Bluesky',
|
||||
'https://blacksky.community' => 'Blacksky',
|
||||
'https://reddwarf.app' => 'Red Dwarf',
|
||||
];
|
||||
|
||||
$t = Renderer::getMarkupTemplate('connector_settings.tpl', 'addon/bluesky/');
|
||||
$html = Renderer::replaceMacros($t, [
|
||||
'$enable' => ['bluesky', DI::l10n()->t('Enable Bluesky Post Addon'), $enabled],
|
||||
'$bydefault' => ['bluesky_bydefault', DI::l10n()->t('Post to Bluesky by default'), $def_enabled],
|
||||
'$enable' => ['bluesky', DI::l10n()->t('Enable AT Protocol Addon'), $enabled],
|
||||
'$bydefault' => ['bluesky_bydefault', DI::l10n()->t('Post via AT Protocol by default'), $def_enabled],
|
||||
'$import' => ['bluesky_import', DI::l10n()->t('Import the remote timeline'), $import],
|
||||
'$import_feeds' => ['bluesky_import_feeds', DI::l10n()->t('Import the pinned feeds'), $import_feeds, DI::l10n()->t('When activated, Posts will be imported from all the feeds that you pinned in Bluesky.')],
|
||||
'$import_feeds' => ['bluesky_import_feeds', DI::l10n()->t('Import the pinned feeds'), $import_feeds, DI::l10n()->t('When activated, Posts will be imported from all the feeds that you pinned in AT Protocol.')],
|
||||
'$complete_threads' => ['bluesky_complete_threads', DI::l10n()->t('Complete the threads'), $complete_threads, DI::l10n()->t('When activated, the system fetches additional replies for the posts in the timeline. This leads to more complete threads.')],
|
||||
'$custom_handle' => $friendica_handle,
|
||||
'$pds' => ['bluesky_pds', DI::l10n()->t('Personal Data Server'), $pds, DI::l10n()->t('The personal data server (PDS) is the system that hosts your profile.'), '', 'readonly'],
|
||||
'$handle' => ['bluesky_handle', DI::l10n()->t('Bluesky handle'), $handle, '', '', $custom_handle ? 'readonly' : ''],
|
||||
'$did' => ['bluesky_did', DI::l10n()->t('Bluesky DID'), $did, DI::l10n()->t('This is the unique identifier. It will be fetched automatically, when the handle is entered.'), '', 'readonly'],
|
||||
'$password' => ['bluesky_password', DI::l10n()->t('Bluesky app password'), '', DI::l10n()->t("Please don't add your real password here, but instead create a specific app password in the Bluesky settings.")],
|
||||
'$handle' => ['bluesky_handle', DI::l10n()->t('AT Protocol handle'), $handle, '', '', $custom_handle ? 'readonly' : ''],
|
||||
'$did' => ['bluesky_did', DI::l10n()->t('AT Protocol DID'), $did, DI::l10n()->t('This is the unique identifier. It will be fetched automatically, when the handle is entered.'), '', 'readonly'],
|
||||
'$password' => ['bluesky_password', DI::l10n()->t('AT Protocol app password'), '', DI::l10n()->t("Please don't add your real password here, but instead create a specific app password in the settings of your AT Protocol system.")],
|
||||
'$web' => ['bluesky_web', DI::l10n()->t('Web front end'), $web, DI::l10n()->t('Choose your preferred external web front end for displaying posts and profiles.'), $web_frontend, ''],
|
||||
'$status' => bluesky_get_status($handle, $did, $pds, $token),
|
||||
]);
|
||||
|
||||
$data = [
|
||||
'connector' => 'bluesky',
|
||||
'title' => DI::l10n()->t('Bluesky Import/Export'),
|
||||
'image' => 'images/bluesky.jpg',
|
||||
'title' => DI::l10n()->t('AT Protocol (Bluesky, Eurosky, Blacksky, ...) Import/Export'),
|
||||
'image' => 'images/500px-AT_Protocol_logo.png',
|
||||
'enabled' => $enabled,
|
||||
'html' => $html,
|
||||
];
|
||||
|
|
@ -328,7 +342,7 @@ function bluesky_get_status(string $handle = null, string $did = null, string $p
|
|||
|
||||
switch ($status) {
|
||||
case ATProtocol::STATUS_TOKEN_OK:
|
||||
return DI::l10n()->t("You are authenticated to Bluesky. For security reasons the password isn't stored.");
|
||||
return DI::l10n()->t("You are authenticated to the AT Protocol PDS. For security reasons the password isn't stored.");
|
||||
case ATProtocol::STATUS_SUCCESS:
|
||||
return DI::l10n()->t('The communication with the personal data server service (PDS) is established.');
|
||||
case ATProtocol::STATUS_API_FAIL;
|
||||
|
|
@ -350,6 +364,8 @@ function bluesky_settings_post(array &$b)
|
|||
return;
|
||||
}
|
||||
|
||||
DI::atProtocol()->setApiForUser(DI::userSession()->getLocalUserId());
|
||||
|
||||
$old_pds = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'pds');
|
||||
$old_handle = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'handle');
|
||||
$old_did = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'did');
|
||||
|
|
@ -363,6 +379,11 @@ function bluesky_settings_post(array &$b)
|
|||
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'bluesky', 'import_feeds', intval($_POST['bluesky_import_feeds']));
|
||||
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'bluesky', 'complete_threads', intval($_POST['bluesky_complete_threads']));
|
||||
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'bluesky', 'friendica_handle', intval($_POST['bluesky_friendica_handle'] ?? false));
|
||||
if ($_POST['bluesky_web'] <> '') {
|
||||
DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'bluesky', 'web', $_POST['bluesky_web']);
|
||||
} else {
|
||||
DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'bluesky', 'web');
|
||||
}
|
||||
|
||||
if (!empty($handle)) {
|
||||
$did = DI::atProtocol()->getUserDid(DI::userSession()->getLocalUserId(), empty($old_did) || $old_handle != $handle);
|
||||
|
|
@ -401,7 +422,7 @@ function bluesky_jot_nets(array &$jotnets_fields)
|
|||
'type' => 'checkbox',
|
||||
'field' => [
|
||||
'bluesky_enable',
|
||||
DI::l10n()->t('Post to Bluesky'),
|
||||
DI::l10n()->t('Post via the AT Protocol'),
|
||||
DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'post_by_default')
|
||||
]
|
||||
];
|
||||
|
|
@ -435,6 +456,8 @@ function bluesky_cron()
|
|||
|
||||
$pconfigs = DBA::selectToArray('pconfig', [], ["`cat` = ? AND `k` IN (?, ?) AND `v`", 'bluesky', 'import', 'import_feeds']);
|
||||
foreach ($pconfigs as $pconfig) {
|
||||
DI::atProtocol()->setApiForUser($pconfig['uid']);
|
||||
|
||||
if (empty(DI::atProtocol()->getUserDid($pconfig['uid']))) {
|
||||
DI::logger()->debug('User has got no valid DID', ['uid' => $pconfig['uid']]);
|
||||
continue;
|
||||
|
|
@ -478,7 +501,7 @@ function bluesky_cron()
|
|||
$last_clean = DI::keyValue()->get('bluesky_last_clean');
|
||||
if (empty($last_clean) || ($last_clean + 86400 < time())) {
|
||||
DI::logger()->notice('Start contact cleanup');
|
||||
$contacts = DBA::select('account-user-view', ['id', 'pid'], ["`network` = ? AND `uid` != ? AND `rel` = ?", Protocol::BLUESKY, 0, Contact::NOTHING]);
|
||||
$contacts = DBA::select('account-user-view', ['id', 'pid'], ["`network` = ? AND `uid` != ? AND `rel` = ?", Protocol::ATPROTO, 0, Contact::NOTHING]);
|
||||
while ($contact = DBA::fetch($contacts)) {
|
||||
Worker::add(Worker::PRIORITY_LOW, 'MergeContact', $contact['pid'], $contact['id'], 0);
|
||||
}
|
||||
|
|
@ -505,9 +528,9 @@ function bluesky_hook_fork(array &$b)
|
|||
}
|
||||
|
||||
if (DI::pConfig()->get($post['uid'], 'bluesky', 'import')) {
|
||||
// Don't post if it isn't a reply to a bluesky post
|
||||
if (($post['gravity'] != Item::GRAVITY_PARENT) && !Post::exists(['id' => $post['parent'], 'network' => Protocol::BLUESKY])) {
|
||||
DI::logger()->notice('No bluesky parent found', ['item' => $post['id']]);
|
||||
// Don't post if it isn't a reply to an AT Protocol post
|
||||
if (($post['gravity'] != Item::GRAVITY_PARENT) && !Post::exists(['id' => $post['parent'], 'network' => Protocol::ATPROTO])) {
|
||||
DI::logger()->notice('No AT Protocol parent found', ['item' => $post['id']]);
|
||||
$b['execute'] = false;
|
||||
return;
|
||||
}
|
||||
|
|
@ -549,6 +572,8 @@ function bluesky_post_local(array &$b)
|
|||
|
||||
function bluesky_send(array &$b)
|
||||
{
|
||||
DI::atProtocol()->setApiForUser($b['uid']);
|
||||
|
||||
if (($b['created'] !== $b['edited']) && !$b['deleted']) {
|
||||
return;
|
||||
}
|
||||
|
|
@ -563,7 +588,7 @@ function bluesky_send(array &$b)
|
|||
if ($b['deleted']) {
|
||||
$uri = DI::atpProcessor()->getUriClass($b['uri']);
|
||||
if (empty($uri)) {
|
||||
DI::logger()->debug('Not a bluesky post', ['uri' => $b['uri']]);
|
||||
DI::logger()->debug('Not an AT Protocol post', ['uri' => $b['uri']]);
|
||||
return;
|
||||
}
|
||||
bluesky_delete_post($b['uri'], $b['uid']);
|
||||
|
|
@ -574,7 +599,7 @@ function bluesky_send(array &$b)
|
|||
$parent = DI::atpProcessor()->getUriClass($b['thr-parent']);
|
||||
|
||||
if (empty($root) || empty($parent)) {
|
||||
DI::logger()->debug('No bluesky post', ['parent' => $b['parent'], 'thr-parent' => $b['thr-parent']]);
|
||||
DI::logger()->debug('No AT Protocol post', ['parent' => $b['parent'], 'thr-parent' => $b['thr-parent']]);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -593,9 +618,11 @@ function bluesky_send(array &$b)
|
|||
bluesky_create_post($b);
|
||||
}
|
||||
|
||||
function bluesky_create_activity(array $item, stdClass $parent = null)
|
||||
function bluesky_create_activity(array $item, ?stdClass $parent = null)
|
||||
{
|
||||
$uid = $item['uid'];
|
||||
DI::atProtocol()->setApiForUser($uid);
|
||||
|
||||
$token = DI::atProtocol()->getUserToken($uid);
|
||||
if (empty($token)) {
|
||||
return;
|
||||
|
|
@ -647,6 +674,8 @@ function bluesky_create_activity(array $item, stdClass $parent = null)
|
|||
function bluesky_create_post(array $item, stdClass $root = null, stdClass $parent = null)
|
||||
{
|
||||
$uid = $item['uid'];
|
||||
DI::atProtocol()->setApiForUser($uid);
|
||||
|
||||
$token = DI::atProtocol()->getUserToken($uid);
|
||||
if (empty($token)) {
|
||||
return;
|
||||
|
|
@ -681,7 +710,7 @@ function bluesky_create_post(array $item, stdClass $root = null, stdClass $paren
|
|||
$urls = bluesky_get_urls($item['body']);
|
||||
$item['body'] = $urls['body'];
|
||||
|
||||
$msg = Plaintext::getPost($item, 300, false, BBCode::BLUESKY);
|
||||
$msg = Plaintext::getPost($item, 300, false, BBCode::ATPROTOCOL);
|
||||
foreach ($msg['parts'] as $key => $part) {
|
||||
|
||||
$facets = bluesky_get_facets($part, $urls['urls']);
|
||||
|
|
@ -946,7 +975,7 @@ function bluesky_upload_blob(int $uid, array $photo): ?stdClass
|
|||
return null;
|
||||
}
|
||||
|
||||
Item::incrementOutbound(Protocol::BLUESKY);
|
||||
Item::incrementOutbound(Protocol::ATPROTO);
|
||||
DI::logger()->debug('Uploaded blob', ['return' => $data, 'uid' => $uid, 'retrial' => $retrial, 'height' => $new_height, 'width' => $new_width, 'size' => $new_size, 'orig-height' => $height, 'orig-width' => $width, 'orig-size' => $size]);
|
||||
return $data->blob;
|
||||
}
|
||||
|
|
@ -964,6 +993,8 @@ function bluesky_delete_post(string $uri, int $uid)
|
|||
|
||||
function bluesky_fetch_timeline(int $uid)
|
||||
{
|
||||
DI::atProtocol()->setApiForUser($uid);
|
||||
|
||||
$data = DI::atProtocol()->XRPCGet('app.bsky.feed.getTimeline', [], $uid);
|
||||
if (empty($data)) {
|
||||
return;
|
||||
|
|
@ -1020,7 +1051,7 @@ function bluesky_process_reason(stdClass $reason, string $uri, int $uid)
|
|||
$contact = DI::atpActor()->getContactByDID($reason->by->did, $uid, 0);
|
||||
|
||||
$item = [
|
||||
'network' => Protocol::BLUESKY,
|
||||
'network' => Protocol::ATPROTO,
|
||||
'protocol' => Conversation::PARCEL_CONNECTOR,
|
||||
'uid' => $uid,
|
||||
'wall' => false,
|
||||
|
|
@ -1057,6 +1088,8 @@ function bluesky_process_reason(stdClass $reason, string $uri, int $uid)
|
|||
|
||||
function bluesky_fetch_notifications(int $uid)
|
||||
{
|
||||
DI::atProtocol()->setApiForUser($uid);
|
||||
|
||||
$data = DI::atProtocol()->XRPCGet('app.bsky.notification.listNotifications', [], $uid);
|
||||
if (empty($data->notifications)) {
|
||||
return;
|
||||
|
|
@ -1130,6 +1163,8 @@ function bluesky_fetch_notifications(int $uid)
|
|||
|
||||
function bluesky_fetch_feed(int $uid, string $feed)
|
||||
{
|
||||
DI::atProtocol()->setApiForUser($uid);
|
||||
|
||||
$data = DI::atProtocol()->XRPCGet('app.bsky.feed.getFeed', ['feed' => $feed], $uid);
|
||||
if (empty($data)) {
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-09-29 18:16+0000\n"
|
||||
"POT-Creation-Date: 2026-03-18 13:20+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -17,117 +17,126 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: bluesky.php:335
|
||||
#: bluesky.php:248
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:336
|
||||
msgid "Allow your users to use your hostname for their Bluesky handles"
|
||||
#: bluesky.php:249
|
||||
msgid "Allow your users to use your hostname for their AT Protocol handles"
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:336
|
||||
#: bluesky.php:249
|
||||
#, php-format
|
||||
msgid "Before enabling this option, you have to setup a wildcard domain configuration and you have to enable wildcard requests in your webserver configuration. On Apache this is done by adding \"ServerAlias *.%s\" to your HTTP configuration. You don't need to change the HTTPS configuration."
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:365
|
||||
#: bluesky.php:281
|
||||
#, php-format
|
||||
msgid "Allow to use %s as your Bluesky handle."
|
||||
msgid "Allow to use %s as your AT Protocol handle."
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:365
|
||||
#: bluesky.php:281
|
||||
#, php-format
|
||||
msgid "When enabled, you can use %s as your Bluesky handle. After you enabled this option, please go to https://bsky.app/settings and select to change your handle. Select that you have got your own domain. Then enter %s and select \"No DNS Panel\". Then select \"Verify Text File\"."
|
||||
msgid "When enabled, you can use %s as your AT Protocol handle. After you enabled this option, please go to https://bsky.app/settings and select to change your handle. Select that you have got your own domain. Then enter %s and select \"No DNS Panel\". Then select \"Verify Text File\"."
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:375
|
||||
msgid "Enable Bluesky Post Addon"
|
||||
#: bluesky.php:298
|
||||
msgid "Enable AT Protocol Addon"
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:376
|
||||
msgid "Post to Bluesky by default"
|
||||
#: bluesky.php:299
|
||||
msgid "Post via AT Protocol by default"
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:377
|
||||
#: bluesky.php:300
|
||||
msgid "Import the remote timeline"
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:378
|
||||
#: bluesky.php:301
|
||||
msgid "Import the pinned feeds"
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:378
|
||||
msgid "When activated, Posts will be imported from all the feeds that you pinned in Bluesky."
|
||||
#: bluesky.php:301
|
||||
msgid "When activated, Posts will be imported from all the feeds that you pinned in AT Protocol."
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:379
|
||||
#: bluesky.php:302
|
||||
msgid "Complete the threads"
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:379
|
||||
#: bluesky.php:302
|
||||
msgid "When activated, the system fetches additional replies for the posts in the timeline. This leads to more complete threads."
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:381
|
||||
#: bluesky.php:304
|
||||
msgid "Personal Data Server"
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:381
|
||||
#: bluesky.php:304
|
||||
msgid "The personal data server (PDS) is the system that hosts your profile."
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:382
|
||||
msgid "Bluesky handle"
|
||||
#: bluesky.php:305
|
||||
msgid "AT Protocol handle"
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:383
|
||||
msgid "Bluesky DID"
|
||||
#: bluesky.php:306
|
||||
msgid "AT Protocol DID"
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:383
|
||||
#: bluesky.php:306
|
||||
msgid "This is the unique identifier. It will be fetched automatically, when the handle is entered."
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:384
|
||||
msgid "Bluesky app password"
|
||||
#: bluesky.php:307
|
||||
msgid "AT Protocol app password"
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:384
|
||||
msgid "Please don't add your real password here, but instead create a specific app password in the Bluesky settings."
|
||||
#: bluesky.php:307
|
||||
msgid "Please don't add your real password here, but instead create a specific app password in the settings of your AT Protocol system."
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:390
|
||||
msgid "Bluesky Import/Export"
|
||||
#: bluesky.php:308
|
||||
msgid "Web front end"
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:400
|
||||
#: bluesky.php:308
|
||||
msgid "Choose your preferred external web front end for displaying posts and profiles."
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:314
|
||||
msgid "AT Protocol (Bluesky, Eurosky, Blacksky, ...) Import/Export"
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:324
|
||||
msgid "You are not authenticated. Please enter your handle and the app password."
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:420
|
||||
msgid "You are authenticated to Bluesky. For security reasons the password isn't stored."
|
||||
#: bluesky.php:345
|
||||
msgid "You are authenticated to the AT Protocol PDS. For security reasons the password isn't stored."
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:422
|
||||
#: bluesky.php:347
|
||||
msgid "The communication with the personal data server service (PDS) is established."
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:424
|
||||
msgid "Communication issues with the personal data server service (PDS)."
|
||||
#: bluesky.php:349
|
||||
#, php-format
|
||||
msgid "Communication issues with the personal data server service (PDS): %s"
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:426
|
||||
#: bluesky.php:351
|
||||
msgid "The DID for the provided handle could not be detected. Please check if you entered the correct handle."
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:428
|
||||
#: bluesky.php:353
|
||||
msgid "The personal data server service (PDS) could not be detected."
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:430
|
||||
#: bluesky.php:355
|
||||
msgid "The authentication with the provided handle and password failed. Please check if you entered the correct password."
|
||||
msgstr ""
|
||||
|
||||
#: bluesky.php:492
|
||||
msgid "Post to Bluesky"
|
||||
#: bluesky.php:425
|
||||
msgid "Post via the AT Protocol"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -10,4 +10,5 @@
|
|||
{{include file="field_input.tpl" field=$pds}}
|
||||
{{include file="field_input.tpl" field=$handle}}
|
||||
{{include file="field_input.tpl" field=$did}}
|
||||
{{include file="field_input.tpl" field=$password}}
|
||||
{{include file="field_input.tpl" field=$password}}
|
||||
{{include file="field_select.tpl" field=$web}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue