mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
- **refactor: move session-related code to middleware package** - **refactor: update PKL build process and adjust related configurations** - **feat: integrate base.cosmos.v1 Genesis module** - **refactor: pass session context to modal rendering functions** - **refactor: move nebula package to app directory and update templ version** - **refactor: Move home section video view to dedicated directory** - **refactor: remove unused views file** - **refactor: move styles and UI components to global scope** - **refactor: Rename images.go to cdn.go** - **feat: Add Empty State Illustrations** - **refactor: Consolidate Vault Index Logic** - **fix: References to App.wasm and remove Vault Directory embedded CDN files** - **refactor: Move CDN types to Models** - **fix: Correct line numbers in templ error messages for arch_templ.go** - **refactor: use common types for peer roles** - **refactor: move common types and ORM to a shared package** - **fix: Config import dwn** - **refactor: move nebula directory to app** - **feat: Rebuild nebula** - **fix: correct file paths in panels templates** - **feat: Remove duplicate types** - **refactor: Move dwn to pkg/core** - **refactor: Binary Structure** - **feat: Introduce Crypto Pkg** - **fix: Broken Process Start** - **feat: Update pkg/* structure** - **feat: Refactor PKL Structure** - **build: update pkl build process** - **chore: Remove Empty Files** - **refactor: remove unused macaroon package** - **feat: Add WebAwesome Components** - **refactor: consolidate build and generation tasks into a single taskfile, remove redundant makefile targets** - **refactor: refactor server and move components to pkg/core/dwn** - **build: update go modules** - **refactor: move gateway logic into dedicated hway command** - **feat: Add KSS (Krawczyk-Song-Song) MPC cryptography module** - **feat: Implement MPC-based JWT signing and UCAN token generation** - **feat: add support for MPC-based JWT signing** - **feat: Implement MPC-based UCAN capabilities for smart accounts** - **feat: add address field to keyshareSource** - **feat: Add comprehensive MPC test suite for keyshares, UCAN tokens, and token attenuations** - **refactor: improve MPC keyshare management and signing process** - **feat: enhance MPC capability hierarchy documentation** - **refactor: rename GenerateKeyshares function to NewKeyshareSource for clarity** - **refactor: remove unused Ethereum address computation** - **feat: Add HasHandle and IsAuthenticated methods to HTTPContext** - **refactor: Add context.Context support to session HTTPContext** - **refactor: Resolve context interface conflicts in HTTPContext** - **feat: Add session ID context key and helper functions** - **feat: Update WebApp Page Rendering** - **refactor: Simplify context management by using single HTTPContext key** - **refactor: Simplify HTTPContext creation and context management in session middleware** - **refactor: refactor session middleware to use a single data structure** - **refactor: Simplify HTTPContext implementation and session data handling** - **refactor: Improve session context handling and prevent nil pointer errors** - **refactor: Improve session context handling with nil safety and type support** - **refactor: improve session data injection** - **feat: add full-screen modal component and update registration flow** - **chore: add .air.toml to .gitignore** - **feat: add Air to devbox and update dependencies**
212 lines
4.8 KiB
Go
212 lines
4.8 KiB
Go
//go:build js && wasm
|
|
// +build js,wasm
|
|
|
|
package bridge
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"strings"
|
|
"sync"
|
|
"syscall/js"
|
|
)
|
|
|
|
var (
|
|
// Global buffer pool to reduce allocations
|
|
bufferPool = sync.Pool{
|
|
New: func() interface{} {
|
|
return new(bytes.Buffer)
|
|
},
|
|
}
|
|
|
|
// Cached JS globals
|
|
jsGlobal = js.Global()
|
|
jsUint8Array = jsGlobal.Get("Uint8Array")
|
|
jsResponse = jsGlobal.Get("Response")
|
|
jsPromise = jsGlobal.Get("Promise")
|
|
jsWasmHTTP = jsGlobal.Get("wasmhttp")
|
|
)
|
|
|
|
// serveFetch serves HTTP requests with optimized handler management
|
|
func ServeFetch(handler http.Handler) func() {
|
|
h := handler
|
|
if h == nil {
|
|
h = http.DefaultServeMux
|
|
}
|
|
|
|
// Optimize prefix handling
|
|
prefix := strings.TrimRight(jsWasmHTTP.Get("path").String(), "/")
|
|
if prefix != "" {
|
|
mux := http.NewServeMux()
|
|
mux.Handle(prefix+"/", http.StripPrefix(prefix, h))
|
|
h = mux
|
|
}
|
|
|
|
// Create request handler function
|
|
cb := js.FuncOf(func(_ js.Value, args []js.Value) interface{} {
|
|
promise, resolve, reject := newPromiseOptimized()
|
|
|
|
go handleRequest(h, args[1], resolve, reject)
|
|
|
|
return promise
|
|
})
|
|
|
|
jsWasmHTTP.Call("setHandler", cb)
|
|
return cb.Release
|
|
}
|
|
|
|
// handleRequest processes the request with panic recovery
|
|
func handleRequest(h http.Handler, jsReq js.Value, resolve, reject func(interface{})) {
|
|
defer func() {
|
|
if r := recover(); r != nil {
|
|
var errMsg string
|
|
if err, ok := r.(error); ok {
|
|
errMsg = fmt.Sprintf("wasmhttp: panic: %+v", err)
|
|
} else {
|
|
errMsg = fmt.Sprintf("wasmhttp: panic: %v", r)
|
|
}
|
|
reject(errMsg)
|
|
}
|
|
}()
|
|
|
|
recorder := newResponseRecorder()
|
|
h.ServeHTTP(recorder, buildRequest(jsReq))
|
|
resolve(recorder.jsResponse())
|
|
}
|
|
|
|
// buildRequest creates an http.Request from JS Request
|
|
func buildRequest(jsReq js.Value) *http.Request {
|
|
// Get request body
|
|
arrayBuffer, err := awaitPromiseOptimized(jsReq.Call("arrayBuffer"))
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// Create body buffer
|
|
jsBody := jsUint8Array.New(arrayBuffer)
|
|
bodyLen := jsBody.Get("length").Int()
|
|
body := make([]byte, bodyLen)
|
|
js.CopyBytesToGo(body, jsBody)
|
|
|
|
// Create request
|
|
req := httptest.NewRequest(
|
|
jsReq.Get("method").String(),
|
|
jsReq.Get("url").String(),
|
|
bytes.NewReader(body),
|
|
)
|
|
|
|
// Set headers efficiently
|
|
headers := jsReq.Get("headers")
|
|
headersIt := headers.Call("entries")
|
|
for {
|
|
entry := headersIt.Call("next")
|
|
if entry.Get("done").Bool() {
|
|
break
|
|
}
|
|
pair := entry.Get("value")
|
|
req.Header.Set(pair.Index(0).String(), pair.Index(1).String())
|
|
}
|
|
|
|
return req
|
|
}
|
|
|
|
// ResponseRecorder with optimized buffer handling
|
|
type ResponseRecorder struct {
|
|
*httptest.ResponseRecorder
|
|
buffer *bytes.Buffer
|
|
}
|
|
|
|
func newResponseRecorder() *ResponseRecorder {
|
|
return &ResponseRecorder{
|
|
ResponseRecorder: httptest.NewRecorder(),
|
|
buffer: bufferPool.Get().(*bytes.Buffer),
|
|
}
|
|
}
|
|
|
|
// jsResponse creates a JS Response with optimized memory usage
|
|
func (rr *ResponseRecorder) jsResponse() js.Value {
|
|
defer func() {
|
|
rr.buffer.Reset()
|
|
bufferPool.Put(rr.buffer)
|
|
}()
|
|
|
|
res := rr.Result()
|
|
defer res.Body.Close()
|
|
|
|
// Prepare response body
|
|
body := js.Undefined()
|
|
if res.ContentLength != 0 {
|
|
if _, err := io.Copy(rr.buffer, res.Body); err != nil {
|
|
panic(err)
|
|
}
|
|
bodyBytes := rr.buffer.Bytes()
|
|
body = jsUint8Array.New(len(bodyBytes))
|
|
js.CopyBytesToJS(body, bodyBytes)
|
|
}
|
|
|
|
// Prepare response init object
|
|
init := make(map[string]interface{}, 3)
|
|
if res.StatusCode != 0 {
|
|
init["status"] = res.StatusCode
|
|
}
|
|
|
|
if len(res.Header) > 0 {
|
|
headers := make(map[string]interface{}, len(res.Header))
|
|
for k, v := range res.Header {
|
|
if len(v) > 0 {
|
|
headers[k] = v[0]
|
|
}
|
|
}
|
|
init["headers"] = headers
|
|
}
|
|
|
|
return jsResponse.New(body, init)
|
|
}
|
|
|
|
// newPromiseOptimized creates a new JavaScript Promise with optimized callback handling
|
|
func newPromiseOptimized() (js.Value, func(interface{}), func(interface{})) {
|
|
var (
|
|
resolve func(interface{})
|
|
reject func(interface{})
|
|
promiseFunc = js.FuncOf(func(_ js.Value, args []js.Value) interface{} {
|
|
resolve = func(v interface{}) { args[0].Invoke(v) }
|
|
reject = func(v interface{}) { args[1].Invoke(v) }
|
|
return js.Undefined()
|
|
})
|
|
)
|
|
defer promiseFunc.Release()
|
|
|
|
return jsPromise.New(promiseFunc), resolve, reject
|
|
}
|
|
|
|
// awaitPromiseOptimized waits for Promise resolution with optimized channel handling
|
|
func awaitPromiseOptimized(promise js.Value) (js.Value, error) {
|
|
done := make(chan struct{})
|
|
var (
|
|
result js.Value
|
|
err error
|
|
)
|
|
|
|
thenFunc := js.FuncOf(func(_ js.Value, args []js.Value) interface{} {
|
|
result = args[0]
|
|
close(done)
|
|
return nil
|
|
})
|
|
defer thenFunc.Release()
|
|
|
|
catchFunc := js.FuncOf(func(_ js.Value, args []js.Value) interface{} {
|
|
err = js.Error{Value: args[0]}
|
|
close(done)
|
|
return nil
|
|
})
|
|
defer catchFunc.Release()
|
|
|
|
promise.Call("then", thenFunc).Call("catch", catchFunc)
|
|
<-done
|
|
|
|
return result, err
|
|
}
|