2020-01-25 07:47:30 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 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-04-13 22:55:26 +00:00
|
|
|
{:error, :invalid_uri_scheme} ->
|
|
|
|
{:discard, :invalid_uri_scheme}
|
|
|
|
|
|
|
|
{:error, :local_resource} ->
|
|
|
|
{:discard, :local_resource}
|
|
|
|
|
|
|
|
{:reject, _} ->
|
|
|
|
{:discard, :reject}
|
|
|
|
|
|
|
|
{:error, :id_mismatch} ->
|
|
|
|
{:discard, :id_mismatch}
|
|
|
|
|
2024-01-14 18:23:17 +00:00
|
|
|
_ ->
|
|
|
|
:error
|
2023-12-26 20:54:14 +00:00
|
|
|
end
|
2020-01-25 07:47:30 +00:00
|
|
|
end
|
|
|
|
end
|