2020-01-25 08:47:30 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 06:08:45 +01:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2020-01-25 08:47:30 +01: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 14:09:01 +02:00
|
|
|
def perform(%Job{args: %{"op" => "fetch_remote", "id" => id} = args}) do
|
2020-02-15 18:41:38 +01:00
|
|
|
{:ok, _object} = Fetcher.fetch_object_from_id(id, depth: args["depth"])
|
2020-01-25 08:47:30 +01:00
|
|
|
end
|
|
|
|
end
|