Giter Site home page Giter Site logo

pouchdb-seamless-auth's Introduction

pouchdb-seamless-auth

Build Status Dependency Status devDependency Status

Seamless switching between online (CouchDB) and offline (PouchDB) authentication.

WARNING: This plug-in stores password hashes in a local PouchDB. In for example internet cafes, this is not a smart thing to do. In your app, you should include a checkbox 'I trust this computer' and only use pouchdb-seamless-auth when it is checked. Otherwise, you can fall back to pouchdb-auth. This functionality might be implemented as part of the plug-in in the future.

API

NodeJS package name: pouchdb-seamless-auth Browser object name: window.SeamlessAuth

This plug-in provides a convenience layer on top of the PouchDB Auth plug-in. By default, it users a local database named _users as backend for its log in, log out and get session actions. But, when you set a remote database, that local database is synced with the given database. In other words, it allows you to let your user log in one time using the remote database, and from that moment on you can also the session functions while offline! Very handy when using a per-user database set up that PouchDB syncs.

Instead of passing this plug-in to the PouchDB.plugin() function, install it like this:

//NodeJS
require("pouchdb-seamless-auth")(PouchDB)

//Browser
SeamlessAuth(PouchDB)

After that is finished (a promise is returned to help determine when that is), all functions documented below are available on the PouchDB object.

PouchDB.setSeamlessAuthRemoteDB(remoteName[, remoteOptions[, callback]])

Set a remote database to be seamlessly synced to.

Parameters:

  • string remoteName: The url to the remote database. Passed to the PouchDB constructor as the first argument.
  • object remoteOptions: Options to pass on to the PouchDB constructor as its second argument.
  • function callback: An alternative for the returned promise.

Returns: a promise, which resolves to nothing when the remote database is completely set up.

PouchDB.unsetSeamlessAuthRemoteDB()

A synchronous function. Undos what PouchDB.setSeamlessAuthRemoteDB() did.

Returns: nothing.

PouchDB.seamlessSession([opts[, callback]])

See pouchdb-auth's db.session().

PouchDB.seamlessLogIn(username, password, [opts[, callback]])

See pouchdb-auth's db.logIn().

PouchDB.seamlessLogOut([opts[, callback]])

See pouchdb-auth's db.logOut().

PouchDB.seamlessSignUp(username, password, [opts[, callback]])

See pouchdb-auth's db.signUp().

PouchDB.invalidateSeamlessAuthCache()

Used to invalidate the cache manually.

This is a synchronous function. Because an application might call PouchDB.seamlessSession() a lot of times, that method is cached. For most of the time, you don't have to worry about that, because log in, log out and sign up all invalidate that cache, making it pretty much unnoticable. There is one known exception: when changing the user document in _users manually. Call this to invalidate the cache when you do that.

Returns: nothing.

pouchdb-seamless-auth's People

Contributors

greenkeeperio-bot avatar linus avatar marten-de-vries avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.