Skip to content

Commit 8052e0e

Browse files
author
Prad N
committed
feat: introduce error handling and view rendering
1 parent a3c4f4d commit 8052e0e

20 files changed

+270
-38
lines changed

app/handlers/authorize_handler.go

+1-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package handlers
22

33
import "github.com/labstack/echo/v4"
44

5-
//
65
// ╔══════════════════════╗
76
// ║░░░░░░░░░░░░░░░░░░░░░░║
87
// ║░░░░░░░░░░░░░░░░░░░░░░║
@@ -11,10 +10,10 @@ import "github.com/labstack/echo/v4"
1110
// ║░░░░`───'░░░░`────'░░░║
1211
// ║░░░░░░░░░░░░░░░░░░░░░░║
1312
// ║░░░░░░░░░░░░░░░░░░░░░░║
13+
// ║░░░░░░░░░░░░░░░░░░░░░░║
1414
// ║░░┌────────────────┐░░║
1515
// ║░░│ Grant │░░║
1616
// ║░░└────────────────┘░░║
17-
// ║░░░░░░░░░░░░░░░░░░░░░░║
1817
// ║░░┌────────────────┐░░║
1918
// ║░░│ Deny │░░║
2019
// ║░░└────────────────┘░░║
@@ -38,9 +37,3 @@ func HandleAuthorizeDeny(c echo.Context) error {
3837
// TODO: Implement
3938
return nil
4039
}
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/error_handler.go

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package handlers
2+
3+
import "github.com/labstack/echo/v4"
4+
5+
func ErrorManager() echo.HTTPErrorHandler {
6+
return func(err error, c echo.Context) {
7+
if he, ok := err.(*echo.HTTPError); ok {
8+
c.Logger().Errorf("Error: %v", he.Message)
9+
}
10+
}
11+
}
12+
13+
func RenderErrorView(c echo.Context, err error) error {
14+
return nil
15+
}

app/handlers/login_handler.go

+9-16
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,21 @@ package handlers
22

33
import "github.com/labstack/echo/v4"
44

5-
//
65
// ╔══════════════════════╗
76
// ║░░░░░░░░░░░░░░░░░░░░░░║
8-
// ║░░░░░░░███████░░░░░░░░║
9-
// ║░░░░░░█████████░░░░░░░║
10-
// ║░░░░░░█████████░░░░░░░║
11-
// ║░░░░░░░███████░░░░░░░░║
12-
// ║░░░░░░░░█████░░░░░░░░░║
7+
// ║░┏━━━━━━━┓░░Handle░░░░║
8+
// ║░███ ┃░┌───────┐░░║
9+
// ║░█████ ┃░└───────┘░░║
10+
// ║░┃ ███ ┃░░░░░░░░░░░░║
11+
// ║░┗━━━━━━━┛░░░░░░░░░░░░║
1312
// ║░░░░░░░░░░░░░░░░░░░░░░║
14-
// ║░░Handle/Address░░░░░░║
13+
// ║░░Short Bio░░░░░░░░░░░║
1514
// ║░░┌────────────────┐░░║
15+
// ║░░│ │░░║
16+
// ║░░│ │░░║
1617
// ║░░└────────────────┘░░║
1718
// ║░░░░░░░░░░░░░░░░░░░░░░║
18-
// ║░░┌────────────────┐░░║
19-
// ║░░│ Login │░░║
20-
// ║░░└────────────────┘░░║
19+
// ║░░░░ New Passkey ░░░░░║
2120
// ║░░░░░░░░░░░░░░░░░░░░░░║
2221
// ╚══════════════════════╝
2322

@@ -44,9 +43,3 @@ func HandleLoginSubmit(c echo.Context) error {
4443
// TODO: Implement
4544
return nil
4645
}
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/redirect_handler.go

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package handlers
2+
3+
import "github.com/labstack/echo/v4"
4+
5+
// RedirectServiceCallback handles the authentication state and redirectes to the service's Callback URL
6+
func RedirectServiceCallback(c echo.Context) error {
7+
// TODO: Implement
8+
return nil
9+
}
10+
11+
// RedirectUserProfile handles the authentication statte and redirects to the user's profile
12+
func RedirectUserProfile(c echo.Context) error {
13+
// TODO: Implement
14+
return nil
15+
}
16+
17+
// ViewMintedVaultSuccess renders the register page with the user's information
18+
func ViewMintedVaultSuccess(c echo.Context) error {
19+
return nil
20+
}

