Merge branch 'captcha' into 'develop'
[akkoma] / lib / pleroma / plugs / ensure_authenticated_plug.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Plugs.EnsureAuthenticatedPlug do
6 import Plug.Conn
7 alias Pleroma.User
8
9 def init(options) do
10 options
11 end
12
13 def call(%{assigns: %{user: %User{}}} = conn, _) do
14 conn
15 end
16
17 def call(conn, _) do
18 conn
19 |> put_resp_content_type("application/json")
20 |> send_resp(403, Jason.encode!(%{error: "Invalid credentials."}))
21 |> halt
22 end
23 end