2020-01-25 10:47:30 +03:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 07:49:20 +01:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-01-25 10:47:30 +03:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Workers.RemoteFetcherWorker do
|
|
|
|
alias Pleroma.Object.Fetcher
|
|
|
|
|
2024-04-16 02:53:24 +01:00
|
|
|
use Pleroma.Workers.WorkerHelper,
|
|
|
|
queue: "remote_fetcher",
|
2024-04-19 11:39:27 +01:00
|
|
|
unique: [period: 300, states: Oban.Job.states(), keys: [:op, :id]]
|
2020-01-25 10:47:30 +03:00
|
|
|
|
|
|
|
@impl Oban.Worker
|
2020-06-23 15:09:01 +03:00
|
|
|
def perform(%Job{args: %{"op" => "fetch_remote", "id" => id} = args}) do
|
2024-01-14 13:23:17 -05:00
|
|
|
case Fetcher.fetch_object_from_id(id, depth: args["depth"]) do
|
|
|
|
{:ok, _object} ->
|
|
|
|
:ok
|
2023-12-26 15:54:14 -05:00
|
|
|
|
2024-01-14 13:23:17 -05:00
|
|
|
{:error, :forbidden} ->
|
|
|
|
{:discard, :forbidden}
|
2023-12-26 15:54:14 -05:00
|
|
|
|
2024-01-14 13:23:17 -05:00
|
|
|
{:error, :not_found} ->
|
|
|
|
{:discard, :not_found}
|
2023-12-26 16:05:44 -05:00
|
|
|
|
2024-01-14 13:23:17 -05:00
|
|
|
{:error, :allowed_depth} ->
|
|
|
|
{:discard, :allowed_depth}
|
2023-12-27 22:28:41 -05:00
|
|
|
|
2024-04-13 23:55:26 +01: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-04-16 02:35:21 +01:00
|
|
|
{:error, _} = e ->
|
|
|
|
e
|
|
|
|
|
|
|
|
e ->
|
|
|
|
{:error, e}
|
2023-12-26 15:54:14 -05:00
|
|
|
end
|
2020-01-25 10:47:30 +03:00
|
|
|
end
|
|
|
|
end
|