30 lines
825 B
Elixir
30 lines
825 B
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Workers.PurgeExpiredToken do
|
|
@moduledoc """
|
|
Worker which purges expired OAuth tokens
|
|
"""
|
|
|
|
use Pleroma.Workers.WorkerHelper, queue: "token_expiration", max_attempts: 1
|
|
|
|
def schedule(args) do
|
|
{scheduled_at, args} = Map.pop(args, :valid_until)
|
|
|
|
enqueue("delete", args, scheduled_at: scheduled_at)
|
|
end
|
|
|
|
@impl Oban.Worker
|
|
def timeout(_job) do
|
|
Pleroma.Config.get([:workers, :timeout, :token_expiration], :timer.minutes(1))
|
|
end
|
|
|
|
@impl true
|
|
def perform(%Oban.Job{args: %{"token_id" => id, "mod" => module}}) do
|
|
module
|
|
|> String.to_existing_atom()
|
|
|> Pleroma.Repo.get(id)
|
|
|> Pleroma.Repo.delete()
|
|
end
|
|
end
|