From 6936a9605378386f3308c5adb44f4e0cd52dbcac Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 28 Mar 2025 18:05:15 -0700 Subject: [PATCH] chore(post.html): drop post links to mastodon --- api/Classes/ApiHandler.php | 4 +--- api/mastodon.php | 10 ---------- queries/views/content/posts.psql | 1 - src/includes/blocks/banners/mastodon.liquid | 8 -------- src/pages/sections/posts/post.html | 3 --- 5 files changed, 1 insertion(+), 25 deletions(-) delete mode 100644 src/includes/blocks/banners/mastodon.liquid diff --git a/api/Classes/ApiHandler.php b/api/Classes/ApiHandler.php index 170bc49..9f42b30 100644 --- a/api/Classes/ApiHandler.php +++ b/api/Classes/ApiHandler.php @@ -50,9 +50,7 @@ abstract class ApiHandler ], ]; - if (in_array($method, ["POST", "PATCH"]) && $body) { - $options["json"] = $body; - } + if ($method === "POST" && $body) $options["json"] = $body; $response = (new Client())->request($method, $url, $options); diff --git a/api/mastodon.php b/api/mastodon.php index 33b6b9a..b1ace34 100644 --- a/api/mastodon.php +++ b/api/mastodon.php @@ -83,7 +83,6 @@ class MastodonPostHandler extends ApiHandler if ($mastodonPostUrl) { if (strpos($item["link"], $this->baseUrl . "/posts") !== false) { $slug = str_replace($this->baseUrl, "", $item["link"]); - $this->updatePostWithMastodonUrl($slug, $mastodonPostUrl); echo "Posted and stored URL: {$item["link"]}\n"; } } else { @@ -209,15 +208,6 @@ class MastodonPostHandler extends ApiHandler } } - private function updatePostWithMastodonUrl( - string $slug, - string $mastodonPostUrl - ): void { - $data = ["mastodon_url" => $mastodonPostUrl]; - - $this->fetchFromPostgREST("posts", "slug=eq.{urlencode($slug)}&mastodon_url=is.null", "PATCH", $data); - } - private function truncateContent( string $title, string $description, diff --git a/queries/views/content/posts.psql b/queries/views/content/posts.psql index 47f2b25..09b167c 100644 --- a/queries/views/content/posts.psql +++ b/queries/views/content/posts.psql @@ -7,7 +7,6 @@ SELECT p.content, p.featured, p.slug AS url, - p.mastodon_url, CASE WHEN df.filename_disk IS NOT NULL AND df.filename_disk != '' AND df.filename_disk != '/' THEN diff --git a/src/includes/blocks/banners/mastodon.liquid b/src/includes/blocks/banners/mastodon.liquid deleted file mode 100644 index fdd0124..0000000 --- a/src/includes/blocks/banners/mastodon.liquid +++ /dev/null @@ -1,8 +0,0 @@ -{%- if url -%} - -{%- endif -%} diff --git a/src/pages/sections/posts/post.html b/src/pages/sections/posts/post.html index ee8d560..2f4f0bf 100644 --- a/src/pages/sections/posts/post.html +++ b/src/pages/sections/posts/post.html @@ -53,9 +53,6 @@ schema: blog posts: post.posts, shows: post.shows %} - {% render "blocks/banners/mastodon.liquid" - url:post.mastodon_url - %} {% render "blocks/banners/coffee.liquid" %}