Skip to content

Commit 335d1f7

Browse files
author
Prad N
committed
feat: implement initial user authentication flow
1 parent 7ad5002 commit 335d1f7

11 files changed

+182
-11
lines changed

Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@ build:
1111

1212
generate:
1313
@task -t .taskfile.dist.yml gen
14+
15+
test:
16+
@task -t .taskfile.dist.yml test

app/app.go

+2-5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ package app
55
import (
66
"github.com/labstack/echo/v4"
77
echomiddleware "github.com/labstack/echo/v4/middleware"
8+
"github.com/onsonr/motr/app/routes"
89
"github.com/onsonr/motr/internal/context"
910
"github.com/onsonr/motr/pkg/models"
1011
"github.com/onsonr/motr/pkg/types"
@@ -23,7 +24,7 @@ func New(config *types.Config, dbq *models.Queries) (Vault, error) {
2324
e.Use(echomiddleware.Logger())
2425
e.Use(echomiddleware.Recover())
2526
e.Use(context.WASMMiddleware)
26-
registerRoutes(e)
27+
routes.RegisterRoutes(e)
2728
return e, nil
2829
}
2930

@@ -35,7 +36,3 @@ func handleError() echo.HTTPErrorHandler {
3536
}
3637
}
3738
}
38-
39-
// RegisterRoutes registers the Decentralized Web Node API routes.
40-
func registerRoutes(e *echo.Echo) {
41-
}

app/handlers/authorize_handler.go

+45
Original file line numberDiff line numberDiff line change
@@ -1 +1,46 @@
11
package handlers
2+
3+
import "github.com/labstack/echo/v4"
4+
5+
//
6+
// ╔══════════════════════╗
7+
// ║░░░░░░░░░░░░░░░░░░░░░░║
8+
// ║░░░░░░░░░░░░░░░░░░░░░░║
9+
// ║░░░░.───.░░░░.────.░░░║
10+
// ║░░░( SVC )─▶( User )░░║
11+
// ║░░░░`───'░░░░`────'░░░║
12+
// ║░░░░░░░░░░░░░░░░░░░░░░║
13+
// ║░░░░░░░░░░░░░░░░░░░░░░║
14+
// ║░░┌────────────────┐░░║
15+
// ║░░│ Grant │░░║
16+
// ║░░└────────────────┘░░║
17+
// ║░░░░░░░░░░░░░░░░░░░░░░║
18+
// ║░░┌────────────────┐░░║
19+
// ║░░│ Deny │░░║
20+
// ║░░└────────────────┘░░║
21+
// ║░░░░░░░░░░░░░░░░░░░░░░║
22+
// ╚══════════════════════╝
23+
24+
// ViewAuthorizeInitial renders the login page with default state
25+
func ViewAuthorizeInitial(c echo.Context) error {
26+
// TODO: Implement
27+
return nil
28+
}
29+
30+
// HandleAuthorizeInitial is the api handler which returns CredentialAssertionOptions
31+
func HandleAuthorizeGrant(c echo.Context) error {
32+
// TODO: Implement
33+
return nil
34+
}
35+
36+
// HandleAuthorizeDeny is the api handler which receives the user's CredentialAssertionResponse
37+
func HandleAuthorizeDeny(c echo.Context) error {
38+
// TODO: Implement
39+
return nil
40+
}
41+
42+
// RedirectServiceCallback handles the authentication state and redirectes to the service's Callback URL
43+
func RedirectServiceCallback(c echo.Context) error {
44+
// TODO: Implement
45+
return nil
46+
}

app/handlers/current_handler.go

-1
This file was deleted.

app/handlers/errors_handler.go

-1
This file was deleted.

app/handlers/login_handler.go

