live_beats/lib/live_beats_web/router.ex

63 lines
1.6 KiB
Elixir
Raw Normal View History

2021-09-02 18:00:57 +00:00
defmodule LiveBeatsWeb.Router do
use LiveBeatsWeb, :router
2021-11-09 11:20:10 +00:00
import LiveBeatsWeb.UserAuth,
2021-11-16 20:54:40 +00:00
only: [redirect_if_user_is_authenticated: 2]
2021-09-08 14:58:32 +00:00
2021-09-02 18:00:57 +00:00
pipeline :browser do
plug :accepts, ["html"]
plug :fetch_session
plug :fetch_live_flash
2022-11-17 15:01:20 +00:00
plug :put_root_layout, {LiveBeatsWeb.Layouts, :root}
2021-09-02 18:00:57 +00:00
plug :protect_from_forgery
plug :put_secure_browser_headers
end
pipeline :api do
plug :accepts, ["json"]
end
2021-09-08 14:58:32 +00:00
scope "/", LiveBeatsWeb do
pipe_through [:browser, :redirect_if_user_is_authenticated]
get "/oauth/callbacks/:provider", OAuthCallbackController, :new
end
2021-09-02 18:00:57 +00:00
if Mix.env() in [:dev, :test] do
import Phoenix.LiveDashboard.Router
scope "/" do
pipe_through :browser
live_dashboard "/dashboard", metrics: LiveBeatsWeb.Telemetry
end
end
if Mix.env() == :dev do
scope "/dev" do
pipe_through :browser
forward "/mailbox", Plug.Swoosh.MailboxPreview
end
end
2021-11-09 11:20:10 +00:00
scope "/", LiveBeatsWeb do
pipe_through :browser
get "/", RedirectController, :redirect_authenticated
get "/files/:id", FileController, :show
delete "/signout", OAuthCallbackController, :sign_out
live_session :default, on_mount: [{LiveBeatsWeb.UserAuth, :current_user}, LiveBeatsWeb.Nav] do
live "/signin", SignInLive, :index
end
live_session :authenticated,
on_mount: [{LiveBeatsWeb.UserAuth, :ensure_authenticated}, LiveBeatsWeb.Nav] do
2021-11-22 14:57:24 +00:00
live "/:profile_username/songs/new", ProfileLive, :new
2021-12-14 15:35:51 +00:00
live "/:profile_username", ProfileLive, :show
2021-11-09 11:20:10 +00:00
live "/profile/settings", SettingsLive, :edit
end
end
2021-09-02 18:00:57 +00:00
end