chore(post.html): drop post links to mastodon

This commit is contained in:
Cory Dransfeldt 2025-03-28 17:30:17 -07:00
parent d5c31a87d3
commit d73444d714
No known key found for this signature in database
6 changed files with 3 additions and 25 deletions

View file

@ -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.{$slug}&mastodon_url=is.null", "PATCH", $data);
}
private function truncateContent(
string $title,
string $description,

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "coryd.dev",
"version": "1.1.2",
"version": "1.1.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "1.1.2",
"version": "1.1.3",
"license": "MIT",
"dependencies": {
"minisearch": "^7.1.2",

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "1.1.2",
"version": "1.1.3",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"engines": {

View file

@ -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

View file

@ -1,8 +0,0 @@
{%- if url -%}
<div class="banner mastodon">
<p>
{% tablericon "brand-mastodon" %}
<a class="mastodon" href="{{ url }}"> Discuss this post on Mastodon. </a>
</p>
</div>
{%- endif -%}

View file

@ -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" %}
</div>
</article>