MCPcopy
hub / github.com/alexedwards/scs

github.com/alexedwards/scs @v2.9.0 sqlite

repository ↗ · DeepWiki ↗ · release v2.9.0 ↗
472 symbols 1,827 edges 48 files 212 documented · 45%
README

SCS: HTTP Session Management for Go

GoDoc Go report card Test coverage

Features

  • Automatic loading and saving of session data via middleware.
  • Choice of 19 different server-side session stores including PostgreSQL, MySQL, MSSQL, SQLite, Redis and many others. Custom session stores are also supported.
  • Supports multiple sessions per request, 'flash' messages, session token regeneration, idle and absolute session timeouts, and 'remember me' functionality.
  • Easy to extend and customize. Communicate session tokens to/from clients in HTTP headers or request/response bodies.
  • Efficient design. Smaller, faster and uses less memory than gorilla/sessions.

Instructions

Installation

This package requires Go 1.12 or newer.

go get github.com/alexedwards/scs/v2

Note: If you're using the traditional GOPATH mechanism to manage dependencies, instead of modules, you'll need to go get and import github.com/alexedwards/scs without the v2 suffix.

Please use versioned releases. Code in tip may contain experimental features which are subject to change.

Basic Use

SCS implements a session management pattern following the OWASP security guidelines. Session data is stored on the server, and a randomly-generated unique session token (or session ID) is communicated to and from the client in a session cookie.

package main

import (
    "io"
    "net/http"
    "time"

    "github.com/alexedwards/scs/v2"
)

var sessionManager *scs.SessionManager

func main() {
    // Initialize a new session manager and configure the session lifetime.
    sessionManager = scs.New()
    sessionManager.Lifetime = 24 * time.Hour

    mux := http.NewServeMux()
    mux.HandleFunc("/put", putHandler)
    mux.HandleFunc("/get", getHandler)

    // Wrap your handlers with the LoadAndSave() middleware.
    http.ListenAndServe(":4000", sessionManager.LoadAndSave(mux))
}

func putHandler(w http.ResponseWriter, r *http.Request) {
    // Store a new key and value in the session data.
    sessionManager.Put(r.Context(), "message", "Hello from a session!")
}

func getHandler(w http.ResponseWriter, r *http.Request) {
    // Use the GetString helper to retrieve the string value associated with a
    // key. The zero value is returned if the key does not exist.
    msg := sessionManager.GetString(r.Context(), "message")
    io.WriteString(w, msg)
}
$ curl -i --cookie-jar cj --cookie cj localhost:4000/put
HTTP/1.1 200 OK
Cache-Control: no-cache="Set-Cookie"
Set-Cookie: session=lHqcPNiQp_5diPxumzOklsSdE-MJ7zyU6kjch1Ee0UM; Path=/; Expires=Sat, 27 Apr 2019 10:28:20 GMT; Max-Age=86400; HttpOnly; SameSite=Lax
Vary: Cookie
Date: Fri, 26 Apr 2019 10:28:19 GMT
Content-Length: 0

$ curl -i --cookie-jar cj --cookie cj localhost:4000/get
HTTP/1.1 200 OK
Date: Fri, 26 Apr 2019 10:28:24 GMT
Content-Length: 21
Content-Type: text/plain; charset=utf-8

Hello from a session!

Configuring Session Behavior

Session behavior can be configured via the SessionManager fields.

sessionManager = scs.New()
sessionManager.Lifetime = 3 * time.Hour
sessionManager.IdleTimeout = 20 * time.Minute
sessionManager.Cookie.Name = "session_id"
sessionManager.Cookie.Domain = "example.com"
sessionManager.Cookie.HttpOnly = true
sessionManager.Cookie.Path = "/example/"
sessionManager.Cookie.Persist = true
sessionManager.Cookie.SameSite = http.SameSiteStrictMode
sessionManager.Cookie.Secure = true
sessionManager.Cookie.Partitioned = true

Documentation for all available settings and their default values can be found here.

Working with Session Data

Data can be set using the Put() method and retrieved with the Get() method. A variety of helper methods like GetString(), GetInt() and GetBytes() are included for common data types. Please see the documentation for a full list of helper methods.

The Pop() method (and accompanying helpers for common data types) act like a one-time Get(), retrieving the data and removing it from the session in one step. These are useful if you want to implement 'flash' message functionality in your application, where messages are displayed to the user once only.

Some other useful functions are Exists() (which returns a bool indicating whether or not a given key exists in the session data) and Keys() (which returns a sorted slice of keys in the session data).

Individual data items can be deleted from the session using the Remove() method. Alternatively, all session data can be deleted by using the Destroy() method. After calling Destroy(), any further operations in the same request cycle will result in a new session being created --- with a new session token and a new lifetime.

Behind the scenes SCS uses gob encoding to store session data, so if you want to store custom types in the session data they must be registered with the encoding/gob package first. Struct fields of custom types must also be exported so that they are visible to the encoding/gob package. Please see here for a working example.

