summaryrefslogtreecommitdiff
path: root/lib/pleroma/workers/remote_fetcher_worker.ex
blob: d2a77aa17f5cc7b2245bd005bd6deb75f8b1a26d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Workers.RemoteFetcherWorker do
  alias Pleroma.Object.Fetcher

  use Pleroma.Workers.WorkerHelper, queue: "remote_fetcher"

  @impl Oban.Worker
  def perform(%Job{args: %{"op" => "fetch_remote", "id" => id} = args}) do
    {:ok, _object} = Fetcher.fetch_object_from_id(id, depth: args["depth"])
  end

  @impl Oban.Worker
  def timeout(_job), do: :timer.seconds(10)
end