pleroma/lib/pleroma/plugs/ensure_authenticated_plug.ex

24 lines
513 B
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2020-03-03 23:44:49 +01:00
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2018-09-05 17:59:19 +02:00
defmodule Pleroma.Plugs.EnsureAuthenticatedPlug do
import Plug.Conn
import Pleroma.Web.TranslationHelpers
2018-09-05 17:59:19 +02:00
alias Pleroma.User
def init(options) do
options
end
def call(%{assigns: %{user: %User{}}} = conn, _) do
conn
end
def call(conn, _) do
conn
|> render_error(:forbidden, "Invalid credentials.")
2018-09-05 17:59:19 +02:00
|> halt
end
end