mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
* fix: update commitizen version * feat: add WASM build tags to db actions * feat: Update all actions to follow `AddAsset` for error handling * feat: remove database dependency in dwn and motr commands * feat: add basic info form to registration view * feat: implement basic browser navigation component * refactor: move database related files to middleware * fix: remove unused test command * fix: update source directory for buf-publish workflow * feat: embed dwn config data * feat: add Sync RPC to query service * refactor: rename package to for better organization * feat: add new javascript exception handling for server requests * refactor: move dwn.wasm to embed directory * refactor: move server files to a new directory * refactor: move session related code to client package * refactor: Update dwn.wasm build path * refactor: move dwn wasm build to vfs * feat: introduce config loading middleware * feat: introduce DWN config and address JSON * refactor: move dwn wasm build output to embed directory * feat: introduce config and IndexedDB model * refactor: move DWN config file generation to vfs * refactor: move config package to * feat: add Sonr.ID IPFS gateway proxy * feat: add SWT data structure * feat: update index.html to use Sonr styles and scripts * feat(dwn): remove index.html server endpoint * feat: add Navigator API for web credential management
52 lines
892 B
Go
52 lines
892 B
Go
package client
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/donseba/go-htmx"
|
|
"github.com/labstack/echo/v4"
|
|
"github.com/segmentio/ksuid"
|
|
)
|
|
|
|
type Session struct {
|
|
echo.Context
|
|
htmx *htmx.HTMX
|
|
}
|
|
|
|
func (c *Session) Htmx() *htmx.HTMX {
|
|
return c.htmx
|
|
}
|
|
|
|
func (c *Session) ID() string {
|
|
return ReadCookie(c, "session")
|
|
}
|
|
|
|
func NewSession(c echo.Context) *Session {
|
|
s := &Session{Context: c}
|
|
if val := ReadCookie(c, "session"); val == "" {
|
|
id := ksuid.New().String()
|
|
WriteCookie(c, "session", id)
|
|
}
|
|
return s
|
|
}
|
|
|
|
func ReadCookie(c echo.Context, key string) string {
|
|
cookie, err := c.Cookie(key)
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
if cookie == nil {
|
|
return ""
|
|
}
|
|
return cookie.Value
|
|
}
|
|
|
|
func WriteCookie(c echo.Context, key string, value string) {
|
|
cookie := new(http.Cookie)
|
|
cookie.Name = key
|
|
cookie.Value = value
|
|
cookie.Expires = time.Now().Add(24 * time.Hour)
|
|
c.SetCookie(cookie)
|
|
}
|