2025-01-03 14:45:35 +00:00
|
|
|
defmodule BrightWeb.Router do
|
|
|
|
use BrightWeb, :router
|
2025-01-11 03:10:04 +00:00
|
|
|
|
2025-01-15 02:51:12 +00:00
|
|
|
import BrightWeb.UserAuth
|
2025-01-11 12:47:23 +00:00
|
|
|
|
2025-01-03 14:45:35 +00:00
|
|
|
|
|
|
|
pipeline :browser do
|
|
|
|
plug :accepts, ["html", "json"]
|
|
|
|
plug :fetch_session
|
|
|
|
plug :fetch_live_flash
|
|
|
|
plug :put_root_layout, html: {BrightWeb.Layouts, :root}
|
|
|
|
plug :protect_from_forgery
|
|
|
|
plug :put_secure_browser_headers
|
2025-01-15 02:51:12 +00:00
|
|
|
plug :fetch_current_user
|
2025-01-03 14:45:35 +00:00
|
|
|
end
|
|
|
|
|
2025-01-11 12:47:23 +00:00
|
|
|
|
2025-01-11 03:10:04 +00:00
|
|
|
|
|
|
|
|
2025-01-03 14:45:35 +00:00
|
|
|
|
2025-01-11 12:47:23 +00:00
|
|
|
|
2025-01-03 14:45:35 +00:00
|
|
|
|
|
|
|
pipeline :api do
|
|
|
|
plug :accepts, ["json"]
|
|
|
|
end
|
|
|
|
|
2025-01-15 02:51:12 +00:00
|
|
|
# scope "/" do
|
|
|
|
# pipe_through [:browser, :require_authenticated_user, :require_admin_user]
|
|
|
|
# ## !!! DANGER, platforms must only be writable by admins, (unless we implement SVG sanitizing)
|
|
|
|
# get "/platforms/new", PlatformController, :new
|
|
|
|
# post "/platforms", PlatformController, :create
|
|
|
|
# get "/platforms/:id/edit", PlatformController, :edit
|
|
|
|
# patch "/platforms/:id", PlatformController, :update
|
|
|
|
# put "/platforms/:id", PlatformController, :update
|
|
|
|
|
|
|
|
# end
|
|
|
|
|
|
|
|
|
2025-01-11 03:10:04 +00:00
|
|
|
scope "/" do
|
2025-01-15 02:51:12 +00:00
|
|
|
pipe_through [:browser, :require_authenticated_user]
|
|
|
|
|
|
|
|
get "/streams/new", StreamController, :new
|
|
|
|
post "/streams", StreamController, :create
|
|
|
|
|
|
|
|
# get "/vods/new", VodController, :new
|
|
|
|
# post "/vods", VodController, :create
|
|
|
|
|
|
|
|
# resources "/vt", VtuberController do
|
|
|
|
# get "/vods/new", VodController, :new
|
|
|
|
# post "/vods", VodController, :create
|
|
|
|
# get "/vtubers/:id/edit", VtuberController, :edit
|
|
|
|
# end
|
|
|
|
|
|
|
|
resources "/vtubers", VtuberController do
|
|
|
|
get "/vods/new", VodController, :new
|
|
|
|
post "/vods", VodController, :create
|
|
|
|
get "/vtubers/:id/edit", VtuberController, :edit
|
|
|
|
end
|
|
|
|
|
|
|
|
get "/tags/new", TagController, :new
|
|
|
|
post "/tags", TagController, :create
|
2025-01-11 03:10:04 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2025-01-11 12:47:23 +00:00
|
|
|
|
2025-01-15 02:51:12 +00:00
|
|
|
|
|
|
|
|
2025-01-03 14:45:35 +00:00
|
|
|
scope "/", BrightWeb do
|
|
|
|
pipe_through :browser
|
|
|
|
|
|
|
|
get "/", PageController, :home
|
|
|
|
|
|
|
|
get "/patrons", PatronController, :index
|
|
|
|
get "/about", PageController, :about
|
|
|
|
get "/api", PageController, :api
|
|
|
|
|
|
|
|
|
|
|
|
resources "/orders", OrderController, only: [:create, :show]
|
|
|
|
|
2025-01-11 03:10:04 +00:00
|
|
|
get "/streams", StreamController, :index
|
2025-01-11 12:47:23 +00:00
|
|
|
get "/streams/:id", StreamController, :show
|
2025-01-15 02:51:12 +00:00
|
|
|
|
|
|
|
# get "/vods", VodController, :index
|
|
|
|
# get "/vods/:id", VodController, :show
|
2025-01-03 14:45:35 +00:00
|
|
|
|
|
|
|
resources "/vods", VodController
|
|
|
|
|
|
|
|
|
2025-01-15 02:51:12 +00:00
|
|
|
get "/tags", TagController, :index
|
|
|
|
get "/tags:id", TagController, :show
|
2025-01-03 14:45:35 +00:00
|
|
|
|
2025-01-15 02:51:12 +00:00
|
|
|
get "/platforms", PlatformController, :index
|
|
|
|
get "/platforms/:id", PlatformController, :show
|
2025-01-11 12:47:23 +00:00
|
|
|
|
|
|
|
|
2025-01-03 14:45:35 +00:00
|
|
|
|
2025-01-15 02:51:12 +00:00
|
|
|
get "/vtubers", VtuberController, :index
|
|
|
|
get "/vtubers/:id", VtuberController, :show
|
|
|
|
|
|
|
|
resources "/vt", VtuberController do
|
|
|
|
get "/vods", VodController, :index
|
|
|
|
get "/vods/:id", VodController, :show
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2025-01-03 14:45:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
# Other scopes may use custom stacks.
|
|
|
|
scope "/api", BrightWeb do
|
|
|
|
pipe_through :api
|
|
|
|
resources "/urls", UrlController, except: [:new, :edit]
|
2025-01-12 05:16:38 +00:00
|
|
|
get "/health", PageController, :health
|
2025-01-03 14:45:35 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Enable LiveDashboard and Swoosh mailbox preview in development
|
|
|
|
if Application.compile_env(:bright, :dev_routes) do
|
|
|
|
# If you want to use the LiveDashboard in production, you should put
|
|
|
|
# it behind authentication and allow only admins to access it.
|
|
|
|
# If your application does not have an admins-only section yet,
|
|
|
|
# you can use Plug.BasicAuth to set up some basic authentication
|
|
|
|
# as long as you are also using SSL (which you should anyway).
|
|
|
|
import Phoenix.LiveDashboard.Router
|
|
|
|
|
|
|
|
scope "/dev" do
|
|
|
|
pipe_through :browser
|
|
|
|
|
|
|
|
live_dashboard "/dashboard", metrics: BrightWeb.Telemetry
|
|
|
|
forward "/mailbox", Plug.Swoosh.MailboxPreview
|
|
|
|
end
|
|
|
|
end
|
2025-01-11 03:10:04 +00:00
|
|
|
|
|
|
|
## Authentication routes
|
|
|
|
|
|
|
|
scope "/", BrightWeb do
|
2025-01-11 12:47:23 +00:00
|
|
|
pipe_through [:browser]
|
2025-01-11 03:10:04 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-01-15 02:51:12 +00:00
|
|
|
|
|
|
|
## Authentication routes
|
|
|
|
|
|
|
|
scope "/", BrightWeb do
|
|
|
|
pipe_through [:browser, :redirect_if_user_is_authenticated]
|
|
|
|
|
|
|
|
live_session :redirect_if_user_is_authenticated,
|
|
|
|
on_mount: [{BrightWeb.UserAuth, :redirect_if_user_is_authenticated}] do
|
|
|
|
live "/users/register", UserRegistrationLive, :new
|
|
|
|
live "/users/log_in", UserLoginLive, :new
|
|
|
|
live "/users/reset_password", UserForgotPasswordLive, :new
|
|
|
|
live "/users/reset_password/:token", UserResetPasswordLive, :edit
|
|
|
|
end
|
|
|
|
|
|
|
|
post "/users/log_in", UserSessionController, :create
|
|
|
|
end
|
|
|
|
|
|
|
|
scope "/", BrightWeb do
|
|
|
|
pipe_through [:browser, :require_authenticated_user]
|
|
|
|
|
|
|
|
live_session :require_authenticated_user,
|
|
|
|
on_mount: [{BrightWeb.UserAuth, :ensure_authenticated}] do
|
|
|
|
live "/users/settings", UserSettingsLive, :edit
|
|
|
|
live "/users/settings/confirm_email/:token", UserSettingsLive, :confirm_email
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
scope "/", BrightWeb do
|
|
|
|
pipe_through [:browser]
|
|
|
|
|
|
|
|
delete "/users/log_out", UserSessionController, :delete
|
|
|
|
|
|
|
|
live_session :current_user,
|
|
|
|
on_mount: [{BrightWeb.UserAuth, :mount_current_user}] do
|
|
|
|
live "/users/confirm/:token", UserConfirmationLive, :edit
|
|
|
|
live "/users/confirm", UserConfirmationInstructionsLive, :new
|
|
|
|
end
|
|
|
|
end
|
2025-01-03 14:45:35 +00:00
|
|
|
end
|