social.metadata.moe/lib/pleroma/plugs/ensure_authenticated_plug.ex

24 lines
513 B
Elixir
Raw Normal View History

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