2020-01-25 07:47:30 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-02 20:38:50 +00:00
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
2020-01-25 07:47:30 +00:00
|
|
|
# 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
|
2020-06-23 12:09:01 +00:00
|
|
|
def perform(%Job{args: %{"op" => "fetch_remote", "id" => id} = args}) do
|
2024-01-14 18:23:17 +00:00
|
|
|
case Fetcher.fetch_object_from_id(id, depth: args["depth"]) do
|
|
|
|
{:ok, _object} ->
|
|
|
|
:ok
|
2023-12-26 20:54:14 +00:00
|
|
|
|
2024-01-14 18:23:17 +00:00
|
|
|
{:error, :forbidden} ->
|
|
|
|
{:discard, :forbidden}
|
2023-12-26 20:54:14 +00:00
|
|
|
|
2024-01-14 18:23:17 +00:00
|
|
|
{:error, :not_found} ->
|
|
|
|
{:discard, :not_found}
|
2023-12-26 21:05:44 +00:00
|
|
|
|
2024-01-14 18:23:17 +00:00
|
|
|
{:error, :allowed_depth} ->
|
|
|
|
{:discard, :allowed_depth}
|
2023-12-28 03:28:41 +00:00
|
|
|
|
2024-02-23 00:57:43 +00:00
|
|
|
{:error, _} = e ->
|
|
|
|
e
|
|
|
|
|
|
|
|
e ->
|
|
|
|
{:error, e}
|
2023-12-26 20:54:14 +00:00
|
|
|
end
|
2020-01-25 07:47:30 +00:00
|
|
|
end
|
2022-11-11 18:42:29 +00:00
|
|
|
|
|
|
|
@impl Oban.Worker
|
|
|
|
def timeout(_job), do: :timer.seconds(10)
|
2020-01-25 07:47:30 +00:00
|
|
|
end
|