]> git.mxchange.org Git - friendica-addons.git/commitdiff
Bluesky: Improved on the connector page
authorMichael <heluecht@pirati.ca>
Wed, 6 Dec 2023 06:31:52 +0000 (06:31 +0000)
committerMichael <heluecht@pirati.ca>
Wed, 6 Dec 2023 06:31:52 +0000 (06:31 +0000)
bluesky/bluesky.php
bluesky/lang/C/messages.po

index d2f13ebed1a990e470cfaa68485c659d2dcea7bd..1bbc6356ffaf1b28f6059e7ae515a569ac48e234 100644 (file)
@@ -53,6 +53,14 @@ use Friendica\Util\Strings;
 const BLUESKY_DEFAULT_POLL_INTERVAL = 10; // given in minutes
 const BLUESKY_IMAGE_SIZE = [1000000, 500000, 100000, 50000];
 
+const BLUEKSY_STATUS_UNKNOWN    = 0;
+const BLUEKSY_STATUS_TOKEN_OK   = 1;
+const BLUEKSY_STATUS_SUCCESS    = 2;
+const BLUEKSY_STATUS_API_FAIL   = 10;
+const BLUEKSY_STATUS_DID_FAIL   = 11;
+const BLUEKSY_STATUS_PDS_FAIL   = 12;
+const BLUEKSY_STATUS_TOKEN_FAIL = 13;
+
 /*
  * (Currently) hard wired paths for Bluesky services
  */
@@ -323,8 +331,6 @@ function bluesky_settings(array &$data)
        $import       = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'import') ?? false;
        $import_feeds = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'import_feeds') ?? false;
 
-       $status = $token ? DI::l10n()->t("You are authenticated to Bluesky. For security reasons the password isn't stored.") : DI::l10n()->t('You are not authenticated. Please enter the app password.');
-
        $t    = Renderer::getMarkupTemplate('connector_settings.tpl', 'addon/bluesky/');
        $html = Renderer::replaceMacros($t, [
                '$enable'       => ['bluesky', DI::l10n()->t('Enable Bluesky Post Addon'), $enabled],
@@ -335,7 +341,7 @@ function bluesky_settings(array &$data)
                '$handle'       => ['bluesky_handle', DI::l10n()->t('Bluesky handle'), $handle],
                '$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.")],
-               '$status'       => $status
+               '$status'       => bluesky_get_status($handle, $did, $pds, $token),
        ]);
 
        $data = [
@@ -347,6 +353,45 @@ function bluesky_settings(array &$data)
        ];
 }
 
+function bluesky_get_status(string $handle = null, string $did = null, string $pds = null, string $token = null): string
+{
+       if (empty($handle)) {
+               return DI::l10n()->t('You are not authenticated. Please enter your handle and the app password.');
+       }
+
+       $status = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'status') ?? BLUEKSY_STATUS_UNKNOWN;
+
+       // Fallback mechanism for connection that had been established before the introduction of the status
+       if ($status == BLUEKSY_STATUS_UNKNOWN) {
+               if (empty($did)) {
+                       $status = BLUEKSY_STATUS_DID_FAIL;
+               } elseif (empty($pds)) {
+                       $status = BLUEKSY_STATUS_PDS_FAIL;
+               } elseif (!empty($token)) {
+                       $status = BLUEKSY_STATUS_TOKEN_OK;
+               } else {
+                       $status = BLUEKSY_STATUS_TOKEN_FAIL;
+               }
+       }
+
+       switch ($status) {
+               case BLUEKSY_STATUS_TOKEN_OK:
+                       return DI::l10n()->t("You are authenticated to Bluesky. For security reasons the password isn't stored.");
+               case BLUEKSY_STATUS_SUCCESS:
+                       return DI::l10n()->t('The communication with the personal data server service (PDS) is established.');
+               case BLUEKSY_STATUS_API_FAIL;
+                       return DI::l10n()->t('Communication issues with the personal data server service (PDS).');
+               case BLUEKSY_STATUS_DID_FAIL:
+                       return DI::l10n()->t('The DID for the provided handle could not be detected. Please check if you entered the correct handle.');
+               case BLUEKSY_STATUS_PDS_FAIL:
+                       return DI::l10n()->t('The personal data server service (PDS) could not be detected.');
+               case BLUEKSY_STATUS_TOKEN_FAIL:
+                       return DI::l10n()->t('The authentication with the provided handle and password failed. Please check if you entered the correct password.');
+               default:
+                       return '';
+       }
+}
+
 function bluesky_settings_post(array &$b)
 {
        if (empty($_POST['bluesky-submit'])) {
@@ -367,17 +412,33 @@ function bluesky_settings_post(array &$b)
 
        if (!empty($handle)) {
                if (empty($old_did) || $old_handle != $handle) {
-                       DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'bluesky', 'did', bluesky_get_did(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'handle')));
+                       $did = bluesky_get_did(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'handle'));
+                       if (empty($did)) {
+                               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'bluesky', 'status', BLUEKSY_STATUS_DID_FAIL);
+                       }
+                       DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'bluesky', 'did', $did);
+               } else {
+                       $did = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'did');
                }