app/handlers/register_handler.go

+5-11
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,18 @@ package handlers
22

33
import "github.com/labstack/echo/v4"
44

5-
//
65
// ╔══════════════════════╗
7-
// ║░░░░░░░░░░░░░░░░░░░░░░║
8-
// ║░░█████░░Handle░░░░░░░║
9-
// ║░███████░┌─────────┐░░║
10-
// ║░░█████░░└─────────┘░░║
6+
// ║░┏━━━━━━━┓░░░░░░░░░░░░║
7+
// ║░┃ ███ ┃░░Handle░░░░║
8+
// ║░┃ █████ ┃░┌───────┐░░║
9+
// ║░┃ ███ ┃░└───────┘░░║
10+
// ║░┗━━━━━━━┛░░░░░░░░░░░░║
1111
// ║░░░░░░░░░░░░░░░░░░░░░░║
1212
// ║░░Short Bio░░░░░░░░░░░║
1313
// ║░░┌────────────────┐░░║
1414
// ║░░│ │░░║
1515
// ║░░│ │░░║
1616
// ║░░└────────────────┘░░║
17-
// ║░░░░░░░░░░░░░░░░░░░░░░║
1817
// ║░░┌────────────────┐░░║
1918
// ║░░│ New Passkey │░░║
2019
// ║░░└────────────────┘░░║
@@ -40,8 +39,3 @@ func ViewRegisterUser(c echo.Context) error {
4039
func HandleRegisterSubmit(c echo.Context) error {
4140
return nil
4241
}
43-
44-
// ViewMintedVaultSuccess renders the register page with the user's information
45-
func ViewMintedVaultSuccess(c echo.Context) error {
46-
return nil
47-
}

app/views/auth/model.go

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

app/views/auth/view.templ

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package auth
2+
3+
templ View() {
4+
<html>
5+
<head>
6+
<title>Sonr</title>
7+
</head>
8+
<body>
9+
<h1>Auth View</h1>
10+
</body>
11+
</html>
12+
}

app/views/auth/view_templ.go

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

app/views/claim/model.go

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

app/views/claim/view.templ

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package claim
2+
3+
templ View() {
4+
<html>
5+
<head>
6+
<title>Sonr</title>
7+
</head>
8+
<body>
9+
<h1>Auth View</h1>
10+
</body>
11+
</html>
12+
}

app/views/claim/view_templ.go

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

app/views/search/model.go

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

app/views/search/view.templ

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package search
2+
3+
templ View() {
4+
<html>
5+
<head>
6+
<title>Sonr</title>
7+
</head>
8+
<body>
9+
<h1>Auth View</h1>
10+
</body>
11+
</html>
12+
}

app/views/search/view_templ.go

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

app/views/wallet/model.go

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

app/views/wallet/view.templ

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package wallet
2+
3+
templ View() {
4+
<html>
5+
<head>
6+
<title>Sonr</title>
7+
</head>
8+
<body>
9+
<h1>Auth View</h1>
10+
</body>
11+
</html>
12+
}

app/views/wallet/view_templ.go

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

go.mod

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ module github.com/onsonr/motr
33
go 1.23.4
44

55
require (
6+
github.com/a-h/templ v0.3.857
67
github.com/labstack/echo/v4 v4.13.3
78
github.com/ncruces/go-sqlite3 v0.21.3
89
)

go.sum

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
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=
5+
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
6+
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
37
github.com/labstack/echo/v4 v4.13.3 h1:pwhpCPrTl5qry5HRdM5FwdXnhXSLSY+WE+YQSeCaafY=
48
github.com/labstack/echo/v4 v4.13.3/go.mod h1:o90YNEeQWjDozo584l7AwhJMHN0bOC4tAfg+Xox9q5g=
59
github.com/labstack/gommon v0.4.2 h1:F8qTUNXgG1+6WQmqoUWnz8WiEU60mXVVw0P4ht1WRA0=

sqlc.yaml sink/sqlc.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
version: "2"
22
sql:
33
- engine: "sqlite"
4-
queries: "./sink/query.sql"
5-
schema: "./sink/schema.sql"
4+
queries: "./query.sql"
5+
schema: "./schema.sql"
66
gen:
77
go:
88
emit_interface: true
99
emit_json_tags: true
1010
package: "models"
11-
out: "./pkg/models"
11+
out: "../pkg/models"

0 commit comments

Comments
 (0)