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
|
2020-02-15 17:41:38 +00:00
|
|
|
{:ok, _object} = Fetcher.fetch_object_from_id(id, depth: args["depth"])
|
2020-01-25 07:47:30 +00:00
|
|
|
end
|
|
|
|
end
|