-               if (empty($old_pds) || $old_handle != $handle) {
-                       DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'bluesky', 'pds', bluesky_get_pds(DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'did')));
+               if (!empty($did) && (empty($old_pds) || $old_handle != $handle)) {
+                       $pds = bluesky_get_pds($did);
+                       if (empty($pds)) {
+                               DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'bluesky', 'status', BLUEKSY_STATUS_PDS_FAIL);
+                       }
+                       DI::pConfig()->set(DI::userSession()->getLocalUserId(), 'bluesky', 'pds', $pds);
+               } else {
+                       $pds = DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'bluesky', 'pds');
                }
        } else {
                DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'bluesky', 'did');
                DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'bluesky', 'pds');
+               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'bluesky', 'access_token');
+               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'bluesky', 'refresh_token');
+               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'bluesky', 'token_created');
+               DI::pConfig()->delete(DI::userSession()->getLocalUserId(), 'bluesky', 'status');
        }
 
-       if (!empty($_POST['bluesky_password'])) {
+       if (!empty($did) && !empty($pds) && !empty($_POST['bluesky_password'])) {
                bluesky_create_token(DI::userSession()->getLocalUserId(), $_POST['bluesky_password']);
        }
 }
@@ -1642,6 +1703,7 @@ function bluesky_create_token(int $uid, string $password): string
 
        $data = bluesky_post($uid, '/xrpc/com.atproto.server.createSession', json_encode(['identifier' => $did, 'password' => $password]), ['Content-type' => 'application/json']);
        if (empty($data)) {
+               DI::pConfig()->set($uid, 'bluesky', 'status', BLUEKSY_STATUS_TOKEN_FAIL);
                return '';
        }
 
@@ -1649,6 +1711,7 @@ function bluesky_create_token(int $uid, string $password): string
        DI::pConfig()->set($uid, 'bluesky', 'access_token', $data->accessJwt);
        DI::pConfig()->set($uid, 'bluesky', 'refresh_token', $data->refreshJwt);
        DI::pConfig()->set($uid, 'bluesky', 'token_created', time());
+       DI::pConfig()->set($uid, 'bluesky', 'status', BLUEKSY_STATUS_TOKEN_OK);
        return $data->accessJwt;
 }
 
@@ -1663,14 +1726,17 @@ function bluesky_post(int $uid, string $url, string $params, array $headers): ?s
                $curlResult = DI::httpClient()->post(bluesky_get_user_pds($uid) . $url, $params, $headers);
        } catch (\Exception $e) {
                Logger::notice('Exception on post', ['exception' => $e]);
+               DI::pConfig()->set($uid, 'bluesky', 'status', BLUEKSY_STATUS_API_FAIL);
                return null;
        }
 
        if (!$curlResult->isSuccess()) {
                Logger::notice('API Error', ['error' => json_decode($curlResult->getBody()) ?: $curlResult->getBody()]);
+               DI::pConfig()->set($uid, 'bluesky', 'status', BLUEKSY_STATUS_API_FAIL);
                return null;
        }
 
+       DI::pConfig()->set($uid, 'bluesky', 'status', BLUEKSY_STATUS_SUCCESS);
        return json_decode($curlResult->getBody());
 }
 
@@ -1680,7 +1746,10 @@ function bluesky_xrpc_get(int $uid, string $url, array $parameters = []): ?stdCl
                $url .= '?' . http_build_query($parameters);
        }
 