+51
Original file line numberDiff line numberDiff line change
@@ -1 +1,52 @@
11
package handlers
2+
3+
import "github.com/labstack/echo/v4"
4+
5+
//
6+
// ╔══════════════════════╗
7+
// ║░░░░░░░░░░░░░░░░░░░░░░║
8+
// ║░░░░░░░███████░░░░░░░░║
9+
// ║░░░░░░█████████░░░░░░░║
10+
// ║░░░░░░█████████░░░░░░░║
11+
// ║░░░░░░░███████░░░░░░░░║
12+
// ║░░░░░░░░█████░░░░░░░░░║
13+
// ║░░░░░░░░░░░░░░░░░░░░░░║
14+
// ║░░Handle/Address░░░░░░║
15+
// ║░░┌────────────────┐░░║
16+
// ║░░└────────────────┘░░║
17+
// ║░░░░░░░░░░░░░░░░░░░░░░║
18+
// ║░░┌────────────────┐░░║
19+
// ║░░│ Login │░░║
20+
// ║░░└────────────────┘░░║
21+
// ║░░░░░░░░░░░░░░░░░░░░░░║
22+
// ╚══════════════════════╝
23+
24+
// ViewLoginInitial renders the login page with default state
25+
func ViewLoginInitial(c echo.Context) error {
26+
// TODO: Implement
27+
return nil
28+
}
29+
30+
// HandleLoginInitial is the api handler which returns CredentialAssertionOptions
31+
func HandleLoginStart(c echo.Context) error {
32+
// TODO: Implement
33+
return nil
34+
}
35+
36+
// ViewLoginUser renders the login page with the user's information
37+
func ViewLoginUser(c echo.Context) error {
38+
// TODO: Implement
39+
return nil
40+
}
41+
42+
// HandleLoginSubmit is the api handler which receives the user's CredentialAssertionResponse
43+
func HandleLoginSubmit(c echo.Context) error {
44+
// TODO: Implement
45+
return nil
46+
}
47+
48+
// RedirectUserProfile handles the authentication statte and redirects to the user's profile
49+
func RedirectUserProfile(c echo.Context) error {
50+
// TODO: Implement
51+
return nil
52+
}

app/handlers/register_handler.go

+46
Original file line numberDiff line numberDiff line change
@@ -1 +1,47 @@
11
package handlers
2+
3+
import "github.com/labstack/echo/v4"
4+
5+
//
6+
// ╔══════════════════════╗
7+
// ║░░░░░░░░░░░░░░░░░░░░░░║
8+
// ║░░█████░░Handle░░░░░░░║
9+
// ║░███████░┌─────────┐░░║
10+
// ║░░█████░░└─────────┘░░║
11+
// ║░░░░░░░░░░░░░░░░░░░░░░║
12+
// ║░░Short Bio░░░░░░░░░░░║
13+
// ║░░┌────────────────┐░░║
14+
// ║░░│ │░░║
15+
// ║░░│ │░░║
16+
// ║░░└────────────────┘░░║
17+
// ║░░░░░░░░░░░░░░░░░░░░░░║
18+
// ║░░┌────────────────┐░░║
19+
// ║░░│ New Passkey │░░║
20+
// ║░░└────────────────┘░░║
21+
// ║░░░░░░░░░░░░░░░░░░░░░░║
22+
// ╚══════════════════════╝
23+
24+
// ViewRegisterInitial renders the register page with default state
25+
func ViewRegisterInitial(c echo.Context) error {
26+
return nil
27+
}
28+
29+
// HandleRegisterInitial is the api handler which returns CredentialAssertionOptions
30+
func HandleRegisterStart(c echo.Context) error {
31+
return nil
32+
}
33+
34+
// ViewRegisterUser renders the register page with the user's information
35+
func ViewRegisterUser(c echo.Context) error {
36+
return nil
37+
}
38+
39+
// HandleRegisterSubmit is the api handler which receives the user's CredentialAssertionResponse
40+
func HandleRegisterSubmit(c echo.Context) error {
41+
return nil
42+
}
43+
44+
// ViewMintedVaultSuccess renders the register page with the user's information
45+
func ViewMintedVaultSuccess(c echo.Context) error {
46+
return nil
47+
}
File renamed without changes.

app/routes/routes.go

