2021-04-12 15:44:12 +02:00
|
|
|
defmodule MetaWeb.Router do
|
|
|
|
use MetaWeb, :router
|
2020-12-15 08:45:34 +01:00
|
|
|
|
2021-04-12 15:44:12 +02:00
|
|
|
import MetaWeb.UserAuth
|
2020-12-15 14:24:14 +01:00
|
|
|
|
2020-12-15 08:45:34 +01:00
|
|
|
pipeline :browser do
|
|
|
|
plug :accepts, ["html"]
|
|
|
|
plug :fetch_session
|
|
|
|
plug :fetch_flash
|
|
|
|
plug :protect_from_forgery
|
|
|
|
plug :put_secure_browser_headers
|
2020-12-15 14:24:14 +01:00
|
|
|
plug :fetch_current_user
|
2020-12-15 08:45:34 +01:00
|
|
|
end
|
|
|
|
|
2021-02-03 13:56:00 +01:00
|
|
|
pipeline :browser_with_forgery do
|
|
|
|
plug :accepts, ["html"]
|
|
|
|
plug :fetch_session
|
|
|
|
plug :fetch_flash
|
|
|
|
plug :put_secure_browser_headers
|
|
|
|
plug :fetch_current_user
|
|
|
|
end
|
|
|
|
|
2020-12-15 08:45:34 +01:00
|
|
|
pipeline :api do
|
|
|
|
plug :accepts, ["json"]
|
|
|
|
end
|
|
|
|
|
2020-12-23 12:51:05 +01:00
|
|
|
pipeline :plain do
|
|
|
|
plug :accepts, ["text"]
|
|
|
|
end
|
|
|
|
|
2021-04-12 15:44:12 +02:00
|
|
|
scope "/", MetaWeb do
|
2020-12-15 08:45:34 +01:00
|
|
|
pipe_through :browser
|
|
|
|
|
|
|
|
get "/", PageController, :index
|
2021-02-03 13:56:00 +01:00
|
|
|
get "/support/new", SupportController, :new
|
|
|
|
end
|
|
|
|
|
2021-04-12 15:44:12 +02:00
|
|
|
scope "/", MetaWeb do
|
2021-02-03 13:56:00 +01:00
|
|
|
pipe_through :browser_with_forgery
|
|
|
|
|
|
|
|
# The static recycled.cloud website POST this endpoint, which basically is
|
|
|
|
# Cross-Site Request Forgery (hence browser_with_forgery pipeline).
|
|
|
|
post "/support/new", SupportController, :create
|
2020-12-15 08:45:34 +01:00
|
|
|
end
|
|
|
|
|
2021-04-12 15:44:12 +02:00
|
|
|
scope "/", MetaWeb do
|
2020-12-23 12:51:05 +01:00
|
|
|
pipe_through :plain
|
|
|
|
|
|
|
|
get "/keys/:username", UserKeysController, :index
|
|
|
|
end
|
2020-12-15 14:24:14 +01:00
|
|
|
|
|
|
|
## Authentication routes
|
|
|
|
|
2021-04-12 15:44:12 +02:00
|
|
|
scope "/", MetaWeb do
|
2020-12-15 14:24:14 +01:00
|
|
|
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
|
|
|
|
|
2021-04-12 15:44:12 +02:00
|
|
|
scope "/", MetaWeb do
|
2020-12-15 14:24:14 +01:00
|
|
|
pipe_through [:browser, :require_authenticated_user]
|
|
|
|
|
|
|
|
get "/users/settings", UserSettingsController, :edit
|
|
|
|
put "/users/settings", UserSettingsController, :update
|
|
|
|
get "/users/settings/confirm_email/:token", UserSettingsController, :confirm_email
|
2020-12-23 12:51:05 +01:00
|
|
|
post "/users/settings/keys/new", UserKeysController, :new
|
|
|
|
get "/users/settings/keys/:key_id/delete", UserKeysController, :delete
|
2021-01-20 17:28:48 +01:00
|
|
|
get "/billing", BillingController, :index
|
|
|
|
post "/billing/partner/update", BillingController, :update
|
2021-04-07 17:23:48 +02:00
|
|
|
|
|
|
|
get "/hosting/vm", VirtualMachineHostingController, :index
|
2021-04-09 11:36:33 +02:00
|
|
|
get "/hosting/vm/:location/:id", VirtualMachineHostingController, :show
|
2020-12-15 14:24:14 +01:00
|
|
|
end
|
|
|
|
|
2021-04-12 15:44:12 +02:00
|
|
|
scope "/", MetaWeb do
|
2020-12-15 14:24:14 +01:00
|
|
|
pipe_through [:browser]
|
|
|
|
|
2020-12-15 15:45:43 +01:00
|
|
|
get "/users/log_out", UserSessionController, :delete
|
2020-12-15 14:24:14 +01:00
|
|
|
delete "/users/log_out", UserSessionController, :delete
|
|
|
|
get "/users/confirm", UserConfirmationController, :new
|
|
|
|
post "/users/confirm", UserConfirmationController, :create
|
|
|
|
get "/users/confirm/:token", UserConfirmationController, :confirm
|
|
|
|
end
|
2021-01-12 10:06:05 +01:00
|
|
|
|
|
|
|
# In-memory mailer for development purposes only.
|
|
|
|
# See https://hexdocs.pm/bamboo/Bamboo.SentEmailViewerPlug.html for details.
|
2021-04-12 15:44:12 +02:00
|
|
|
if Meta.env() == :dev do
|
2021-01-12 10:06:05 +01:00
|
|
|
forward "/outbox", Bamboo.SentEmailViewerPlug
|
|
|
|
end
|
2020-12-15 08:45:34 +01:00
|
|
|
end
|