UNPKG

angular-jwt

Version:

Library to help you work with JWTs on AngularJS

335 lines (252 loc) 11 kB
# angular-jwt This library will help you work with [JWTs](http://jwt.io/). ## Key Features * **Decode a JWT** from your AngularJS app * Check the **expiration date** of the JWT * Automatically **send the JWT in every request** made to the server * Use **refresh tokens to always send a not expired JWT** to the server * Manage the user's authentication state with **authManager** ## Installing it You have several options: Install with either bower or npm and link to the installed file from html using script tag. ```bash bower install angular-jwt ``` ```bash npm install angular-jwt ``` ## jwtHelper jwtHelper will take care of helping you decode the token and check its expiration date. ### Decoding the Token ```js angular .module('app', ['angular-jwt']) .controller('Controller', function Controller(jwtHelper) { var expToken = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwczovL3NhbXBsZXMuYXV0aDAuY29tLyIsInN1YiI6ImZhY2Vib29rfDEwMTU0Mjg3MDI3NTEwMzAyIiwiYXVkIjoiQlVJSlNXOXg2MHNJSEJ3OEtkOUVtQ2JqOGVESUZ4REMiLCJleHAiOjE0MTIyMzQ3MzAsImlhdCI6MTQxMjE5ODczMH0.7M5sAV50fF1-_h9qVbdSgqAnXVF7mz3I6RjS6JiH0H8'; var tokenPayload = jwtHelper.decodeToken(expToken); }); ``` ### Getting the Token Expiration Date ```js angular .module('app', ['angular-jwt']) .controller('Controller', function Controller(jwtHelper) { var date = jwtHelper.getTokenExpirationDate(expToken); }); ``` ### Checking if the Token is Expired ```js angular .module('app', ['angular-jwt']) .controller('Controller', function Controller(jwtHelper) { var bool = jwtHelper.isTokenExpired(expToken); }); ``` ### More Examples You can see some more examples of how this works in [the tests](https://github.com/auth0/angular-jwt/blob/master/test/unit/angularJwt/services/jwtSpec.js) ## jwtInterceptor JWT interceptor will take care of sending the JWT in every request. ### Basic Usage ```js angular .module('app', ['angular-jwt']) .config(function Config($httpProvider, jwtOptionsProvider) { // Please note we're annotating the function so that the $injector works when the file is minified jwtOptionsProvider.config({ tokenGetter: ['myService', function(myService) { myService.doSomething(); return localStorage.getItem('id_token'); }] }); $httpProvider.interceptors.push('jwtInterceptor'); }) .controller('Controller', function Controller($http) { // If localStorage contains the id_token it will be sent in the request // Authorization: Bearer [yourToken] will be sent $http({ url: '/hola', method: 'GET' }); }); ``` ### Not Sending the JWT for Specific Requests ```js angular .module('app', ['angular-jwt']) .config(function Config($httpProvider, jwtOptionsProvider) { // Please note we're annotating the function so that the $injector works when the file is minified jwtOptionsProvider.config({ tokenGetter: ['myService', function(myService) { myService.doSomething(); return localStorage.getItem('id_token'); }] }); $httpProvider.interceptors.push('jwtInterceptor'); }) .controller('Controller', function Controller($http) { // This request will NOT send the token as it has skipAuthentication $http({ url: '/hola', skipAuthorization: true, method: 'GET' }); }); ``` ### Whitelisting Domains If you are calling an API that is on a domain other than your application's origin, you will need to whitelist it. ```js angular .module('app', ['angular-jwt']) .config(function Config($httpProvider, jwtOptionsProvider) { jwtOptionsProvider.config({ ... whiteListedDomains: ['api.myapp.com', 'localhost'] }); ``` ### Not Sending the JWT for Template Requests The `tokenGetter` method can have a parameter `options` injected by angular-jwt. This parameter is the options object of the current request. By default the interceptor will send the JWT for all HTTP requests. This includes any `ng-include` directives or `templateUrls` defined in a `state` in the `stateProvider`. If you want to avoid sending the JWT for these requests you should adapt your `tokenGetter` method to fit your needs. For example: ```js angular .module('app', ['angular-jwt']) .config(function Config($httpProvider, jwtOptionsProvider) { jwtOptionsProvider.config({ tokenGetter: ['options', function(options) { // Skip authentication for any requests ending in .html if (options.url.substr(options.url.length - 5) == '.html') { return null; } return localStorage.getItem('id_token'); }] }); $httpProvider.interceptors.push('jwtInterceptor'); }); ``` ### Sending Different Tokens Based on URLs ```js angular .module('app', ['angular-jwt']) .config(function Config($httpProvider, jwtOptionsProvider) { jwtOptionsProvider.config({ tokenGetter: ['options', function(options) { if (options.url.indexOf('http://auth0.com') === 0) { return localStorage.getItem('auth0.id_token'); } else { return localStorage.getItem('id_token'); } }] }); $httpProvider.interceptors.push('jwtInterceptor'); }) .controller('Controller', function Controller($http) { // This request will send the auth0.id_token since URL matches $http({ url: 'http://auth0.com/hola', skipAuthorization: true, method: 'GET' }); } ``` ## Managing Authentication state with authManager Almost all applications that implement authentication need some indication of whether the user is authenticated or not. The **authManager** service provides a way to determine if users are authenticated or not. This can be useful for conditionally showing and hiding different parts of the UI. ```html <button ng-if="!isAuthenticated">Log In</button> <button ng-if="isAuthenticated">Log Out</button> ``` ### Getting Authentication State on Page Refresh The authentication state that is set after login will only be good as long as the user doesn't refresh their page. If the page is refreshed, or the browser closed and reopened, the state will be lost. To check whether the user is actually authenticated when the page is refreshed, use the `checkAuthOnRefresh` method in the application's `run` block. ```js angular .module('app') .run(function(authManager) { authManager.checkAuthOnRefresh(); }); ``` ### Redirecting the User On Unauthorized Requests When the user's JWT expires and they attempt a call to a secured endpoint, a 401 - Unauthorized response will be returned. In these cases you will likely want to redirect the user back to the page/state used for authentication so they can log in again. This can be done with the `redirectWhenUnauthenticated` method in the application's `run` block. ```js angular .module('app') .run(function(authManager) { ... authManager.redirectWhenUnauthenticated(); }); ``` ### Configuring the Login State The page/state to send the user to when they are redirected because of an unauthorized request can be configured with `jwtOptionsProvider`. ```js angular .module('app', ['angular-jwt']) .config(function Config($httpProvider, jwtOptionsProvider) { jwtOptionsProvider.config({ unauthenticatedRedirectPath: '/login' }); ``` ### Configuring the Unauthenticated Redirector If you would like to control the behavior of the redirection that happens when users become unauthenticated, you can configure `jwtOptionsProvider` with a custom function. ```js angular .module('app', ['angular-jwt']) .config(function Config($httpProvider, jwtOptionsProvider) { jwtOptionsProvider.config({ unauthenticatedRedirector: ['$state', function($state) { $state.go('app.login'); }] }); ``` ### Sending the token as a URL Param ```js angular.module('app', ['angular-jwt']) .config(function Config($httpProvider, jwtOptionsProvider) { jwtOptionsProvider.config({ urlParam: 'access_token', tokenGetter: ['myService', function(myService) { myService.doSomething(); return localStorage.getItem('id_token'); }] }); $httpProvider.interceptors.push('jwtInterceptor'); }) .controller('Controller', function Controller($http) { // If localStorage contains the id_token it will be sent in the request // url will contain access_token=[yourToken] $http({ url: '/hola', method: 'GET' }); }) ``` ### More examples You can see some more examples of how this works in [the tests](https://github.com/auth0/angular-jwt/blob/master/test/unit/angularJwt/services/interceptorSpec.js) ## FAQ ### I have minification problems with angular-jwt in production. What's going on? When you're using the `tokenGetter` function, it's then called with the injector. `ngAnnotate` doesn't automatically detect that this function receives services as parameters, therefore you must either annotate this method for `ngAnnotate` to know, or use it like follows: ```js jwtOptionsProvider({ tokenGetter: ['store', '$http', function(store, $http) { ... }] }); ``` ## Usages This library is used in [auth0-angular](https://github.com/auth0/auth0-angular) and [angular-lock](https://github.com/auth0/angular-lock). ## Contributing Just clone the repo, run `npm install`, `bower install` and then `gulp` to work :). ## Issue Reporting If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The [Responsible Disclosure Program](https://auth0.com/whitehat) details the procedure for disclosing security issues. ## What is Auth0? Auth0 helps you to: * Add authentication with [multiple authentication sources](https://docs.auth0.com/identityproviders), either social like **Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, amont others**, or enterprise identity systems like **Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider**. * Add authentication through more traditional **[username/password databases](https://docs.auth0.com/mysql-connection-tutorial)**. * Add support for **[linking different user accounts](https://docs.auth0.com/link-accounts)** with the same user. * Support for generating signed [Json Web Tokens](https://docs.auth0.com/jwt) to call your APIs and **flow the user identity** securely. * Analytics of how, when and where users are logging in. * Pull data from other sources and add it to the user profile, through [JavaScript rules](https://docs.auth0.com/rules). ## Create a free account in Auth0 1. Go to [Auth0](https://auth0.com) and click Sign Up. 2. Use Google, GitHub or Microsoft Account to login. ## Author [Auth0](https://auth0.com) ## License This project is licensed under the MIT license. See the [LICENSE](LICENSE) file for more info.