-       return bluesky_get(bluesky_get_user_pds($uid) . '/xrpc/' . $url, HttpClientAccept::JSON, [HttpClientOptions::HEADERS => ['Authorization' => ['Bearer ' . bluesky_get_token($uid)]]]);
+       $data = bluesky_get(bluesky_get_user_pds($uid) . '/xrpc/' . $url, HttpClientAccept::JSON, [HttpClientOptions::HEADERS => ['Authorization' => ['Bearer ' . bluesky_get_token($uid)]]]);
+       DI::pConfig()->set($uid, 'bluesky', 'status', is_null($data) ? BLUEKSY_STATUS_API_FAIL : BLUEKSY_STATUS_SUCCESS);
+       return $data;
+
 }
 
 function bluesky_get(string $url, string $accept_content = HttpClientAccept::DEFAULT, array $opts = []): ?stdClass
index a5349142ea3f7d1f5e8cd4e7dc0d2fbce6c9818c..132e608a1a2e46da4a0122a0d9a4513bf3268c25 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-11-19 18:51+0000\n"
+"POT-Creation-Date: 2023-12-06 06:30+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,74 +17,100 @@ msgstr ""
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: bluesky.php:325
-msgid ""
-"You are authenticated to Bluesky. For security reasons the password isn't "
-"stored."
-msgstr ""
-
-#: bluesky.php:325
-msgid "You are not authenticated. Please enter the app password."
-msgstr ""
-
-#: bluesky.php:329
+#: bluesky.php:336
 msgid "Enable Bluesky Post Addon"
 msgstr ""
 
-#: bluesky.php:330
+#: bluesky.php:337
 msgid "Post to Bluesky by default"
 msgstr ""
 
-#: bluesky.php:331
+#: bluesky.php:338
 msgid "Import the remote timeline"
 msgstr ""
 
-#: bluesky.php:332
+#: bluesky.php:339
 msgid "Import the pinned feeds"
 msgstr ""
 
-#: bluesky.php:332
+#: bluesky.php:339
 msgid ""
 "When activated, Posts will be imported from all the feeds that you pinned in "
 "Bluesky."
 msgstr ""
 
-#: bluesky.php:333
+#: bluesky.php:340
 msgid "Personal Data Server"
 msgstr ""
 
-#: bluesky.php:333
+#: bluesky.php:340
 msgid "The personal data server (PDS) is the system that hosts your profile."
 msgstr ""
 
-#: bluesky.php:334
+#: bluesky.php:341
 msgid "Bluesky handle"
 msgstr ""
 
-#: bluesky.php:335
+#: bluesky.php:342
 msgid "Bluesky DID"
 msgstr ""
 
-#: bluesky.php:335
+#: bluesky.php:342
 msgid ""
 "This is the unique identifier. It will be fetched automatically, when the "
 "handle is entered."
 msgstr ""
 
-#: bluesky.php:336
+#: bluesky.php:343
 msgid "Bluesky app password"
 msgstr ""
 
-#: bluesky.php:336
+#: bluesky.php:343
 msgid ""
 "Please don't add your real password here, but instead create a specific app "
 "password in the Bluesky settings."
 msgstr ""
 
-#: bluesky.php:342
+#: bluesky.php:349
 msgid "Bluesky Import/Export"
 msgstr ""
 
-#: bluesky.php:395
+#: bluesky.php:359
+msgid ""
+"You are not authenticated. Please enter your handle and the app password."
+msgstr ""
+
+#: bluesky.php:379
+msgid ""
+"You are authenticated to Bluesky. For security reasons the password isn't "
+"stored."
+msgstr ""
+
+#: bluesky.php:381
+msgid ""
+"The communication with the personal data server service (PDS) is established."
+msgstr ""
+
+#: bluesky.php:383
+msgid "Communication issues with the personal data server service (PDS)."
+msgstr ""
+
+#: bluesky.php:385
+msgid ""
+"The DID for the provided handle could not be detected. Please check if you "
+"entered the correct handle."
+msgstr ""
+
+#: bluesky.php:387
+msgid "The personal data server service (PDS) could not be detected."
+msgstr ""
+
+#: bluesky.php:389
+msgid ""
+"The authentication with the provided handle and password failed. Please "
+"check if you entered the correct password."
+msgstr ""
+
+#: bluesky.php:457
 msgid "Post to Bluesky"
 msgstr ""