+23
Original file line numberDiff line numberDiff line change
@@ -1 +1,24 @@
11
package routes
2+
3+
import (
4+
"github.com/labstack/echo/v4"
5+
"github.com/onsonr/motr/app/handlers"
6+
)
7+
8+
func RegisterRoutes(e *echo.Echo) {
9+
// Authorization Routes
10+
e.GET("/authorize", handlers.ViewAuthorizeInitial)
11+
e.POST("/authorize/:service/grant", handlers.HandleAuthorizeGrant)
12+
e.POST("/authorize/:service/deny", handlers.HandleAuthorizeDeny)
13+
14+
// Login Routes
15+
e.GET("/login", handlers.ViewLoginInitial)
16+
e.GET("/login/:handle", handlers.ViewLoginUser)
17+
e.POST("/login/:handle/submit", handlers.HandleLoginSubmit)
18+
19+
// 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)
24+
}

go.mod

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ require (
88
)
99

1010
require (
11+
github.com/a-h/templ v0.3.857 // indirect
1112
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
1213
github.com/labstack/gommon v0.4.2 // indirect
1314
github.com/mattn/go-colorable v0.1.13 // indirect
@@ -17,9 +18,9 @@ require (
1718
github.com/tetratelabs/wazero v1.8.2 // indirect
1819
github.com/valyala/bytebufferpool v1.0.0 // indirect
1920
github.com/valyala/fasttemplate v1.2.2 // indirect
20-
golang.org/x/crypto v0.31.0 // indirect
21-
golang.org/x/net v0.33.0 // indirect
22-
golang.org/x/sys v0.28.0 // indirect
23-
golang.org/x/text v0.21.0 // indirect
21+
golang.org/x/crypto v0.36.0 // indirect
22+
golang.org/x/net v0.37.0 // indirect
23+
golang.org/x/sys v0.31.0 // indirect
24+
golang.org/x/text v0.23.0 // indirect
2425
golang.org/x/time v0.8.0 // indirect
2526
)

go.sum

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
github.com/a-h/templ v0.3.857 h1:6EqcJuGZW4OL+2iZ3MD+NnIcG7nGkaQeF2Zq5kf9ZGg=
2+
github.com/a-h/templ v0.3.857/go.mod h1:qhrhAkRFubE7khxLZHsBFHfX+gWwVNKbzKeF9GlPV4M=
13
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=
24
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
35
github.com/labstack/echo/v4 v4.13.3 h1:pwhpCPrTl5qry5HRdM5FwdXnhXSLSY+WE+YQSeCaafY=
@@ -25,14 +27,19 @@ github.com/valyala/fasttemplate v1.2.2 h1:lxLXG0uE3Qnshl9QyaK6XJxMXlQZELvChBOCmQ
2527
github.com/valyala/fasttemplate v1.2.2/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ=
2628
golang.org/x/crypto v0.31.0 h1:ihbySMvVjLAeSH1IbfcRTkD/iNscyz8rGzjF/E5hV6U=
2729
golang.org/x/crypto v0.31.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
30+
golang.org/x/crypto v0.36.0/go.mod h1:Y4J0ReaxCR1IMaabaSMugxJES1EpwhBHhv2bDHklZvc=
2831
golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
2932
golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
33+
golang.org/x/net v0.37.0 h1:1zLorHbz+LYj7MQlSf1+2tPIIgibq2eL5xkrGk6f+2c=
34+
golang.org/x/net v0.37.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8=
3035
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
3136
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
3237
golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA=
3338
golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
39+
golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
3440
golang.org/x/text v0.21.0 h1:zyQAAkrwaneQ066sspRyJaG9VNi/YJ1NfzcGB3hZ/qo=
3541
golang.org/x/text v0.21.0/go.mod h1:4IBbMaMmOPCJ8SecivzSH54+73PCFmPWxNTLm+vZkEQ=
42+
golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4=
3643
golang.org/x/time v0.8.0 h1:9i3RxcPv3PZnitoVGMPDKZSq1xW1gK1Xy3ArNOGZfEg=
3744
golang.org/x/time v0.8.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM=
3845
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=

0 commit comments

Comments
 (0)