Skip to content

dound/gae-sessions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gae-sessions

gae-sessions is a sessions library for the Python runtime on Google App Engine for ALL session sizes. It is extremely fast, lightweight (one file), and easy to use.

Advantages:

  • Lightweight: One short file and references to a handful of built-in Python libraries.
  • Fast and Efficient
    • Orders of magnitude faster than other session libraries for app engine.
    • Uses secure cookies for small sessions to minimize overhead.
    • Uses memcache to minimize read times for larger sessions.
    • Minimizes gets() and puts() by compactly storing all values in one field.
    • Automatically converts db.Model instances to protobufs for more efficient storage and CPU usage.
    • Frequency of writes is minimized by only writing if there is a change, and only once per request (when the response is being sent).
    • Session data is lazily loaded - if you don't use the session for a request, zero overhead is added.
  • Secure: Protected against session hijacking, session fixation, tampering with session data, and XSS attacks.
  • High Availability is ensured by persisting changes to the datastore.
    • If you don't need this, you can use set_quick() and pop_quick() and data will only be changed in memcache.
  • Simple to Use
    • Easily installed as WSGI Middleware.
    • Session values are accessed via a dictionary interface.
    • The session automatically initializes when you first assign a value. Until then, no cookies are set and no writes are done.
    • Sessions expire automatically (based on a lifetime you can specify).
    • Thread-safe.

Limitations:

  • Limited to 1MB of data in a session. (to fit in a single memcache entry)

Installation

After downloading and unpacking gae-sessions, copy the 'gaesessions' folder into your app's root directory.

gae-sessions includes WSGI middleware to make it easy to integrate into your app

  • you just need to add in the middleware. If you're using App Engine's built-in webapp framework, or any other framework that calls the run_wsgi_app function, you can use App Engine's configuration framework to install gae-sessions. Create a file called appengine_config.py in your app's root directory, and put the following in it:

       from gaesessions import SessionMiddleware
       def webapp_add_wsgi_middleware(app):
           app = SessionMiddleware(app, cookie_key="a random and long string")
           return app
    

If you want to gae-sessions with Django, add 'gaesessions.DjangoSessionMiddleware' to your list of MIDDLEWARE_CLASSES in your settings.py file. You can then access the session associated with the current request via the request.session variable. To configure the Django middleware, modify the following line in gaesessions/__init__.py:

self.wrapped_wsgi_middleware = SessionMiddleware(fake_app, cookie_key='you MUST change this')

Small sessions are stored in secure cookies. The required cookie_key parameter is used to sign cookies with an HMAC-SHA256 signature. This enables gae-sessions to notice if any change is made to the data by the client (in which case it is discarded). The data itself is stored as a base64-encoded, pickled Python dictionary - tech savvy users could view the values (though they cannot change them). If this is an issue for your application, then disable the use of cookies for storing data for small sessions by calling SessionMiddleware with cookie_only_threshold=0.

The default session lifetime is 7 days. You may configure how long a session lasts by calling SessionMiddleware with a lifetime parameter, e.g., lifetime=datetime.timedelta(hours=2)).

If you want ALL of your changes persisted ONLY to memcache, then create the middleware with no_datastore=True. This will result in faster writes but your session data might be lost at any time! If cookie-only sessions have not been disabled, then small sessions will still be stored in cookies (this is faster than memcache).

You will also want to create a cronjob to periodically remove expired sessions from the datastore. You can find the example cronjob and the cleanup handler it calls in the demo.

If you only want session information (including the session ID) to be sent from the client when the user accesses the server over SSL (i.e., when accessing URLs prefixed with "https"), then you will need to manually start the session by calling start(ssl_only=True). An existing session cannot be converted to or from an SSL-only session. Use this option with care - remember that if this option is used, a user's browser will not send any session cookies when requesting non-https URLs.

Example Usage

There is a complete demo application in the demo folder - just launch it with the development server (or upload it to GAE) and check it out. This demo uses OpenID via RPX for user authentication. There's another demo in the 'demo-with-google-logins' folder which uses Google Accounts for authentication Here's a few lines of example code too:

from gaesessions import get_current_session
session = get_current_session()
if session.is_active():
    c = session.get('counter', 0)
    session['counter'] = c + 1
    session['blah'] = 325
    del session['blah']  # remove 'blah' from the session
    # model instances and other complex objects can be stored too

    # If you don't care if a particular change to the session is persisted
    # to the datastore, then you can use the "quick" methods.  They will
    # only cause the session to be stored to memcache.  Of course if you mix
    # regular and quick methods, then everything will be persisted to the
    # datastore (and memcache) at the end of the request like usual.
    session.set_quick('x', 9)
    x = session.get('x')
    x = session.pop_quick('x')

# ...
# when the user logs in, it is recommended that you rotate the session ID (security)
session.regenerate_id()

Author: David Underhill
Updated: 2011-Jul-03 (v1.07)
License: Apache License Version 2.0

For more information, please visit the gae-sessions webpage.

If you discover a problem, please report it on the gae-sessions issues page.

About

Fast, lightweight Sessions middleware for Google App Engine (secure cookies, memcache, or datastore)

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages