d2a77aa17f5cc7b2245bd005bd6deb75f8b1a26d
[anni] / lib / pleroma / workers / remote_fetcher_worker.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Workers.RemoteFetcherWorker do
6   alias Pleroma.Object.Fetcher
7
8   use Pleroma.Workers.WorkerHelper, queue: "remote_fetcher"
9
10   @impl Oban.Worker
11   def perform(%Job{args: %{"op" => "fetch_remote", "id" => id} = args}) do
12     {:ok, _object} = Fetcher.fetch_object_from_id(id, depth: args["depth"])
13   end
14
15   @impl Oban.Worker
16   def timeout(_job), do: :timer.seconds(10)
17 end