2021-03-05 19:23:32 -05:00
|
|
|
defmodule Shift73kWeb.Router do
|
|
|
|
use Shift73kWeb, :router
|
|
|
|
import Shift73kWeb.UserAuth
|
|
|
|
alias Shift73kWeb.EnsureRolePlug
|
2022-08-14 09:14:42 -04:00
|
|
|
alias Shift73kWeb.EnsureUserExistPlug
|
|
|
|
alias Shift73kWeb.EnsureAllowRegistrationPlug
|
2021-02-24 07:49:39 -05:00
|
|
|
|
|
|
|
pipeline :browser do
|
2022-08-14 09:14:42 -04:00
|
|
|
plug :accepts, ["html"]
|
|
|
|
plug :fetch_session
|
|
|
|
plug :fetch_live_flash
|
|
|
|
plug :put_root_layout, {Shift73kWeb.LayoutView, :root}
|
|
|
|
plug :protect_from_forgery
|
|
|
|
plug :put_secure_browser_headers
|
|
|
|
plug :fetch_current_user
|
2021-02-24 07:49:39 -05:00
|
|
|
end
|
|
|
|
|
2022-08-14 09:14:42 -04:00
|
|
|
pipeline :ensure_role_user do
|
|
|
|
plug EnsureRolePlug, [:admin, :manager, :user]
|
2021-03-01 13:42:26 -05:00
|
|
|
end
|
|
|
|
|
2022-08-14 09:14:42 -04:00
|
|
|
pipeline :ensure_user_exist do
|
|
|
|
plug EnsureUserExistPlug
|
2021-02-24 07:49:39 -05:00
|
|
|
end
|
|
|
|
|
2022-08-14 09:14:42 -04:00
|
|
|
pipeline :ensure_allow_registration do
|
|
|
|
plug EnsureAllowRegistrationPlug
|
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :ensure_role_manager do
|
|
|
|
plug EnsureRolePlug, [:admin, :manager]
|
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :ensure_role_admin do
|
|
|
|
plug EnsureRolePlug, :admin
|
2021-02-24 07:49:39 -05:00
|
|
|
end
|
|
|
|
|
2022-08-13 06:39:14 -04: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
|
2021-03-01 13:42:26 -05:00
|
|
|
|
2022-08-13 06:39:14 -04:00
|
|
|
forward "/mailbox", Plug.Swoosh.MailboxPreview
|
|
|
|
end
|
2021-03-01 13:42:26 -05:00
|
|
|
end
|
|
|
|
|
2022-08-13 06:39:14 -04:00
|
|
|
scope "/", Shift73kWeb do
|
2022-08-14 09:14:42 -04:00
|
|
|
pipe_through([:browser, :ensure_user_exist])
|
|
|
|
|
|
|
|
get "/", Redirector, to: "/assign"
|
|
|
|
end
|
|
|
|
|
|
|
|
scope "/", Shift73kWeb do
|
|
|
|
pipe_through [:browser, :redirect_if_user_is_authenticated, :ensure_allow_registration]
|
2021-02-24 07:49:39 -05:00
|
|
|
|
2022-08-14 09:14:42 -04:00
|
|
|
get "/users/register", UserRegistrationController, :new
|
2021-02-24 07:49:39 -05:00
|
|
|
end
|
|
|
|
|
2021-03-05 19:23:32 -05:00
|
|
|
scope "/", Shift73kWeb do
|
2022-08-14 09:14:42 -04:00
|
|
|
pipe_through [:browser, :redirect_if_user_is_authenticated, :ensure_user_exist]
|
2021-02-24 07:49:39 -05:00
|
|
|
|
2021-03-23 14:09:56 -04:00
|
|
|
# session routes, irrelevant if user is authenticated
|
2022-08-14 09:14:42 -04:00
|
|
|
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
|
2021-02-24 07:49:39 -05:00
|
|
|
end
|
|
|
|
|
2021-03-05 19:23:32 -05:00
|
|
|
scope "/", Shift73kWeb do
|
2022-08-14 09:14:42 -04:00
|
|
|
pipe_through [:browser, :require_authenticated_user]
|
2021-02-24 07:49:39 -05:00
|
|
|
|
2021-03-23 14:09:56 -04:00
|
|
|
# user settings (change email, password, calendar week start, etc)
|
2022-08-14 09:14:42 -04:00
|
|
|
live "/users/settings", UserLive.Settings, :edit
|
2021-03-01 13:42:26 -05:00
|
|
|
|
2021-03-23 14:09:56 -04:00
|
|
|
# confirm email by token
|
2022-08-14 09:14:42 -04:00
|
|
|
get "/users/settings/confirm_email/:token", UserSettingsController, :confirm_email
|
2021-02-24 07:49:39 -05:00
|
|
|
end
|
|
|
|
|
2021-03-05 19:23:32 -05:00
|
|
|
scope "/", Shift73kWeb do
|
2022-08-14 09:14:42 -04:00
|
|
|
pipe_through [:browser, :ensure_user_exist]
|
2021-02-24 07:49:39 -05:00
|
|
|
|
2021-03-23 14:09:56 -04:00
|
|
|
# session paths
|
2022-08-14 09:14:42 -04:00
|
|
|
delete "/users/log_out", UserSessionController, :delete
|
|
|
|
get "/users/force_logout", UserSessionController, :force_logout
|
|
|
|
get "/users/confirm", UserConfirmationController, :new
|
|
|
|
post "/users/confirm", UserConfirmationController, :create
|
|
|
|
get "/users/confirm/:token", UserConfirmationController, :confirm
|
2021-03-23 14:09:56 -04:00
|
|
|
|
|
|
|
# ics/ical route for user's shifts
|
2022-08-14 09:14:42 -04:00
|
|
|
get "/ics/:slug", UserShiftsIcsController, :index
|
2021-02-24 07:49:39 -05:00
|
|
|
end
|
|
|
|
|
2021-03-06 13:48:13 -05:00
|
|
|
scope "/", Shift73kWeb do
|
2022-08-14 09:14:42 -04:00
|
|
|
pipe_through [:browser, :require_authenticated_user, :ensure_role_user]
|
2021-03-06 13:48:13 -05:00
|
|
|
|
2021-03-11 17:16:11 -05:00
|
|
|
live "/templates", ShiftTemplateLive.Index, :index
|
|
|
|
live "/templates/new", ShiftTemplateLive.Index, :new
|
|
|
|
live "/templates/:id/edit", ShiftTemplateLive.Index, :edit
|
|
|
|
live "/templates/:id/clone", ShiftTemplateLive.Index, :clone
|
|
|
|
|
2021-03-12 12:47:06 -05:00
|
|
|
live "/assign", ShiftAssignLive.Index, :index
|
|
|
|
|
2021-03-11 17:16:11 -05:00
|
|
|
live "/shifts", ShiftLive.Index, :index
|
2021-03-23 11:54:49 -04:00
|
|
|
|
|
|
|
get "/csv", UserShiftsCsvController, :new
|
|
|
|
post "/csv", UserShiftsCsvController, :export
|
2021-03-24 19:35:49 -04:00
|
|
|
|
|
|
|
live "/import", ShiftImportLive.Index, :index
|
2021-03-06 13:48:13 -05:00
|
|
|
end
|
2021-02-24 07:49:39 -05:00
|
|
|
|
2021-03-05 22:37:52 -05:00
|
|
|
# scope "/", Shift73kWeb do
|
2022-08-14 09:14:42 -04:00
|
|
|
# pipe_through([:browser, :require_authenticated_user, :ensure_role_admin])
|
2021-03-05 22:37:52 -05:00
|
|
|
# end
|
2021-03-04 22:03:27 -05:00
|
|
|
|
|
|
|
# Users Management
|
2021-03-05 19:23:32 -05:00
|
|
|
scope "/users", Shift73kWeb do
|
2022-08-14 09:14:42 -04:00
|
|
|
pipe_through [:browser, :require_authenticated_user, :ensure_role_manager, :require_email_confirmed]
|
2021-03-04 22:03:27 -05:00
|
|
|
|
2022-08-14 09:14:42 -04:00
|
|
|
live "/", UserManagementLive.Index, :index
|
|
|
|
live "/new", UserManagementLive.Index, :new
|
|
|
|
live "/edit/:id", UserManagementLive.Index, :edit
|
2021-03-04 22:03:27 -05:00
|
|
|
# resources "/", UserManagementController, only: [:new, :create, :edit, :update]
|
|
|
|
end
|
2021-02-24 07:49:39 -05:00
|
|
|
end
|