jsdav-ext
Version:
jsDAV allows you to easily add WebDAV support to a NodeJS application. jsDAV is meant to cover the entire standard, and attempts to allow integration using an easy to understand API.
96 lines (84 loc) • 3.1 kB
JavaScript
/*
* @package jsDAV
* @subpackage DAV
* @copyright Copyright(c) 2011 Ajax.org B.V. <info AT ajax DOT org>
* @author Mike de Boer <info AT mikedeboer DOT nl>
* @license http://github.com/mikedeboer/jsDAV/blob/master/LICENSE MIT License
*/
;
var jsDAV_Auth_iBackend = require("./iBackend");
var Exc = require("./../../../shared/exceptions");
/**
* HTTP Basic authentication backend class
*
* This class can be used by authentication objects wishing to use HTTP Basic
* Most of the digest logic is handled, implementors just need to worry about
* the validateUserPass method.
*/
var jsDAV_Auth_Backend_AbstractBasic = module.exports = jsDAV_Auth_iBackend.extend({
/**
* This variable holds the currently logged in username.
*
* @var string|null
*/
currentUser: null,
/**
* Validates a username and password
*
* This method should return true or false depending on if login
* succeeded.
*
* @return bool
*/
validateUserPass: function(username, password, cbvalidpass) {},
/**
* Returns information about the currently logged in username.
*
* If nobody is currently logged in, this method should return null.
*
* @return string|null
*/
getCurrentUser: function(callback) {
return callback(null, this.currentUser);
},
/**
* Returns an HTTP 401 header, forcing login
*
* This should be called when username and password are incorrect, or not supplied at all
*
* @return void
*/
requireAuth: function(realm, err, callback) {
if (!(err instanceof Exc.jsDAV_Exception))
err = new Exc.NotAuthenticated(err);
err.addHeader("WWW-Authenticate", "Basic realm=\"" + realm + "\"");
callback(err, false);
},
/**
* Authenticates the user based on the current request.
*
* If authentication is succesful, true must be returned.
* If authentication fails, an exception must be thrown.
*
* @throws Exc.NotAuthenticated
* @return bool
*/
authenticate: function(handler, realm, cbauth) {
var req = handler.httpRequest;
var res = handler.httpResponse;
var auth = req.headers["authorization"];
if (!auth || auth.toLowerCase().indexOf("basic") !== 0)
return this.requireAuth(realm, "No basic authentication headers were found", cbauth);
var userpass = (new Buffer(auth.substr(6), "base64")).toString("utf8").split(":");
if (!userpass.length)
return this.requireAuth(realm, "No basic authentication headers were found", cbauth);
// Authenticates the user
var self = this;
this.validateUserPass(userpass[0], userpass[1], function(valid) {
if (!valid)
return self.requireAuth(realm, "Username or password does not match", cbauth);
self.currentUser = userpass[0];
cbauth(null, true);
});
}
});