bites you
Some checks are pending
ci/woodpecker/tag/build-amd64 Pipeline is pending
ci/woodpecker/tag/build-arm64 Pipeline is pending
ci/woodpecker/tag/docs Pipeline is pending
ci/woodpecker/tag/lint Pipeline is pending
ci/woodpecker/tag/test Pipeline is pending

This commit is contained in:
Erin Shepherd 2024-03-02 22:34:59 +01:00
parent 321016ff86
commit c70df5fb2a
7 changed files with 36 additions and 6 deletions

View file

@ -1,4 +1,6 @@
## akkoma ## snaccoma: akkoma with bites
this is a silly little fork which can receive [Bite](https://ns.mia.jetzt/as/) activities
*a smallish microblogging platform, aka the cooler pleroma* *a smallish microblogging platform, aka the cooler pleroma*

View file

@ -72,6 +72,7 @@ defmodule Pleroma.Notification do
pleroma:report pleroma:report
reblog reblog
poll poll
bite
} }
def changeset(%Notification{} = notification, attrs) do def changeset(%Notification{} = notification, attrs) do
@ -402,7 +403,7 @@ defmodule Pleroma.Notification do
end end
def create_notifications(%Activity{data: %{"type" => type}} = activity, options) def create_notifications(%Activity{data: %{"type" => type}} = activity, options)
when type in ["Follow", "Like", "Announce", "Move", "EmojiReact", "Flag", "Update"] do when type in ["Follow", "Like", "Announce", "Move", "EmojiReact", "Flag", "Update", "Bite"] do
do_create_notifications(activity, options) do_create_notifications(activity, options)
end end
@ -459,6 +460,9 @@ defmodule Pleroma.Notification do
"Update" -> "Update" ->
"update" "update"
"Bite" ->
"bite"
t -> t ->
raise "No notification type for activity type #{t}" raise "No notification type for activity type #{t}"
end end
@ -532,7 +536,8 @@ defmodule Pleroma.Notification do
"Move", "Move",
"EmojiReact", "EmojiReact",
"Flag", "Flag",
"Update" "Update",
"Bite"
] do ] do
potential_receiver_ap_ids = get_potential_receiver_ap_ids(activity) potential_receiver_ap_ids = get_potential_receiver_ap_ids(activity)

View file

@ -186,6 +186,13 @@ defmodule Pleroma.Web.ActivityPub.SideEffects do
{:ok, object, meta} {:ok, object, meta}
end end
# Tasks this handles
# - Set up bite notification
def handle(%{data: %{"type" => "Bite"}} = object, meta) do
Notification.create_notifications(object)
{:ok, object, meta}
end
# Tasks this handles # Tasks this handles
# - Actually create object # - Actually create object
# - Rollback if we couldn't create it # - Rollback if we couldn't create it

View file

@ -485,7 +485,7 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
%{"type" => type} = data, %{"type" => type} = data,
_options _options
) )
when type in ~w{Update Block Follow Accept Reject} do when type in ~w{Update Block Follow Accept Reject Bite} do
with {:ok, %User{}} <- ObjectValidator.fetch_actor(data), with {:ok, %User{}} <- ObjectValidator.fetch_actor(data),
{:ok, activity, _} <- {:ok, activity, _} <-
Pipeline.common_pipeline(data, local: false) do Pipeline.common_pipeline(data, local: false) do

View file

@ -118,7 +118,7 @@ defmodule Pleroma.Web.Federator do
e -> e ->
# Just drop those for now # Just drop those for now
Logger.debug(fn -> "Unhandled activity\n" <> Jason.encode!(params, pretty: true) end) Logger.debug(fn -> "Unhandled activity (error: #{inspect(e)})\n" <> Jason.encode!(params, pretty: true) end)
{:error, e} {:error, e}
end end
end end

View file

@ -128,7 +128,7 @@ defmodule Pleroma.Web.MastodonAPI.NotificationView do
"pleroma:report" -> "pleroma:report" ->
put_report(response, activity) put_report(response, activity)
type when type in ["follow", "follow_request"] -> type when type in ["follow", "follow_request", "bite"] ->
response response
end end
end end

View file

@ -0,0 +1,16 @@
defmodule Pleroma.Repo.Migrations.AddBiteToNotificationsEnum do
use Ecto.Migration
@disable_ddl_transaction true
def up do
"""
alter type notification_type add value if not exists 'bite'
"""
|> execute()
end
def down do
# Leave value in place
end
end