Loading and Saving Sessions

Most applications will use the LoadAndSave() middleware. This middleware takes care of loading and committing session data to the session store, and communicating the session token to/from the client in a cookie as necessary.

If you want to customize the behavior (like communicating the session token to/from the client in a HTTP header, or creating a distributed lock on the session token for the duration of the request) you are encouraged to create your own alternative middleware using the code in LoadAndSave() as a template. An example is given here.

Or for more fine-grained control you can load and save sessions within your individual handlers (or from anywhere in your application). See here for an example.

Configuring the Session Store

By default SCS uses an in-memory store for session data. This is convenient (no setup!) and very fast, but all session data will be lost when your application is stopped or restarted. Therefore it's useful for applications where data loss is an acceptable trade off for fast performance, or for prototyping and testing purposes. In most production applications you will want to use a persistent session store like PostgreSQL or MySQL instead.

The session stores currently included are shown in the table below. Please click the links for usage instructions and examples.

Package Backend Embedded In-Memory Multi-Process
badgerstore BadgerDB Y N N
boltstore BBolt Y N N
bunstore Bun ORM for PostgreSQL/MySQL/MSSQL/SQLite N N Y
buntdbstore BuntDB Y Y N
cockroachdbstore CockroachDB N N Y
consulstore Consul N Y Y
etcdstore Etcd N N Y
firestore Google Cloud Firestore N ? Y
gormstore GORM ORM for PostgreSQL/MySQL/SQLite/MSSQL/TiDB N N Y
leveldbstore LevelDB Y N N
memstore In-memory (default) Y Y N
mongodbstore MongoDB N N Y
mssqlstore Microsoft SQL Server N N Y
mysqlstore MySQL N N Y
pgxstore PostgreSQL (using the pgx driver) N N Y
postgresstore PostgreSQL (using the pq driver) N N Y
redisstore Redis N Y Y
sqlite3store SQLite3 (using the mattn/go-sqlite3 CGO-based driver) Y N Y

Custom session stores are also supported. Please see here for more information.

Using Custom Session Stores

scs.Store defines the interface for custom session stores. Any object that implements this interface can be set as the store when configuring the session.

```go type Store interface { // Delete should remove the session token and corresponding data from the // session store. If the token does not exist then Delete should be a no-op // and return nil (not an error). Delete(token string) (err error)

// Find should return the data for a session token from the store. If the
// session token is not found or is expired, the found return value should
// be false (and the err return value should be nil). Similarly, tampered
// or malformed tokens should result in a found return value of false and a
// nil err value. The err return value should be used for system errors only.
Find(token string) (b []byte, found bool, err error)

// Commit should add the session token and data to the store, with the given
// expiry t

Extension points exported contracts — how you extend this code

Store (Interface)
Store is the interface for session stores. [20 implementers]
store.go
Codec (Interface)
Codec is the interface for encoding/decoding session data to and from a byte slice for use by the session store. [1 implementers]
codec.go
IterableStore (Interface)
IterableStore is the interface for session stores which support iteration. [16 implementers]
store.go
CtxStore (Interface)
CtxStore is an interface for session stores which take a context.Context parameter. [5 implementers]
store.go
IterableCtxStore (Interface)
IterableCtxStore is the interface for session stores which support iteration and which take a context.Context parameter. [5 …
store.go

Core symbols most depended-on inside this repo

Get
called by 80
data.go
Commit
called by 73
store.go
Find
called by 69
store.go
New
called by 43
session.go
Delete
called by 38
store.go
addSessionDataToContext
called by 24
data.go
newSessionData
called by 22
data.go
FindCtx
called by 21
store.go

Shape

Function 227
Method 203
Struct 35
Interface 5
TypeAlias 2

Languages

Go100%

Modules by API surface

data.go45 symbols
data_test.go23 symbols
pgxstore/pgxstore.go14 symbols
firestore/firestore.go14 symbols
bunstore/bunstore.go14 symbols
mockstore/store.go13 symbols
gormstore/gormstore.go13 symbols
store.go12 symbols
session.go12 symbols
mysqlstore/mysqlstore.go12 symbols
session_test.go11 symbols
mongodbstore/mongodbstore.go11 symbols

Dependencies from manifests, versioned

cloud.google.com/go/firestorev1.9.0 · 1×
github.com/golang/groupcachev0.0.0-2021033122475 · 1×
github.com/gomodule/redigov1.8.0 · 1×
github.com/jinzhu/inflectionv1.0.0 · 1×
github.com/kballard/go-shellquotev0.0.0-2018042803000 · 1×

Datastores touched

SessionsCollection · 1 repos
sessionsCollection · 1 repos
dbnameDatabase · 1 repos
(mongodb)Database · 1 repos

For agents

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

⬇ download graph artifact