Skip to content

Commit c983bd2

Browse files
author
Prad N
committed
refactor: restructure application for WASM compatibility
1 parent 4af08e2 commit c983bd2

18 files changed

+661
-340
lines changed

.taskfile.dist.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ tasks:
107107

108108
gen:sqlc:
109109
internal: true
110-
dir: sink
110+
dir: pkg/sqlite/internal
111111
sources:
112112
- pkg/sink/query.sql
113113
- pkg/sink/schema.sql

app/app.go

+39-8
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,47 @@
33
package app
44

55
import (
6+
"net/http"
7+
"strings"
8+
"syscall/js"
9+
610
"github.com/onsonr/motr/app/handlers"
711
"github.com/onsonr/motr/app/routes"
8-
"github.com/onsonr/motr/pkg/context"
9-
"github.com/onsonr/motr/pkg/models"
10-
"github.com/onsonr/motr/pkg/server"
12+
"github.com/onsonr/motr/internal/server"
13+
"github.com/onsonr/motr/internal/worker"
1114
)
1215

13-
// New returns a new Vault instance
14-
func New(config *context.Config, dbq *models.Queries) (*server.Server, error) {
15-
e := server.New(config, handlers.GlobalErrorHandler())
16-
routes.RegisterRoutes(e.Echo)
17-
return e, nil
16+
// Start returns a new Vault instance
17+
func Start(s *server.Server) func() {
18+
s.Echo.HTTPErrorHandler = handlers.GlobalErrorHandler()
19+
routes.Register(s.Echo)
20+
return serveFetch(s.Echo)
21+
}
22+
23+
// serveFetch serves HTTP requests with optimized handler management
24+
func serveFetch(handler http.Handler) func() {
25+
h := handler
26+
if h == nil {
27+
h = http.DefaultServeMux
28+
}
29+
30+
// Optimize prefix handling
31+
prefix := strings.TrimRight(worker.JSWasmHTTP.Get("path").String(), "/")
32+
if prefix != "" {
33+
mux := http.NewServeMux()
34+
mux.Handle(prefix+"/", http.StripPrefix(prefix, h))
35+
h = mux
36+
}
37+
38+
// Create request handler function
39+
cb := js.FuncOf(func(_ js.Value, args []js.Value) any {
40+
promise, resolve, reject := worker.NewPromiseOptimized()
41+
42+
go worker.HandleRequest(h, args[1], resolve, reject)
43+
44+
return promise
45+
})
46+
47+
worker.JSWasmHTTP.Call("setHandler", cb)
48+
return cb.Release
1849
}

app/handlers/index_handler.go

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
//go:build js && wasm
2-
// +build js,wasm
3-
41
package handlers
52

63
import (
@@ -54,6 +51,6 @@ func RedirectUserProfile(c echo.Context) error {
5451
}
5552

5653
// ShowMintSuccess renders a Modal with the user's new Vault information
57-
func ShowMintSuccess(c echo.Context) error {
54+
func ShowRegisterSuccess(c echo.Context) error {
5855
return nil
5956
}

app/routes/groups.go

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
//go:build js && wasm
2+
// +build js,wasm
3+
4+
package routes
5+
6+
import (
7+
"github.com/labstack/echo/v4"
8+
"github.com/onsonr/motr/app/handlers"
9+
)
10+
11+
// setAuthorizeGroup creates a new group for the Authorize route
12+
func setAuthorizeGroup(g *echo.Group) {
13+
g.GET("/", handlers.InitialAuthorizeView)
14+
g.POST("/:service", handlers.HandleAuthorizationSubmit)
15+
}
16+
17+
// setLoginGroup creates a new group for the Login route
18+
func setLoginGroup(g *echo.Group) {
19+
g.GET("/", handlers.InitialAuthorizeView)
20+
g.POST("/:service", handlers.HandleAuthorizationSubmit)
21+
}
22+
23+
// setRegisterGroup creates a new group for the Register route
24+
func setRegisterGroup(g *echo.Group) {
25+
g.GET("/", handlers.InitialRegistrationView)
26+
g.POST("/:handle", handlers.GetRegistrationOptions)
27+
g.GET("/:handle", handlers.RegisterUserView)
28+
g.POST("/:handle/submit", handlers.HandleAttestationSubmit)
29+
g.GET("/:handle/success", handlers.ShowRegisterSuccess)
30+
}
31+
32+
// setSearchGroup creates a new group for the Search route
33+
func setSearchGroup(g *echo.Group) {
34+
g.GET("/", handlers.InitialRegistrationView)
35+
g.POST("/:handle", handlers.GetRegistrationOptions)
36+
g.GET("/:handle", handlers.RegisterUserView)
37+
g.POST("/:handle/submit", handlers.HandleAttestationSubmit)
38+
g.GET("/:handle/success", handlers.ShowRegisterSuccess)
39+
}
40+
41+
// setWalletGroup creates a new group for the Wallet route
42+
func setWalletGroup(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.ShowRegisterSuccess)
48+
}

app/routes/routes.go

+15-53
Original file line numberDiff line numberDiff line change
@@ -5,62 +5,24 @@ package routes
55

66
import (
77
"github.com/labstack/echo/v4"
8-
"github.com/onsonr/motr/app/handlers"
98
)
109

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"))
2721
}
2822

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
5826

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)
6628
}
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
package context
1+
package server
2+
3+
import "github.com/labstack/echo/v4"
24

