akkoma/lib/pleroma/plugs/ensure_authenticated_plug.ex

24 lines
513 B
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2018-12-31 15:41:47 +00:00
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2018-09-05 15:59:19 +00:00
defmodule Pleroma.Plugs.EnsureAuthenticatedPlug do
import Plug.Conn
import Pleroma.Web.TranslationHelpers
2018-09-05 15:59:19 +00: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 15:59:19 +00:00
|> halt
end
end