mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
* refactor: move database, navigator scripts to state package * feat: add Schema config for dwn * test: add unit tests for InitializeDatabase * feat: use templated index.html for the DWN frontend * feat: introduce templ generation for templ * chore(deps): update devbox.json to use latest packages * chore: update devbox to use bun * feat: introduce dwn config generation * feat: add motr.mjs for vault management * refactor: move front end from to (alert) * feat: implement devbox integration and devbox-based process management * feat: embed motr.mjs script for offline demo * refactor: embed motr.mjs data in embed.go * chore: update workflows to use actions/checkout@v4 * refactor: move process-compose.yaml to deploy directory * refactor: remove unnecessary JSON conversion
142 lines
3.0 KiB
Go
142 lines
3.0 KiB
Go
//go:build js && wasm
|
|
// +build js,wasm
|
|
|
|
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"strings"
|
|
"syscall/js"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
promise "github.com/nlepage/go-js-promise"
|
|
"github.com/onsonr/sonr/internal/dwn/handlers"
|
|
"github.com/onsonr/sonr/internal/dwn/middleware"
|
|
"github.com/onsonr/sonr/pkg/nebula"
|
|
)
|
|
|
|
func main() {
|
|
e := echo.New()
|
|
e.Use(middleware.UseSession)
|
|
nebula.RouteViews(e)
|
|
handlers.RegisterState(e)
|
|
Serve(e)
|
|
}
|
|
|
|
// Serve serves HTTP requests using handler or http.DefaultServeMux if handler is nil.
|
|
func Serve(handler http.Handler) func() {
|
|
h := handler
|
|
if h == nil {
|
|
h = http.DefaultServeMux
|
|
}
|
|
|
|
prefix := js.Global().Get("wasmhttp").Get("path").String()
|
|
for strings.HasSuffix(prefix, "/") {
|
|
prefix = strings.TrimSuffix(prefix, "/")
|
|
}
|
|
|
|
if prefix != "" {
|
|
mux := http.NewServeMux()
|
|
mux.Handle(prefix+"/", http.StripPrefix(prefix, h))
|
|
h = mux
|
|
}
|
|
|
|
cb := js.FuncOf(func(_ js.Value, args []js.Value) interface{} {
|
|
resPromise, resolve, reject := promise.New()
|
|
|
|
go func() {
|
|
defer func() {
|
|
if r := recover(); r != nil {
|
|
if err, ok := r.(error); ok {
|
|
reject(fmt.Sprintf("wasmhttp: panic: %+v\n", err))
|
|
} else {
|
|
reject(fmt.Sprintf("wasmhttp: panic: %v\n", r))
|
|
}
|
|
}
|
|
}()
|
|
|
|
res := NewResponseRecorder()
|
|
|
|
h.ServeHTTP(res, Request(args[0]))
|
|
|
|
resolve(res.JSResponse())
|
|
}()
|
|
|
|
return resPromise
|
|
})
|
|
|
|
js.Global().Get("wasmhttp").Call("setHandler", cb)
|
|
|
|
return cb.Release
|
|
}
|
|
|
|
// Request builds and returns the equivalent http.Request
|
|
func Request(r js.Value) *http.Request {
|
|
jsBody := js.Global().Get("Uint8Array").New(promise.Await(r.Call("arrayBuffer")))
|
|
body := make([]byte, jsBody.Get("length").Int())
|
|
js.CopyBytesToGo(body, jsBody)
|
|
|
|
req := httptest.NewRequest(
|
|
r.Get("method").String(),
|
|
r.Get("url").String(),
|
|
bytes.NewBuffer(body),
|
|
)
|
|
|
|
headersIt := r.Get("headers").Call("entries")
|
|
for {
|
|
e := headersIt.Call("next")
|
|
if e.Get("done").Bool() {
|
|
break
|
|
}
|
|
v := e.Get("value")
|
|
req.Header.Set(v.Index(0).String(), v.Index(1).String())
|
|
}
|
|
|
|
return req
|
|
}
|
|
|
|
// ResponseRecorder uses httptest.ResponseRecorder to build a JS Response
|
|
type ResponseRecorder struct {
|
|
*httptest.ResponseRecorder
|
|
}
|
|
|
|
// NewResponseRecorder returns a new ResponseRecorder
|
|
func NewResponseRecorder() ResponseRecorder {
|
|
return ResponseRecorder{httptest.NewRecorder()}
|
|
}
|
|
|
|
// JSResponse builds and returns the equivalent JS Response
|
|
func (rr ResponseRecorder) JSResponse() js.Value {
|
|
res := rr.Result()
|
|
|
|
body := js.Undefined()
|
|
if res.ContentLength != 0 {
|
|
b, err := io.ReadAll(res.Body)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
body = js.Global().Get("Uint8Array").New(len(b))
|
|
js.CopyBytesToJS(body, b)
|
|
}
|
|
|
|
init := make(map[string]interface{}, 2)
|
|
|
|
if res.StatusCode != 0 {
|
|
init["status"] = res.StatusCode
|
|
}
|
|
|
|
if len(res.Header) != 0 {
|
|
headers := make(map[string]interface{}, len(res.Header))
|
|
for k := range res.Header {
|
|
headers[k] = res.Header.Get(k)
|
|
}
|
|
init["headers"] = headers
|
|
}
|
|
|
|
return js.Global().Get("Response").New(body, init)
|
|
}
|