Skip to content

Commit 5be47de

Browse files
author
Prad N
committed
refactor: organize authentication blocks
1 parent b4c5da0 commit 5be47de

11 files changed

+32
-18
lines changed

β€Žapp/blocks/authorize/models.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package auth
1+
package authorize
22

33
type PermissionRule struct {
44
Capability string

β€Žapp/blocks/authorize/views.templ

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package auth
1+
package authorize
22

33
templ View() {
44
<html>

β€Žapp/blocks/authorize/views_templ.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žapp/blocks/login/components.templ

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package claim
1+
package login
22

33
templ View() {
44
<html>

β€Žapp/blocks/login/components_templ.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žapp/blocks/login/models.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package claim
1+
package login
22

33
type LoginOptions struct {
44
Name string
File renamed without changes.

β€Žapp/blocks/register/models.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package register

β€Žapp/handlers/authorize_handler.go

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
package handlers
22

3-
import "github.com/labstack/echo/v4"
3+
import (
4+
"github.com/labstack/echo/v4"
5+
"github.com/onsonr/motr/app/blocks/authorize"
6+
"github.com/onsonr/motr/pkg/render"
7+
)
48

59
// ╔══════════════════════╗
610
// β•‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β•‘
@@ -22,12 +26,10 @@ import "github.com/labstack/echo/v4"
2226

2327
// InitialAuthorizeView renders the login page with default state
2428
func InitialAuthorizeView(c echo.Context) error {
25-
// TODO: Implement
26-
return nil
29+
return render.EchoTempl(c, authorize.View())
2730
}
2831

2932
// HandleAuthorizeInitial is the api handler which returns CredentialAssertionOptions
3033
func HandleAuthorizationSubmit(c echo.Context) error {
31-
// TODO: Implement
3234
return nil
3335
}

β€Žapp/handlers/login_handler.go

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
package handlers
22

3-
import "github.com/labstack/echo/v4"
3+
import (
4+
"github.com/labstack/echo/v4"
5+
"github.com/onsonr/motr/app/blocks/login"
6+
"github.com/onsonr/motr/pkg/render"
7+
)
48

59
// ╔══════════════════════╗
610
// β•‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β•‘
@@ -22,8 +26,7 @@ import "github.com/labstack/echo/v4"
2226

2327
// InitialLoginView renders the login page with default state
2428
func InitialLoginView(c echo.Context) error {
25-
// TODO: Implement
26-
return nil
29+
return render.EchoTempl(c, login.View())
2730
}
2831

2932
// GetLoginOptions returns the allowed Credentials and the CredentialAssertionOptions
@@ -34,8 +37,7 @@ func GetLoginOptions(c echo.Context) error {
3437

3538
// LoginUserView renders the login page with the user's information
3639
func LoginUserView(c echo.Context) error {
37-
// TODO: Implement
38-
return nil
40+
return render.EchoTempl(c, login.View())
3941
}
4042

4143
// HandleAssertionSubmit is the api handler which receives the user's CredentialAssertionResponse

β€Žapp/handlers/register_handler.go

+12-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
package handlers
22

3-
import "github.com/labstack/echo/v4"
3+
import (
4+
"github.com/labstack/echo/v4"
5+
"github.com/onsonr/motr/app/blocks/register"
6+
"github.com/onsonr/motr/pkg/render"
7+
)
48

59
// ╔══════════════════════╗
610
// ║░┏━━━━━━━┓░░░░░░░░░░░░║
@@ -22,7 +26,7 @@ import "github.com/labstack/echo/v4"
2226

2327
// InitialRegistrationView renders the register page with default state
2428
func InitialRegistrationView(c echo.Context) error {
25-
return nil
29+
return render.EchoTempl(c, register.InitialView())
2630
}
2731

2832
// HandleRegisterInitial is the api handler which returns CredentialAssertionOptions
@@ -32,10 +36,15 @@ func GetRegistrationOptions(c echo.Context) error {
3236

3337
// RegisterUserView renders the register page with the user's information
3438
func RegisterUserView(c echo.Context) error {
35-
return nil
39+
return render.EchoTempl(c, register.FormView())
3640
}
3741

3842
// HandleAttestationSubmit is the api handler which receives the user's CredentialAssertionResponse
3943
func HandleAttestationSubmit(c echo.Context) error {
4044
return nil
4145
}
46+
47+
// ShowRegisterSuccess renders a Modal with the user's new Vault information
48+
func ShowRegisterSuccess(c echo.Context) error {
49+
return nil
50+
}

0 commit comments

Comments
Β (0)