2021-03-05 19:23:32 -05:00
|
|
|
defmodule Shift73kWeb.Router do
|
|
|
|
use Shift73kWeb, :router
|
|
|
|
import Shift73kWeb.UserAuth
|
|
|
|
alias Shift73kWeb.EnsureRolePlug
|
2021-02-24 07:49:39 -05:00
|
|
|
|
|
|
|
pipeline :browser do
|
|
|
|
plug(:accepts, ["html"])
|
|
|
|
plug(:fetch_session)
|
|
|
|
plug(:fetch_live_flash)
|
2021-03-05 19:23:32 -05:00
|
|
|
plug(:put_root_layout, {Shift73kWeb.LayoutView, :root})
|
2021-02-24 07:49:39 -05:00
|
|
|
plug(:protect_from_forgery)
|
|
|
|
plug(:put_secure_browser_headers)
|
|
|
|
plug(:fetch_current_user)
|
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :user do
|
2021-03-01 13:42:26 -05:00
|
|
|
plug(EnsureRolePlug, [:admin, :manager, :user])
|
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :manager do
|
|
|
|
plug(EnsureRolePlug, [:admin, :manager])
|
2021-02-24 07:49:39 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :admin do
|
|
|
|
plug(EnsureRolePlug, :admin)
|
|
|
|
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
|
|
|
|
pipe_through([:browser])
|
2021-02-24 07:49:39 -05:00
|
|
|
|
2022-08-13 06:39:14 -04:00
|
|
|
get("/", Redirector, to: "/assign")
|
2021-02-24 07:49:39 -05:00
|
|
|
end
|
|
|
|
|
2021-03-05 19:23:32 -05:00
|
|
|
scope "/", Shift73kWeb do
|
2021-02-24 07:49:39 -05:00
|
|
|
pipe_through([:browser, :redirect_if_user_is_authenticated])
|
|
|
|
|
2021-03-23 14:09:56 -04:00
|
|
|
# session routes, irrelevant if user is authenticated
|
2021-02-24 07:49:39 -05:00
|
|
|
get("/users/register", UserRegistrationController, :new)
|
|
|
|
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)
|
|
|
|
end
|
|
|
|
|
2021-03-05 19:23:32 -05:00
|
|
|
scope "/", Shift73kWeb do
|
2021-02-24 07:49:39 -05:00
|
|
|
pipe_through([:browser, :require_authenticated_user])
|
|
|
|
|
2021-03-23 14:09:56 -04:00
|
|
|
# user settings (change email, password, calendar week start, etc)
|
2021-03-05 19:23:32 -05: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
|
2021-02-24 07:49:39 -05:00
|
|
|
get("/users/settings/confirm_email/:token", UserSettingsController, :confirm_email)
|
|
|
|
end
|
|
|
|
|
2021-03-05 19:23:32 -05:00
|
|
|
scope "/", Shift73kWeb do
|
2021-02-24 07:49:39 -05:00
|
|
|
pipe_through([:browser])
|
|
|
|
|
2021-03-23 14:09:56 -04:00
|
|
|
# session paths
|
2021-02-24 07:49:39 -05:00
|
|
|
delete("/users/log_out", UserSessionController, :delete)
|
2021-03-01 13:42:26 -05:00
|
|
|
get("/users/force_logout", UserSessionController, :force_logout)
|
2021-02-24 07:49:39 -05:00
|
|
|
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
|
|
|
|
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
|
|
|
|
pipe_through([:browser, :require_authenticated_user, :user])
|
|
|
|
|
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
|
|
|
|
# pipe_through([:browser, :require_authenticated_user, :admin])
|
|
|
|
# end
|
2021-03-04 22:03:27 -05:00
|
|
|
|
|
|
|
# Users Management
|
2021-03-05 19:23:32 -05:00
|
|
|
scope "/users", Shift73kWeb do
|
|
|
|
pipe_through([:browser, :require_authenticated_user, :manager, :require_email_confirmed])
|
2021-03-04 22:03:27 -05:00
|
|
|
|
|
|
|
live("/", UserManagementLive.Index, :index)
|
|
|
|
live("/new", UserManagementLive.Index, :new)
|
|
|
|
live("/edit/:id", UserManagementLive.Index, :edit)
|
|
|
|
# resources "/", UserManagementController, only: [:new, :create, :edit, :update]
|
|
|
|
end
|
2021-02-24 07:49:39 -05:00
|
|
|
end
|