35
type Config struct {
4-
// TODO
56
MotrToken string `json:"motr_token"`
67
MotrAddress string `json:"motr_address"`
78
IpfsGatewayURL string `json:"ipfs_gateway_url"`
89
SonrAPIURL string `json:"sonr_api_url"`
910
SonrRPCURL string `json:"sonr_rpc_url"`
1011
SonrChainID string `json:"sonr_chain_id"`
1112
}
13+
14+
type RouteRegistrationFunc func(e *echo.Echo)

internal/server/server.go

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
//go:build js && wasm
2+
// +build js,wasm
3+
4+
package server
5+
6+
import (
7+
"github.com/labstack/echo/v4"
8+
"github.com/labstack/echo/v4/middleware"
9+
"github.com/onsonr/motr/pkg/models"
10+
)
11+
12+
// Server is the application server
13+
type Server struct {
14+
Echo *echo.Echo
15+
Config *Config
16+
DB *models.Queries
17+
}
18+
19+
// New returns a new server instance
20+
func New(config *Config, db *models.Queries) (*Server, error) {
21+
return &Server{
22+
DB: db,
23+
Config: config,
24+
Echo: SetupEcho(),
25+
}, nil
26+
}
27+
28+
// SetupEcho sets up the echo server
29+
func SetupEcho() *echo.Echo {
30+
e := echo.New()
31+
e.IPExtractor = echo.ExtractIPDirect()
32+
e.Use(middleware.Logger())
33+
e.Use(middleware.Recover())
34+
return e
35+
}

internal/sqlite/db.go

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
//go:build js && wasm
2+
// +build js,wasm
3+
4+
package sqlite
5+
6+
import (
7+
"context"
8+
"database/sql"
9+
10+
_ "embed"
11+
12+
_ "github.com/ncruces/go-sqlite3/driver"
13+
_ "github.com/ncruces/go-sqlite3/embed"
14+
"github.com/onsonr/motr/pkg/models"
15+
)
16+
17+
//go:embed sink/schema.sql
18+
var schemaVaultSQL string
19+
20+
// SeedDB initializes and returns a configured database connection
21+
func SeedDB() (*models.Queries, error) {
22+
db, err := sql.Open("sqlite3", ":memory:")
23+
if err != nil {
24+
return nil, err
25+
}
26+
27+
// create tables
28+
if _, err := db.ExecContext(context.Background(), schemaVaultSQL); err != nil {
29+
return nil, err
30+
}
31+
return models.New(db), nil
32+
}

0 commit comments

Comments
 (0)