summaryrefslogtreecommitdiff
path: root/lib/pleroma/workers/remote_fetcher_worker.ex
blob: c264184833dba44cb6f30bc3ce3af1b75234b502 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# 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
    case Fetcher.fetch_object_from_id(id, depth: args["depth"]) do
      {:ok, _object} ->
        :ok

      {:error, :forbidden} ->
        {:discard, :forbidden}

      {:error, :not_found} ->
        {:discard, :not_found}

      {:error, :allowed_depth} ->
        {:discard, :allowed_depth}

      {:error, _} = e ->
        e

      e ->
        {:error, e}
    end
  end

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