mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-30 09:02:28 +00:00
websub: improve error handling
This commit is contained in:
parent
646bb87816
commit
17da432dbb
|
@ -121,6 +121,12 @@ defmodule Pleroma.Web.Websub do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def incoming_subscription_request(user, params) do
|
||||||
|
Logger.info("Unhandled WebSub request for #{user.nickname}: #{inspect(params)}")
|
||||||
|
|
||||||
|
{:error, "Invalid WebSub request"}
|
||||||
|
end
|
||||||
|
|
||||||
defp get_subscription(topic, callback) do
|
defp get_subscription(topic, callback) do
|
||||||
Repo.get_by(WebsubServerSubscription, topic: topic, callback: callback) ||
|
Repo.get_by(WebsubServerSubscription, topic: topic, callback: callback) ||
|
||||||
%WebsubServerSubscription{}
|
%WebsubServerSubscription{}
|
||||||
|
|
|
@ -67,6 +67,13 @@ defmodule Pleroma.Web.Websub.WebsubController do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def websub_subscription_confirmation(conn, params) do
|
||||||
|
Logger.info("Invalid WebSub confirmation request: #{inspect(params)}")
|
||||||
|
|
||||||
|
conn
|
||||||
|
|> send_resp(500, "Invalid parameters")
|
||||||
|
end
|
||||||
|
|
||||||
def websub_incoming(conn, %{"id" => id}) do
|
def websub_incoming(conn, %{"id" => id}) do
|
||||||
with "sha1=" <> signature <- hd(get_req_header(conn, "x-hub-signature")),
|
with "sha1=" <> signature <- hd(get_req_header(conn, "x-hub-signature")),
|
||||||
signature <- String.downcase(signature),
|
signature <- String.downcase(signature),
|
||||||
|
|
Loading…
Reference in a new issue