MCPcopy
hub / github.com/gorilla/sessions

github.com/gorilla/sessions @v1.4.0 sqlite

repository ↗ · DeepWiki ↗ · release v1.4.0 ↗
54 symbols 145 edges 9 files 47 documented · 87%
README

Gorilla Sessions

[!IMPORTANT] The latest version of this repository requires go 1.23 because of the new partitioned attribute. The last version that is compatible with older versions of go is v1.3.0.

testing codecov godoc sourcegraph

Gorilla Logo

gorilla/sessions provides cookie and filesystem sessions and infrastructure for custom session backends.

The key features are:

  • Simple API: use it as an easy way to set signed (and optionally encrypted) cookies.
  • Built-in backends to store sessions in cookies or the filesystem.
  • Flash messages: session values that last until read.
  • Convenient way to switch session persistency (aka "remember me") and set other attributes.
  • Mechanism to rotate authentication and encryption keys.
  • Multiple sessions per request, even using different backends.
  • Interfaces and infrastructure for custom session backends: sessions from different stores can be retrieved and batch-saved using a common API.

Let's start with an example that shows the sessions API in a nutshell:

    import (
        "net/http"
        "github.com/gorilla/sessions"
    )

    // Note: Don't store your key in your source code. Pass it via an
    // environmental variable, or flag (or both), and don't accidentally commit it
    // alongside your code. Ensure your key is sufficiently random - i.e. use Go's
    // crypto/rand or securecookie.GenerateRandomKey(32) and persist the result.
    var store = sessions.NewCookieStore([]byte(os.Getenv("SESSION_KEY")))

    func MyHandler(w http.ResponseWriter, r *http.Request) {
        // Get a session. We're ignoring the error resulted from decoding an
        // existing session: Get() always returns a session, even if empty.
        session, _ := store.Get(r, "session-name")
        // Set some session values.
        session.Values["foo"] = "bar"
        session.Values[42] = 43
        // Save it before we write to the response/return from the handler.
        err := session.Save(r, w)
        if err != nil {
            http.Error(w, err.Error(), http.StatusInternalServerError)
            return
        }
    }

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 create 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.

More examples are available at package documentation.

Store Implementations

Other implementations of the sessions.Store interface:

License

BSD licensed. See the LICENSE file for details.

Extension points exported contracts — how you extend this code

Store (Interface)
Store is an interface for custom session stores. See CookieStore and FilesystemStore for examples. [2 implementers]
store.go

Core symbols most depended-on inside this repo

Save
called by 9
store.go
Get
called by 7
store.go
Flashes
called by 7
sessions.go
Name
called by 7
sessions.go
NewFilesystemStore
called by 4
store.go
New
called by 4
store.go
AddFlash
called by 4
sessions.go
NewCookieStore
called by 3
store.go

Shape

Method 23
Function 21
Struct 7
TypeAlias 2
Interface 1

Languages

Go100%

Modules by API surface

store.go20 symbols
sessions.go18 symbols
store_test.go5 symbols
sessions_test.go5 symbols
lex.go3 symbols
options.go1 symbols
cookie_test.go1 symbols
cookie.go1 symbols

Dependencies from manifests, versioned

github.com/gorilla/securecookiev1.1.2 · 1×

For agents

$ claude mcp add sessions \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact