mirror of
https://github.com/plausible/analytics.git
synced 2024-11-24 12:42:30 +03:00
a7fd23a804
This reverts commit 71d1988ee8
.
31 lines
668 B
Elixir
31 lines
668 B
Elixir
defmodule PlausibleWeb.AuthPlug 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
|
|
|
|
id ->
|
|
user =
|
|
Repo.get_by(Plausible.Auth.User, id: id)
|
|
|> Repo.preload(
|
|
subscription:
|
|
from(s in Plausible.Billing.Subscription, order_by: [desc: s.inserted_at])
|
|
)
|
|
|
|
if user do
|
|
Sentry.Context.set_user_context(%{id: user.id, name: user.name, email: user.email})
|
|
assign(conn, :current_user, user)
|
|
else
|
|
conn
|
|
end
|
|
end
|
|
end
|
|
end
|