diff options
| author | lain <lain@soykaf.club> | 2018-09-08 14:02:38 +0200 | 
|---|---|---|
| committer | William Pitcock <nenolod@dereferenced.org> | 2018-11-01 09:01:43 +0000 | 
| commit | 1e9ced5af478ba38c9e9d46140891a8f4473e02d (patch) | |
| tree | 95e61013630aed3b29996bf226572d163d482fbc /lib | |
| parent | e6ec01afb648cb99e5fc4db3a64fe1ed74fd0105 (diff) | |
| download | pleroma-1e9ced5af478ba38c9e9d46140891a8f4473e02d.tar.gz pleroma-1e9ced5af478ba38c9e9d46140891a8f4473e02d.zip  | |
Test Relay, switch to runtime configuration.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/pleroma/web/activity_pub/activity_pub_controller.ex | 14 | ||||
| -rw-r--r-- | lib/pleroma/web/federator/federator.ex | 5 | ||||
| -rw-r--r-- | lib/pleroma/web/router.ex | 9 | 
3 files changed, 20 insertions, 8 deletions
diff --git a/lib/pleroma/web/activity_pub/activity_pub_controller.ex b/lib/pleroma/web/activity_pub/activity_pub_controller.ex index a7b1c0079..531e98237 100644 --- a/lib/pleroma/web/activity_pub/activity_pub_controller.ex +++ b/lib/pleroma/web/activity_pub/activity_pub_controller.ex @@ -6,11 +6,25 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubController do    alias Pleroma.Web.ActivityPub.Relay    alias Pleroma.Web.ActivityPub.Utils    alias Pleroma.Web.Federator +  alias Pleroma.Config    require Logger    action_fallback(:errors) +  plug(:relay_active? when action in [:relay]) + +  def relay_active?(conn, _) do +    if Config.get([:instance, :allow_relay]) do +      conn +    else +      conn +      |> put_status(404) +      |> json(%{error: "not found"}) +      |> halt +    end +  end +    def user(conn, %{"nickname" => nickname}) do      with %User{} = user <- User.get_cached_by_nickname(nickname),           {:ok, user} <- Pleroma.Web.WebFinger.ensure_keys_present(user) do diff --git a/lib/pleroma/web/federator/federator.ex b/lib/pleroma/web/federator/federator.ex index 078f3ec11..9ea2507a1 100644 --- a/lib/pleroma/web/federator/federator.ex +++ b/lib/pleroma/web/federator/federator.ex @@ -7,6 +7,7 @@ defmodule Pleroma.Web.Federator do    alias Pleroma.Web.ActivityPub.Relay    alias Pleroma.Web.ActivityPub.Transmogrifier    alias Pleroma.Web.ActivityPub.Utils +  alias Pleroma.Config    require Logger    @websub Application.get_env(:pleroma, :websub) @@ -71,9 +72,9 @@ defmodule Pleroma.Web.Federator do          Logger.info(fn -> "Sending #{activity.data["id"]} out via Salmon" end)          Pleroma.Web.Salmon.publish(actor, activity) -        if Mix.env() != :test do +        if Config.get([:instance, :allow_relay]) do            Logger.info(fn -> "Relaying #{activity.data["id"]} out" end) -          Pleroma.Web.ActivityPub.Relay.publish(activity) +          Relay.publish(activity)          end        end diff --git a/lib/pleroma/web/router.ex b/lib/pleroma/web/router.ex index b531b6188..7b7affe5e 100644 --- a/lib/pleroma/web/router.ex +++ b/lib/pleroma/web/router.ex @@ -5,7 +5,6 @@ defmodule Pleroma.Web.Router do    @instance Application.get_env(:pleroma, :instance)    @federating Keyword.get(@instance, :federating) -  @allow_relay Keyword.get(@instance, :allow_relay)    @public Keyword.get(@instance, :public)    @registrations_open Keyword.get(@instance, :registrations_open) @@ -354,11 +353,9 @@ defmodule Pleroma.Web.Router do    end    if @federating do -    if @allow_relay do -      scope "/relay", Pleroma.Web.ActivityPub do -        pipe_through(:ap_relay) -        get("/", ActivityPubController, :relay) -      end +    scope "/relay", Pleroma.Web.ActivityPub do +      pipe_through(:ap_relay) +      get("/", ActivityPubController, :relay)      end      scope "/", Pleroma.Web.ActivityPub do  | 
