|
| 1 | +//go:build js && wasm |
| 2 | +// +build js,wasm |
| 3 | + |
1 | 4 | package routes
|
2 | 5 |
|
3 | 6 | import (
|
4 | 7 | "github.com/labstack/echo/v4"
|
5 | 8 | "github.com/onsonr/motr/app/handlers"
|
6 | 9 | )
|
7 | 10 |
|
| 11 | +// RegisterRoutes registers all the routes for the application |
8 | 12 | func RegisterRoutes(e *echo.Echo) {
|
9 | 13 | // Authorization Routes
|
10 |
| - e.GET("/authorize", handlers.ViewAuthorizeInitial) |
11 |
| - e.POST("/authorize/:service/grant", handlers.HandleAuthorizeGrant) |
12 |
| - e.POST("/authorize/:service/deny", handlers.HandleAuthorizeDeny) |
| 14 | + e.GET("/authorize", handlers.InitialAuthorizeView) |
| 15 | + e.POST("/authorize/:service", handlers.HandleAuthorizationSubmit) |
13 | 16 |
|
14 | 17 | // Login Routes
|
15 |
| - e.GET("/login", handlers.ViewLoginInitial) |
16 |
| - e.GET("/login/:handle", handlers.ViewLoginUser) |
17 |
| - e.POST("/login/:handle/submit", handlers.HandleLoginSubmit) |
| 18 | + e.GET("/login", handlers.InitialLoginView) |
| 19 | + e.GET("/login/:handle", handlers.LoginUserView) |
| 20 | + e.POST("/login/:handle/submit", handlers.HandleAssertionSubmit) |
18 | 21 |
|
19 | 22 | // Register Routes
|
20 |
| - e.GET("/register", handlers.ViewRegisterInitial) |
21 |
| - e.GET("/register/:handle", handlers.ViewRegisterUser) |
22 |
| - e.POST("/register/:handle/submit", handlers.HandleRegisterSubmit) |
23 |
| - e.GET("/register/:handle/success", handlers.ViewMintedVaultSuccess) |
| 23 | + e.GET("/register", handlers.InitialRegistrationView) |
| 24 | + e.GET("/register/:handle", handlers.RegisterUserView) |
| 25 | + e.POST("/register/:handle/submit", handlers.HandleAttestationSubmit) |
| 26 | + e.GET("/register/:handle/success", handlers.ShowMintSuccess) |
| 27 | +} |
| 28 | + |
| 29 | +// NewAuthorizeGroup creates a new group for the Authorize route |
| 30 | +func NewAuthorizeGroup(g *echo.Group) { |
| 31 | + g.GET("/", handlers.InitialAuthorizeView) |
| 32 | + g.POST("/:service", handlers.HandleAuthorizationSubmit) |
| 33 | +} |
| 34 | + |
| 35 | +// NewLoginGroup creates a new group for the Login route |
| 36 | +func NewLoginGroup(g *echo.Group) { |
| 37 | + g.GET("/", handlers.InitialAuthorizeView) |
| 38 | + g.POST("/:service", handlers.HandleAuthorizationSubmit) |
| 39 | +} |
| 40 | + |
| 41 | +// NewRegisterGroup creates a new group for the Register route |
| 42 | +func NewRegisterGroup(g *echo.Group) { |
| 43 | + g.GET("/", handlers.InitialRegistrationView) |
| 44 | + g.POST("/:handle", handlers.GetRegistrationOptions) |
| 45 | + g.GET("/:handle", handlers.RegisterUserView) |
| 46 | + g.POST("/:handle/submit", handlers.HandleAttestationSubmit) |
| 47 | + g.GET("/:handle/success", handlers.ShowMintSuccess) |
| 48 | +} |
| 49 | + |
| 50 | +// NewSearchGroup creates a new group for the Search route |
| 51 | +func NewSearchGroup(g *echo.Group) { |
| 52 | + g.GET("/", handlers.InitialRegistrationView) |
| 53 | + g.POST("/:handle", handlers.GetRegistrationOptions) |
| 54 | + g.GET("/:handle", handlers.RegisterUserView) |
| 55 | + g.POST("/:handle/submit", handlers.HandleAttestationSubmit) |
| 56 | + g.GET("/:handle/success", handlers.ShowMintSuccess) |
| 57 | +} |
| 58 | + |
| 59 | +// NewWalletGroup creates a new group for the Wallet route |
| 60 | +func NewWalletGroup(g *echo.Group) { |
| 61 | + g.GET("/", handlers.InitialRegistrationView) |
| 62 | + g.POST("/:handle", handlers.GetRegistrationOptions) |
| 63 | + g.GET("/:handle", handlers.RegisterUserView) |
| 64 | + g.POST("/:handle/submit", handlers.HandleAttestationSubmit) |
| 65 | + g.GET("/:handle/success", handlers.ShowMintSuccess) |
24 | 66 | }
|
0 commit comments