@namehash/namegraph-sdk (original) (raw)

Build Status

express-oracle-session

A Oracle session store for express.js.

Installation

Add to your application via npm:

npm install express-oracle-session --save

This will install express-oracle-session and add it to your application's package.json file.

How to Use

Use with your express session middleware, like this:

var express = require('express');

var app = module.exports = express();

var session = require('express-session');

var oracleDbStore = require('express-oracle-session')(session);

var options = {

    user: 'session_test',

    password: 'password',

    connectString: 'localhost/orcl'

};

var sessionStore = new oracleDbStore(options);

app.use(session({

    key: 'session_cookie_name',

    secret: 'session_cookie_secret',

    store: sessionStore,

    resave: true,

    saveUninitialized: true

}));

The session store will internally create a Oracle connection pool which handles the (re)connection to the database.

With an existing Oracle connection or pool

To pass in an existing Oracle database connection or pool, you would do something like this:

var oracledb = require('oracledb');

var session = require('express-session');

var oracleDbStore = require('express-oracle-session')(session);

var options = {

    user: 'session_test',

    password: 'password',

    connectString: 'localhost/orcl'

};

oracledb.createPool(options, function(err, pool) {

      if (err) {

        console.error("createPool() error: " + err.message);

        return;

            }

            pool.getConnection(function(err, connection) {

      if (err) {

          handleError(response, "getConnection() error", err);

          return;

                }

                var sessionStore = new oracleDbStore({}, connection);

            });

        });

Closing the session store

To cleanly close the session store:

Options

Here is a list of all available options:

var options = {

    user: 'session_test',

    password: 'password',

    connectString: 'localhost/orcl',

    externalAuth: true,

    checkExpirationInterval: 900000,

    expiration: 86400000,

    createDatabaseTable: true,

    connectionLimit: 1,

    schema: {

        tableName: 'sessions',

        columnNames: {

            session_id: 'session_id',

            expires: 'expires',

            data: 'data'

        }

    }

};

Configurable sessions table and column names

You can override the default sessions database table name and column names via the schema option:

var session = require('express-session');

var oracleDbStore = require('express-oracle-session')(session);

var options = {

    user: 'session_test',

    password: 'password',

    connectString: 'localhost/orcl',

    schema: {

        tableName: 'custom_sessions_table_name',

        columnNames: {

            session_id: 'custom_session_id',

            expires: 'custom_expires_column_name',

            data: 'custom_data_column_name'

        }

    }

};

var sessionStore = new oracleDbStore(options);

Debugging

express-oracle-session uses the debug module to output debug messages to the console. To output all debug messages, run your node app with the DEBUG environment variable:

DEBUG=express-oracle-session* node your-app.js

This will output log messages as well as error messages from express-oracle-session.

Contributing

There are a number of ways you can contribute:

Before you contribute code, please read through at least some of the source code for the project. I would appreciate it if any pull requests for source code changes follow the coding style of the rest of the project.

Now if you're still interested, you'll need to get your local environment configured.

Configure Local Environment

Step 1: Get the Code

First, you'll need to pull down the code from GitHub:

git clone https://github.com/chill117/express-oracle-session.git

Step 2: Install Dependencies

Second, you'll need to install the project dependencies as well as the dev dependencies. To do this, simply run the following from the directory you created in step 1:

npm install

Step 3: Set Up the Test Database

TBD

Running Tests

With your local environment configured, running tests is as simple as:

npm test

Changelog