
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
github.com/go-gem/sessions
Gem Sessions is a sessions package for fasthttp, it provides cookie and filesystem sessions and infrastructure for custom session backends.
This project inspired by gorilla sessions and gorilla context, their LICENSES can be found in LICENSE file.
go get github.com/go-gem/sessions
package main
import (
"fmt"
"log"
"github.com/go-gem/sessions"
"github.com/valyala/fasthttp"
)
var (
store sessions.Store
)
func handler(ctx *fasthttp.RequestCtx) {
// Get session from store.
session, err := store.Get(ctx, "GOSESSION")
if err != nil {
log.Printf("Failed to get session: %s\n", err.Error())
return
}
// Save session.
defer session.Save(ctx)
if string(ctx.Path()) == "/set" {
name := string(ctx.FormValue("name"))
if len(name) > 0 {
session.Values["name"] = name
ctx.SetBodyString(fmt.Sprintf("Name has been set as: %s\n", session.Values["name"]))
} else {
ctx.SetBodyString("No name specified.")
}
return
}
if name, ok := session.Values["name"].(string); ok {
ctx.SetBodyString(fmt.Sprintf("Name: %s\n", name))
return
}
ctx.SetContentType("text/html charset:utf-8")
ctx.SetBodyString(`
You should navigate to
<a href="http://127.0.0.1:8080/set?name=Gem" target="_blank">http://127.0.0.1:8080/set?name=Gem</a>
to set specified name.
`)
}
func main() {
store = sessions.NewCookieStore([]byte("something-very-secret"))
fasthttp.ListenAndServe(":8080", sessions.ClearHandler(handler))
}
First we initialize a session store calling NewCookieStore()
and passing a
secret key used to authenticate the session. Inside the handler, we call
store.Get()
to retrieve an existing session or a new one. Then we set some
session values in session.Values, which is a map[interface{}]interface{}
.
And finally we call session.Save()
to save the session in the response.
Important Note: application must to call sessions.Clear
at the end of a request lifetime.
An easy way to do this is to wrap your handler with sessions.ClearHandler
.
Other implementations of the sessions.Store
interface:
MIT licensed. See the LICENSE file for details.
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.