mirror of
https://github.com/plausible/analytics.git
synced 2024-12-12 05:55:31 +03:00
6b22806e1f
* added super-admin access to locked dashboards * fixed formatting
25 lines
538 B
Elixir
25 lines
538 B
Elixir
defmodule PlausibleWeb.CRMAuthPlug do
|
|
import Plug.Conn
|
|
use Plausible.Repo
|
|
|
|
def init(options) do
|
|
options
|
|
end
|
|
|
|
def call(conn, _opts) do
|
|
case get_session(conn, :current_user_id) do
|
|
nil ->
|
|
conn |> send_resp(403, "Not allowed") |> halt
|
|
|
|
id ->
|
|
user = Repo.get_by(Plausible.Auth.User, id: id)
|
|
|
|
if user && Plausible.Auth.is_super_admin?(user.id) do
|
|
assign(conn, :current_user, user)
|
|
else
|
|
conn |> send_resp(403, "Not allowed") |> halt
|
|
end
|
|
end
|
|
end
|
|
end
|