2021-03-11 21:12:55 -05:00
|
|
|
defmodule CanneryWeb.Router do
|
|
|
|
use CanneryWeb, :router
|
2021-09-10 00:24:54 -04:00
|
|
|
import Phoenix.LiveDashboard.Router
|
2021-03-11 21:12:55 -05:00
|
|
|
import CanneryWeb.UserAuth
|
|
|
|
|
|
|
|
pipeline :browser do
|
|
|
|
plug :accepts, ["html"]
|
|
|
|
plug :fetch_session
|
|
|
|
plug :fetch_live_flash
|
|
|
|
plug :put_root_layout, {CanneryWeb.LayoutView, :root}
|
|
|
|
plug :protect_from_forgery
|
|
|
|
plug :put_secure_browser_headers
|
|
|
|
plug :fetch_current_user
|
2022-04-19 18:16:06 -04:00
|
|
|
|
|
|
|
Gettext.put_locale(Application.get_env(:gettext, :default_locale, "en_US"))
|
2021-03-11 21:12:55 -05:00
|
|
|
end
|
2021-09-10 21:37:17 -04:00
|
|
|
|
2021-09-10 00:24:54 -04:00
|
|
|
pipeline :require_admin do
|
|
|
|
plug :require_role, role: :admin
|
|
|
|
end
|
2021-03-11 21:12:55 -05:00
|
|
|
|
|
|
|
pipeline :api do
|
|
|
|
plug :accepts, ["json"]
|
|
|
|
end
|
|
|
|
|
|
|
|
scope "/", CanneryWeb do
|
|
|
|
pipe_through :browser
|
|
|
|
|
2022-01-21 20:36:25 -05:00
|
|
|
live "/", HomeLive
|
2021-03-11 21:12:55 -05:00
|
|
|
end
|
2021-09-10 21:37:17 -04:00
|
|
|
|
2021-03-11 21:12:55 -05:00
|
|
|
## Authentication routes
|
|
|
|
|
|
|
|
scope "/", CanneryWeb do
|
|
|
|
pipe_through [:browser, :redirect_if_user_is_authenticated]
|
|
|
|
|
|
|
|
get "/users/register", UserRegistrationController, :new
|
|
|
|
post "/users/register", UserRegistrationController, :create
|
|
|
|
get "/users/log_in", UserSessionController, :new
|
|
|
|
post "/users/log_in", UserSessionController, :create
|
|
|
|
get "/users/reset_password", UserResetPasswordController, :new
|
|
|
|
post "/users/reset_password", UserResetPasswordController, :create
|
|
|
|
get "/users/reset_password/:token", UserResetPasswordController, :edit
|
|
|
|
put "/users/reset_password/:token", UserResetPasswordController, :update
|
|
|
|
end
|
|
|
|
|
|
|
|
scope "/", CanneryWeb do
|
|
|
|
pipe_through [:browser, :require_authenticated_user]
|
|
|
|
|
|
|
|
get "/users/settings", UserSettingsController, :edit
|
|
|
|
put "/users/settings", UserSettingsController, :update
|
2021-09-10 21:37:17 -04:00
|
|
|
delete "/users/settings/:id", UserSettingsController, :delete
|
2021-03-11 21:12:55 -05:00
|
|
|
get "/users/settings/confirm_email/:token", UserSettingsController, :confirm_email
|
2021-09-10 00:24:54 -04:00
|
|
|
|
2021-09-02 23:31:14 -04:00
|
|
|
live "/tags", TagLive.Index, :index
|
|
|
|
live "/tags/new", TagLive.Index, :new
|
|
|
|
live "/tags/:id/edit", TagLive.Index, :edit
|
|
|
|
|
|
|
|
live "/ammo_types", AmmoTypeLive.Index, :index
|
|
|
|
live "/ammo_types/new", AmmoTypeLive.Index, :new
|
|
|
|
live "/ammo_types/:id/edit", AmmoTypeLive.Index, :edit
|
|
|
|
|
|
|
|
live "/ammo_types/:id", AmmoTypeLive.Show, :show
|
|
|
|
live "/ammo_types/:id/show/edit", AmmoTypeLive.Show, :edit
|
2021-09-10 00:24:54 -04:00
|
|
|
|
2021-09-02 23:31:14 -04:00
|
|
|
live "/containers", ContainerLive.Index, :index
|
|
|
|
live "/containers/new", ContainerLive.Index, :new
|
|
|
|
live "/containers/:id/edit", ContainerLive.Index, :edit
|
2022-02-18 22:56:46 -05:00
|
|
|
live "/containers/:id/edit_tags", ContainerLive.Index, :edit_tags
|
2021-09-02 23:31:14 -04:00
|
|
|
|
|
|
|
live "/containers/:id", ContainerLive.Show, :show
|
|
|
|
live "/containers/:id/show/edit", ContainerLive.Show, :edit
|
2022-02-18 22:56:46 -05:00
|
|
|
live "/containers/:id/show/edit_tags", ContainerLive.Show, :edit_tags
|
2021-09-10 00:24:54 -04:00
|
|
|
|
2021-09-02 23:31:14 -04:00
|
|
|
live "/ammo_groups", AmmoGroupLive.Index, :index
|
|
|
|
live "/ammo_groups/new", AmmoGroupLive.Index, :new
|
|
|
|
live "/ammo_groups/:id/edit", AmmoGroupLive.Index, :edit
|
2022-02-15 17:33:45 -05:00
|
|
|
live "/ammo_groups/:id/add_shot_group", AmmoGroupLive.Index, :add_shot_group
|
2022-02-15 18:20:12 -05:00
|
|
|
live "/ammo_groups/:id/move", AmmoGroupLive.Index, :move
|
2021-09-02 23:31:14 -04:00
|
|
|
|
|
|
|
live "/ammo_groups/:id", AmmoGroupLive.Show, :show
|
|
|
|
live "/ammo_groups/:id/show/edit", AmmoGroupLive.Show, :edit
|
2022-02-15 17:33:45 -05:00
|
|
|
live "/ammo_groups/:id/show/add_shot_group", AmmoGroupLive.Show, :add_shot_group
|
2022-02-15 18:20:12 -05:00
|
|
|
live "/ammo_groups/:id/show/move", AmmoGroupLive.Show, :move
|
2022-02-23 20:45:58 -05:00
|
|
|
live "/ammo_groups/:id/show/:shot_group_id/edit", AmmoGroupLive.Show, :edit_shot_group
|
2022-02-15 17:33:45 -05:00
|
|
|
|
|
|
|
live "/range", RangeLive.Index, :index
|
|
|
|
live "/range/:id/edit", RangeLive.Index, :edit
|
|
|
|
live "/range/:id/add_shot_group", RangeLive.Index, :add_shot_group
|
2021-03-11 21:12:55 -05:00
|
|
|
end
|
|
|
|
|
2021-09-10 00:24:54 -04:00
|
|
|
scope "/", CanneryWeb do
|
|
|
|
pipe_through [:browser, :require_authenticated_user, :require_admin]
|
2021-09-10 21:37:17 -04:00
|
|
|
|
2021-09-10 00:24:54 -04:00
|
|
|
live_dashboard "/dashboard", metrics: CanneryWeb.Telemetry, ecto_repos: [Cannery.Repo]
|
|
|
|
|
|
|
|
live "/invites", InviteLive.Index, :index
|
|
|
|
live "/invites/new", InviteLive.Index, :new
|
|
|
|
live "/invites/:id/edit", InviteLive.Index, :edit
|
|
|
|
end
|
|
|
|
|
2021-03-11 21:12:55 -05:00
|
|
|
scope "/", CanneryWeb do
|
|
|
|
pipe_through [:browser]
|
|
|
|
|
|
|
|
delete "/users/log_out", UserSessionController, :delete
|
|
|
|
get "/users/confirm", UserConfirmationController, :new
|
|
|
|
post "/users/confirm", UserConfirmationController, :create
|
|
|
|
get "/users/confirm/:token", UserConfirmationController, :confirm
|
|
|
|
end
|
2022-01-21 20:36:25 -05:00
|
|
|
|
|
|
|
# Enables the Swoosh mailbox preview in development.
|
|
|
|
#
|
|
|
|
# Note that preview only shows emails that were sent by the same
|
|
|
|
# node running the Phoenix server.
|
|
|
|
if Mix.env() == :dev do
|
|
|
|
scope "/dev" do
|
|
|
|
pipe_through :browser
|
|
|
|
|
|
|
|
forward "/mailbox", Plug.Swoosh.MailboxPreview
|
|
|
|
end
|
2022-02-17 21:47:37 -05:00
|
|
|
|
|
|
|
scope "/dev" do
|
|
|
|
get "/preview/:id", CanneryWeb.EmailController, :preview
|
|
|
|
end
|
2022-01-21 20:36:25 -05:00
|
|
|
end
|
2021-03-11 21:12:55 -05:00
|
|
|
end
|