backbone.basicauth
Version:
HTTP Basic Authentication for Backbone
135 lines (85 loc) • 4.68 kB
Markdown
# Backbone Basic Auth plugin
This plugin enables access to remote resources which are protected by [HTTP Basic Authentication](http://www.ietf.org/rfc/rfc2617.txt) through your Backbone Models and Collections.
## Modes
You can set Basic Authentication credentials in two ways:
- Via a separate model/collection property: `credentials`.
- Directly on the model/collection `url` property.
If you are unsure which mode to pick, use the `credentials` property on the model.
### `model.credentials`
Usage:
``` js
var Model = Backbone.Model.extend({
url: 'http://path/to/basic/auth/protected/resource'
});
var model = new Model();
model.credentials = {
username: 'user',
password: 'pass'
};
// or ...
model.credentials = function() {
return {
username: 'user',
password: 'pass'
};
};
model.fetch();
```
This mode is good for authentication that may change when the app is used, e.g. if different users are able to authenticate with the app. The credentials can be hard coded or set dynamically.
This mode is the most flexible. If you are unsure which mode to use, try this one first.
### `model.url`
Usage:
``` js
var Model = Backbone.Model.extend({
url: 'http://username:password@path/to/basic/auth/protected/resource'
});
var model = new Model();
model.fetch();
```
This mode is good for models where the username/password is unlikely to change, e.g. a fixed API key for your app. The plugin takes care of parsing the URL to create the necessary Basic Authentication header, and jQuery removes the credentials from the URL so your username and password isn't sent to the server directly on the URL.
Thanks goes to [Luis Abreu](https://github.com/lmjabreu) for his work implementing this.
## How does it work?
A resource protected with HTTP Basic Authentication requires the following HTTP header to be set on every request:
```
Authorization: Basic <accesstoken>
```
The access token is formed by taking the username and password, concatenating together with a `:` separator and encoding into Base64.
This plugin handles the Base64 encoding and automatically sets the `Authorization` header on every request which uses `Backbone.sync`.
## Creating header for use elsewhere
On occasion, it can be useful to bypass `Backbone.sync` and use raw `$.ajax` (for example, when hitting server API resources which do not conform to RESTful principles). More information on this subject can be found in [this excellent blog post by Derick Bailey](http://lostechies.com/derickbailey/2012/05/04/wrapping-ajax-in-a-thin-command-framework-for-backbone-apps/).
If you need/want to do this, there is a convenience function which will help you build the BasicAuth header: `Backbone.BasicAuth.getHeader()`, which can be used to create the header to be set directly on the AJAX request.
Example:
``` js
// Pass the credentials to the plugin to build the header
$.ajax({
method: 'GET',
dataType: "json",
url: 'http://path/to/basic/auth/protected/resource',
headers: Backbone.BasicAuth.getHeader({
username: 'user',
password: 'pass'
})
});
```
## Dependencies
- [Backbone](http://backbonejs.org)
- [Underscore](http://underscorejs.org) or [Lodash](http://lodash.com)
- JavaScript [`btoa()`](https://developer.mozilla.org/en-US/docs/DOM/window.btoa) function (a [polyfill](https://github.com/davidchambers/Base64.js) is available if `btoa()` is not supported in your target browser)
## Server-side
The idea of this plugin is to adhere to the standard [HTTP Basic Authentication](http://www.ietf.org/rfc/rfc2617.txt) scheme. There is bound to be a 'basic' way to read the username / password combination in your chosen server-side language.
[See here for a PHP example.](http://php.net/manual/en/features.http-auth.php)
## Change Log
### v0.4.2 (30th June 2016)
- Added support for CommonJS.
### v0.4.1 (16th October 2015)
- Integrated `package.json` for use with npm.
### v0.4.0 (23rd July 2013)
- Re-introduced concept of setting Basic Auth credentials from a function, in addition to URL-based method.
### v0.3.0 (22nd July 2013)
- Moved to use the standard method of HTTP Basic Authentication, by adding `username:password` to the URL string. The old method of setting the Basic Auth token (`Backbone.BasicAuth.set` / `Backbone.BasicAuth.remove`) has now been removed from the codebase. Thanks to [Luis Abreu](https://github.com/lmjabreu) for the PR.
- Added AMD support (thanks again [Luis Abreu](https://github.com/lmjabreu)).
### v0.2.0 (1st May 2013)
- Added Bower support.
## License
Copyright 2013, Tom Spencer (@fiznool), Luis Abreu (@lmjabreu).
backbone.basicauth.js may be freely distributed under the MIT license.