2020-08-25 10:17:51 -06:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-12 23:49:20 -07:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-08-25 10:17:51 -06:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-09-05 09:35:01 -06:00
|
|
|
defmodule Pleroma.Workers.PurgeExpiredToken do
|
2020-08-25 10:17:51 -06:00
|
|
|
@moduledoc """
|
|
|
|
Worker which purges expired OAuth tokens
|
|
|
|
"""
|
|
|
|
|
2022-12-14 06:38:27 -07:00
|
|
|
use Pleroma.Workers.WorkerHelper, queue: "token_expiration", max_attempts: 1
|
2020-08-25 10:17:51 -06:00
|
|
|
|
2022-12-14 06:38:27 -07:00
|
|
|
def schedule(args) do
|
2020-08-25 10:17:51 -06:00
|
|
|
{scheduled_at, args} = Map.pop(args, :valid_until)
|
|
|
|
|
2022-12-14 06:38:27 -07:00
|
|
|
enqueue("delete", args, scheduled_at: scheduled_at)
|
2020-08-25 10:17:51 -06:00
|
|
|
end
|
|
|
|
|
2022-11-13 16:55:51 -07:00
|
|
|
@impl Oban.Worker
|
|
|
|
def timeout(_job) do
|
2022-11-14 08:07:26 -07:00
|
|
|
Pleroma.Config.get([:workers, :timeout, :token_expiration], :timer.minutes(1))
|
2022-11-13 16:55:51 -07:00
|
|
|
end
|
|
|
|
|
2020-08-25 10:17:51 -06:00
|
|
|
@impl true
|
2020-09-05 09:35:01 -06:00
|
|
|
def perform(%Oban.Job{args: %{"token_id" => id, "mod" => module}}) do
|
|
|
|
module
|
|
|
|
|> String.to_existing_atom()
|
2020-08-25 10:17:51 -06:00
|
|
|
|> Pleroma.Repo.get(id)
|
|
|
|
|> Pleroma.Repo.delete()
|
|
|
|
end
|
|
|
|
end
|