fp/services/bright/lib/bright_web/router.ex

148 lines
4.1 KiB
Elixir
Raw Normal View History

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-29 07:15:42 +00:00
import BrightWeb.UserAuth
import Oban.Web.Router
2025-01-03 14:45:35 +00:00
pipeline :browser do
2025-01-20 10:01:08 +00:00
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)
plug(:fetch_current_user)
2025-01-03 14:45:35 +00:00
end
pipeline :api do
2025-01-20 10:01:08 +00:00
plug(:accepts, ["json"])
2025-01-03 14:45:35 +00:00
end
2025-01-29 07:15:42 +00:00
# scope "/" do
# pipe_through([:browser, :require_auth, :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-16 20:23:58 +00:00
scope "/auth", BrightWeb do
2025-01-20 10:01:08 +00:00
pipe_through(:browser)
2025-01-16 20:23:58 +00:00
2025-01-20 10:01:08 +00:00
get("/:provider", AuthController, :request)
get("/:provider/callback", AuthController, :callback)
post("/:provider/callback", AuthController, :callback)
delete("/logout", AuthController, :delete)
2025-01-16 20:23:58 +00:00
end
2025-01-15 02:51:12 +00:00
2025-01-29 07:15:42 +00:00
# scope "/account", BrightWeb do
# pipe_through([:browser, :require_auth])
# post("/", AuthController, :create_and_sign_in)
# end
2025-01-11 03:10:04 +00:00
scope "/" do
2025-01-29 07:15:42 +00:00
pipe_through([:browser, :require_auth])
2025-01-15 02:51:12 +00:00
2025-01-20 10:01:08 +00:00
get("/streams/new", StreamController, :new)
post("/streams", StreamController, :create)
2025-01-15 02:51:12 +00:00
# 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
2025-01-15 03:29:54 +00:00
# resources "/vtubers", VtuberController do
# get "/vods/new", VodController, :new
# post "/vods", VodController, :create
# get "/vtubers/:id/edit", VtuberController, :edit
# end
2025-01-20 10:01:08 +00:00
get("/tags/new", TagController, :new)
post("/tags", TagController, :create)
2025-01-11 03:10:04 +00:00
end
2025-01-03 14:45:35 +00:00
scope "/", BrightWeb do
2025-01-20 10:01:08 +00:00
pipe_through(:browser)
2025-01-03 14:45:35 +00:00
2025-01-20 10:01:08 +00:00
get("/", PageController, :home)
2025-01-03 14:45:35 +00:00
2025-01-31 09:18:15 +00:00
2025-01-29 07:15:42 +00:00
get("/profile", PageController, :profile)
2025-01-15 02:51:12 +00:00
2025-01-20 10:01:08 +00:00
get("/patrons", PatronController, :index)
get("/about", PageController, :about)
get("/api", PageController, :api)
2025-01-03 14:45:35 +00:00
2025-01-20 10:01:08 +00:00
get("/join", UserController, :join)
post("/join", UserController, :join)
post("/join", UserController, :join)
2025-01-03 14:45:35 +00:00
2025-01-20 10:01:08 +00:00
resources("/orders", OrderController, only: [:create, :show])
2025-01-03 14:45:35 +00:00
2025-01-20 10:01:08 +00:00
get("/streams", StreamController, :index)
get("/streams/:id", StreamController, :show)
2025-01-03 14:45:35 +00:00
2025-01-20 10:01:08 +00:00
resources("/vods", VodController)
get("/vods/:id", VodController, :show)
get("/vods", VodController, :index)
2025-01-11 12:47:23 +00:00
2025-01-20 10:01:08 +00:00
get("/tags", TagController, :index)
get("/tags:id", TagController, :show)
2025-01-11 12:47:23 +00:00
2025-01-20 10:01:08 +00:00
get("/platforms", PlatformController, :index)
get("/platforms/:id", PlatformController, :show)
2025-01-03 14:45:35 +00:00
2025-01-20 10:01:08 +00:00
get("/vtubers", VtuberController, :index)
get("/vtubers/:id", VtuberController, :show)
2025-01-15 02:51:12 +00:00
resources "/vt", VtuberController do
2025-01-20 10:01:08 +00:00
get("/vods", VodController, :index)
get("/vods/:id", VodController, :show)
2025-01-15 02:51:12 +00:00
end
2025-01-29 07:15:42 +00:00
oban_dashboard "/oban"
2025-01-03 14:45:35 +00:00
end
2025-01-31 09:18:15 +00:00
scope "/feed", BrightWeb do
get "/vods.xml", RssController, :vods
end
2025-01-03 14:45:35 +00:00
# Other scopes may use custom stacks.
scope "/api", BrightWeb do
2025-01-20 10:01:08 +00:00
pipe_through(:api)
resources("/urls", UrlController, except: [:new, :edit])
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
2025-01-20 10:01:08 +00:00
pipe_through(:browser)
2025-01-03 14:45:35 +00:00
2025-01-20 10:01:08 +00:00
live_dashboard("/dashboard", metrics: BrightWeb.Telemetry)
forward("/mailbox", Plug.Swoosh.MailboxPreview)
2025-01-03 14:45:35 +00:00
end
end
2025-01-11 03:10:04 +00:00
2025-01-15 02:51:12 +00:00
2025-01-03 14:45:35 +00:00
end