Created
July 14, 2012 14:30
-
-
Save witoldsz/3111582 to your computer and use it in GitHub Desktop.
Angular Auth (work-in-progress)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @license Angular Auth | |
* (c) 2012 Witold Szczerba | |
* License: MIT | |
*/ | |
angular.module('angular-auth', []) | |
/** | |
* Holds all the requests which failed due to 401 response, | |
* so they can be re-requested in the future, once login is completed. | |
*/ | |
.factory('requests401', ['$injector', function($injector) { | |
var buffer = []; | |
var $http; //initialized later because of circular dependency problem | |
function retry(config, deferred) { | |
$http = $http || $injector.get('$http'); | |
$http(config).then(function(response) { | |
deferred.resolve(response); | |
}); | |
} | |
return { | |
add: function(config, deferred) { | |
buffer.push({ | |
config: config, | |
deferred: deferred | |
}); | |
}, | |
retryAll: function() { | |
for (var i = 0; i < buffer.length; ++i) { | |
retry(buffer[i].config, buffer[i].deferred); | |
} | |
buffer = []; | |
} | |
} | |
}]) | |
/** | |
* $http interceptor. | |
* On 401 response - it stores the request and broadcasts 'event:angular-auth-loginRequired'. | |
*/ | |
.config(function($httpProvider) { | |
var interceptor = function($rootScope, $q, requests401) { | |
function success(response) { | |
return response; | |
} | |
function error(response) { | |
var status = response.status; | |
if (status == 401) { | |
var deferred = $q.defer(); | |
requests401.add(response.config, deferred); | |
$rootScope.$broadcast('event:angular-auth-loginRequired'); | |
return deferred.promise; | |
} | |
// otherwise | |
return $q.reject(response); | |
} | |
return function(promise) { | |
return promise.then(success, error); | |
} | |
}; | |
$httpProvider.responseInterceptors.push(interceptor); | |
}); |
Any chance you would want to publish this through Bower, the new Twitter package manager?
Here's an example of how I packaged up Mocha.
FYI - I did make this available here for now...
https://github.com/Iristyle/bower-angularAuth
If you decide to take this on and maintain it, let me know.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think this may be a great thing, perfect for my project! Do you happen to have any examples of implementing this?