@@ -5,62 +5,24 @@ package routes
5
5
6
6
import (
7
7
"github.com/labstack/echo/v4"
8
- "github.com/onsonr/motr/app/handlers"
9
8
)
10
9
11
- // RegisterRoutes registers all the routes for the application
12
- func RegisterRoutes (e * echo.Echo ) {
13
- // Authorization Routes
14
- e .GET ("/authorize" , handlers .InitialAuthorizeView )
15
- e .POST ("/authorize/:service" , handlers .HandleAuthorizationSubmit )
16
-
17
- // Login Routes
18
- e .GET ("/login" , handlers .InitialLoginView )
19
- e .GET ("/login/:handle" , handlers .LoginUserView )
20
- e .POST ("/login/:handle/submit" , handlers .HandleAssertionSubmit )
21
-
22
- // Register Routes
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 )
10
+ // Register registers all the routes for the application
11
+ func Register (e * echo.Echo ) {
12
+ // Handle Index
13
+ e .GET ("/" , indexHandler )
14
+
15
+ // Grouped Routes
16
+ setAuthorizeGroup (e .Group ("/authorize" ))
17
+ setLoginGroup (e .Group ("/login" ))
18
+ setRegisterGroup (e .Group ("/register" ))
19
+ setSearchGroup (e .Group ("/search" ))
20
+ setWalletGroup (e .Group ("/wallet" ))
27
21
}
28
22
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
- }
23
+ // indexHandler handles the root path
24
+ func indexHandler (c echo.Context ) error {
25
+ // Fetch the Motr instance information
58
26
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 )
27
+ return c .NoContent (200 )
66
28
}
0 commit comments