From 8bcabee6ddf793f28c9593ca8864d7c00440c6ec Mon Sep 17 00:00:00 2001 From: Alexis Lahouze Date: Fri, 18 Dec 2015 10:52:31 +0100 Subject: [PATCH] Add authentication in frontend. --- accountant/frontend/static/js/app.js | 125 ++++++++++++++++++---- accountant/frontend/templates/layout.html | 6 +- 2 files changed, 111 insertions(+), 20 deletions(-) diff --git a/accountant/frontend/static/js/app.js b/accountant/frontend/static/js/app.js index b335ccf..248a478 100644 --- a/accountant/frontend/static/js/app.js +++ b/accountant/frontend/static/js/app.js @@ -19,28 +19,33 @@ var accountantApp = angular.module("accountantApp", [ "mgcrea.ngStrap", "highcharts-ng", "jlareau.pnotify", + "http-auth-interceptor", + "Storage.Service", "xeditable" ]) -.config(function($httpProvider, $routeProvider, $locationProvider) { - // Define interceptors. - $httpProvider.interceptors.push(function($q, notificationService) { - return { - "response": function(response) { - if(response.data.ok === false) { - return $q.reject(response); - } - // TODO Intercept validation error. - return response; - }, +.factory("sessionInjector", ["$storage", function($storage) { + var sessionInjector = { + request : function(config) { + var token = $storage.get('token'); - "responseError": function(response) { - // TODO Intercept Authentication Required error - notificationService.error(response.data.text); - return $q.reject(response); + if(token) { + var token_type = $storage.get('token_type'); + var authorization = token_type + " " + token; + config.headers["Authorization"] = authorization; } - }; - }); + return config; + } + }; + + return sessionInjector; +}]) + + +.config(["$httpProvider", "$routeProvider", "$locationProvider", "$storageProvider", + function($httpProvider, $routeProvider, $locationProvider, $storageProvider) { + // Define interceptors. + $httpProvider.interceptors.push('sessionInjector'); // Defining template and controller in function of route. $routeProvider.when('/account/:accountId/operations', { @@ -58,9 +63,93 @@ var accountantApp = angular.module("accountantApp", [ // Enable HTML5 mode. $locationProvider.html5Mode(true); -}) + + // Configure storage + // Set global prefix for stored keys + $storageProvider.setPrefix("accountant"); + + // Change the default storage engine + // Defaults to "local" + $storageProvider.setDefaultStorageEngine("session"); + + // Change the enabled storage engines + // Defaults to ['memory', 'cookie', 'session', 'local'] + $storageProvider.setEnabledStorageEngines(['local', 'session']); +}]) .run(function(editableOptions) { editableOptions.theme = 'bs3'; // bootstrap3 theme. Can be also 'bs2', 'default' }) + +.controller("MainController", [ + "$scope", "$rootScope", "$http", "authService", "notify", "$storage", + function($scope, $rootScope, $http, authService, notify, $storage) { + $scope.dialogShown = false; + + $scope.showLoginForm = function(e) { + // First, if there are registered credentials, use them + if($scope.dialogShown) { + return; + } + + $scope.dialogShown = true; + + bootbox.dialog({ + title: "Authentification requise", + message: '
' + + '
' + + ' ' + + '
' + + ' ' + + '
' + + '
' + + '
' + + ' ' + + '
' + + ' ' + + '
' + + '
' + + ' ' + + '
', + buttons: { + login: { + label: "Login", + className: "btn-primary", + callback: function(result) { + $scope.dialogShown = false; + + var email = $('#email').val(); + var password = $('#password').val(); + $http.post( + "/api/users/login", + { + "email": email, + "password": password + } + ).success(function(result) { + // TODO Alexis Lahouze 2015-08-28 Handle callback. + // Call to /api/login to retrieve the token + $storage.set('token_type', result.token_type); + $storage.set('token', result.token); + $storage.set('expiration_date', result.expiration_date); + + authService.loginConfirmed(); + }); + } + }, + cancel: { + label: "Annuler", + className: "btn-default", + callback: function(result) { + authService.loginCancelled(null, "Login cancelled by user action."); + $scope.dialogShown = false; + } + } + } + }); + }; + + $rootScope.$on("event:auth-loginRequired", $scope.showLoginForm); +}]) + ; diff --git a/accountant/frontend/templates/layout.html b/accountant/frontend/templates/layout.html index 91633bc..26a574e 100644 --- a/accountant/frontend/templates/layout.html +++ b/accountant/frontend/templates/layout.html @@ -75,6 +75,8 @@ + + @@ -83,7 +85,7 @@ -