aprs.me/lib/aprsme_web/router.ex
Graham McIntire 0f2195ef9d
Some checks failed
Build and Push / Build and Push Docker Image (push) Failing after 2s
security: CSP nonces, RemoteIp CIDR gating, rate limiting, NetworkPolicies, deadlock fixes
- Content-Security-Policy: nonce-based per-request plug replacing unsafe-inline scripts
- RemoteIp: CIDR-based trust gating via InetCidr, skips forwarded headers from untrusted peers
- Rate limiting: auth pipeline (20/min), LiveView event handlers, existing mobile channel limits
- NetworkPolicy: 4 k8s policies (web ingress, cluster, metrics, egress) for least-privilege networking
- PartitionManager: deadlock retry with exponential backoff in drop_partition
- Tests: reduced parallelism (max_cases 4), packets_test async:false to prevent trigger contention
- k8s: APRS_PASSWORD -> APRS_PASSCODE secretRef, vendor/aprs submodule hardened
2026-07-26 14:04:56 -05:00

167 lines
5.3 KiB
Elixir

defmodule AprsmeWeb.Router do
use AprsmeWeb, :router
use ErrorTracker.Web, :router
import AprsmeWeb.UserAuth
import Phoenix.LiveDashboard.Router
alias AprsmeWeb.Plugs.ContentSecurityPolicy
alias AprsmeWeb.Plugs.IPGeolocation
alias AprsmeWeb.Plugs.RateLimiter
@doc false
def regular_pages_session(conn) do
%{"ip_geolocation" => Plug.Conn.get_session(conn, :ip_geolocation)}
end
pipeline :browser do
plug :accepts, ["html"]
plug :fetch_session
plug :fetch_live_flash
plug :put_root_layout, {AprsmeWeb.Layouts, :root}
plug :protect_from_forgery
plug :put_secure_browser_headers
plug ContentSecurityPolicy
plug :fetch_current_user
plug AprsmeWeb.Plugs.SetLocale
plug IPGeolocation
plug RateLimiter, scale: 60_000, limit: 200
plug AprsmeWeb.Plugs.AgentDiscoveryLinks
end
pipeline :public_api do
plug :accepts, ["json"]
plug RateLimiter, scale: 60_000, limit: 100
end
pipeline :accepts_json do
plug :accepts, ["json"]
end
pipeline :api do
plug :accepts, ["json"]
plug RateLimiter, scale: 60_000, limit: 100
plug AprsmeWeb.Plugs.ApiCSRF
end
# Stricter rate limiting for authentication-sensitive routes
pipeline :auth do
plug RateLimiter, scale: 60_000, limit: 20, prefix: "auth_rate_limit"
end
scope "/", AprsmeWeb do
pipe_through [:browser, :require_authenticated_user, :require_admin_user]
live_dashboard "/dashboard", metrics: AprsmeWeb.Telemetry
error_tracker_dashboard("/errors")
end
scope "/", AprsmeWeb do
pipe_through [:browser, :require_authenticated_user, :require_admin_user]
live_session :require_admin_user,
on_mount: [{AprsmeWeb.UserAuth, :ensure_admin}, {AprsmeWeb.LocaleHook, :set_locale}] do
live "/badpackets", BadPacketsLive.Index, :index
end
end
scope "/", AprsmeWeb do
pipe_through [:browser]
delete "/users/log_out", UserSessionController, :delete
live_session :current_user,
on_mount: [{AprsmeWeb.UserAuth, :mount_current_user}, {AprsmeWeb.LocaleHook, :set_locale}] do
live "/users/confirm/:token", UserConfirmationLive, :edit
live "/users/confirm", UserConfirmationInstructionsLive, :new
end
end
# Health/readiness routes — no rate limiting to avoid false K8s probe failures
scope "/", AprsmeWeb do
pipe_through :accepts_json
get "/ready", PageController, :ready
get "/status.json", PageController, :status_json
end
# Prometheus metrics endpoint — internal-only, scraped by the cluster's
# prometheus via the kube-apiserver pod proxy. Not exposed via Ingress.
scope "/metrics" do
pipe_through [:public_api]
forward "/", PromEx.Plug, prom_ex_module: Aprsme.PromEx
end
# Agent/crawler discovery endpoints
scope "/", AprsmeWeb do
get "/sitemap.xml", PageController, :sitemap
get "/.well-known/api-catalog", PageController, :api_catalog
end
## Authentication routes
scope "/", AprsmeWeb do
pipe_through [:browser, :auth, :redirect_if_user_is_authenticated]
live_session :redirect_if_user_is_authenticated,
on_mount: [{AprsmeWeb.UserAuth, :redirect_if_user_is_authenticated}, {AprsmeWeb.LocaleHook, :set_locale}] do
live "/users/register", UserRegistrationLive, :new
live "/users/log_in", UserLoginLive, :new
live "/users/reset_password", UserForgotPasswordLive, :new
live "/users/reset_password/:token", UserResetPasswordLive, :edit
end
post "/users/log_in", UserSessionController, :create
end
scope "/", AprsmeWeb do
pipe_through [:browser, :require_authenticated_user]
live_session :require_authenticated_user,
on_mount: [{AprsmeWeb.UserAuth, :ensure_authenticated}, {AprsmeWeb.LocaleHook, :set_locale}] do
live "/users/settings", UserSettingsLive, :edit
live "/users/settings/confirm_email/:token", UserSettingsLive, :confirm_email
end
end
scope "/", AprsmeWeb do
pipe_through :browser
live_session :regular_pages,
session: {__MODULE__, :regular_pages_session, []},
on_mount: [{AprsmeWeb.UserAuth, :mount_current_user}, {AprsmeWeb.LocaleHook, :set_locale}] do
live "/status", StatusLive.Index, :index
live "/packets", PacketsLive.Index, :index
live "/packets/:callsign", PacketsLive.CallsignView, :index
live "/weather/:callsign", WeatherLive.CallsignView, :index
live "/about", AboutLive, :index
live "/api", ApiDocsLive, :index
live "/info/:callsign", InfoLive.Show, :show
live "/", MapLive.Index, :index
live "/:callsign", MapLive.Index, :index
end
end
# API v1 routes
scope "/api/v1", AprsmeWeb.Api.V1, as: :api_v1 do
pipe_through :api
get "/callsign/:callsign", CallsignController, :show
get "/weather/nearby", WeatherController, :nearby
end
# Enable LiveDashboard and Swoosh mailbox preview in development
if Application.compile_env(:aprsme, :dev_routes) do
# If you want to use the LiveDashboard in production, you should put
# it behind authentication and allow only admins to access it.
# If your application does not have an admins-only section yet,
# you can use Plug.BasicAuth to set up some basic authentication
# as long as you are also using SSL (which you should anyway).
scope "/dev" do
pipe_through :browser
forward "/mailbox", Plug.Swoosh.MailboxPreview
end
end
end