mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-30 01:01:12 +00:00
Handle cases where we don't get lease_seconds returned.
This commit is contained in:
parent
153995f832
commit
ae0e6d8003
|
@ -19,9 +19,16 @@ defmodule Pleroma.Web.Websub.WebsubController do
|
||||||
end
|
end
|
||||||
|
|
||||||
# TODO: Extract this into the Websub module
|
# TODO: Extract this into the Websub module
|
||||||
def websub_subscription_confirmation(conn, %{"id" => id, "hub.mode" => "subscribe", "hub.challenge" => challenge, "hub.topic" => topic, "hub.lease_seconds" => lease_seconds}) do
|
def websub_subscription_confirmation(conn, %{"id" => id, "hub.mode" => "subscribe", "hub.challenge" => challenge, "hub.topic" => topic} = params) do
|
||||||
|
lease_seconds = if params["hub.lease_seconds"] do
|
||||||
|
String.to_integer(params["hub.lease_seconds"])
|
||||||
|
else
|
||||||
|
# Guess 3 days
|
||||||
|
60 * 24 * 3
|
||||||
|
end
|
||||||
|
|
||||||
with %WebsubClientSubscription{} = websub <- Repo.get_by(WebsubClientSubscription, id: id, topic: topic) do
|
with %WebsubClientSubscription{} = websub <- Repo.get_by(WebsubClientSubscription, id: id, topic: topic) do
|
||||||
valid_until = NaiveDateTime.add(NaiveDateTime.utc_now, String.to_integer(lease_seconds))
|
valid_until = NaiveDateTime.add(NaiveDateTime.utc_now, lease_seconds)
|
||||||
change = Ecto.Changeset.change(websub, %{state: "accepted", valid_until: valid_until})
|
change = Ecto.Changeset.change(websub, %{state: "accepted", valid_until: valid_until})
|
||||||
{:ok, _websub} = Repo.update(change)
|
{:ok, _websub} = Repo.update(change)
|
||||||
conn
|
conn
|
||||||
|
|
Loading…
Reference in a new issue