X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-demo.git;a=blobdiff_plain;f=afb-client%2Fapp%2FFrontend%2Fwidgets%2FNotifications%2FTokenRefreshSvc.js;fp=afb-client%2Fapp%2FFrontend%2Fwidgets%2FNotifications%2FTokenRefreshSvc.js;h=834aaff293f79a312c57c67e57ea3f17c4a626cd;hp=0d1cf3840f70e38dcca942541a71ed11044f0f68;hb=07bbb1900acc411da012291f6c0530230a1110e0;hpb=b9b2a4e990f6a0a80281bd21132152b79665c3d2 diff --git a/afb-client/app/Frontend/widgets/Notifications/TokenRefreshSvc.js b/afb-client/app/Frontend/widgets/Notifications/TokenRefreshSvc.js index 0d1cf38..834aaff 100644 --- a/afb-client/app/Frontend/widgets/Notifications/TokenRefreshSvc.js +++ b/afb-client/app/Frontend/widgets/Notifications/TokenRefreshSvc.js @@ -37,8 +37,8 @@ angular.module('TokenRefresh', ['ConfigApp', 'ModalNotification']) .directive ('tokenRefresh', function($timeout, $http, $location, Notification, ConfigApp) { function mymethods(scope, elem, attrs) { + scope.status=undefined; // neither thu neither false - scope.status=false; scope.online = function () { elem.addClass ("online"); @@ -49,26 +49,35 @@ angular.module('TokenRefresh', ['ConfigApp', 'ModalNotification']) elem.addClass ("offline"); elem.removeClass ("online"); }; + + scope.onerror = function(data, errcode, headers) { + if (scope.status !== false) { + Notification.warning ({message: "AppFramework Binder Lost", delay: 5000}); + scope.offline(); + } + scope.status = 0; + }; + + scope.onsuccess = function(data, errcode, headers, config) { + if (scope.status !== true) { + if (data.request.token) ConfigApp.session.token = data.request.token; + if (data.request.uuid) ConfigApp.session.uuid = data.request.uuid; + if (data.request.timeout) ConfigApp.session.timeout = data.request.timeout; + + Notification.success ({message: "AppFramework Binder Back to Live", delay: 3000}); + scope.online(); + } + scope.status = 1; + }; // Check Binder status scope.getping = function() { var handler = $http.post(ConfigApp.session.ping+'?token='+ ConfigApp.session.token); - handler.success(function(response, errcode, headers, config) { - if (!scope.status) { - Notification.success ({message: "AppFramework Binder Back to Live", delay: 3000}); - scope.online(); - } - scope.status = 1; - }); - - handler.error(function(response, errcode, headers) { - if (scope.status) { - Notification.warning ({message: "AppFramework Binder Lost", delay: 5000}); - scope.offline(); - } - scope.status = 0; - }); + + // process success and error + handler.success(scope.onsuccess); + handler.error(scope.onerror); // restart a new timer for next ping $timeout (scope.getping, ConfigApp.session.pingrate*1000); @@ -77,15 +86,33 @@ angular.module('TokenRefresh', ['ConfigApp', 'ModalNotification']) // Check Binder status scope.refresh = function() { var handler = $http.post(ConfigApp.session.refresh+'?token='+ ConfigApp.session.token); + + // process success and error + handler.success(scope.onsuccess); + handler.error(scope.onerror); + // restart a new timer for next refresh to 1/4 of timeout session $timeout (scope.refresh, ConfigApp.session.timeout *250); }; + + // Initial connection + scope.tkcreate = function() { + var handler = $http.post(ConfigApp.session.create+'?token='+ ConfigApp.session.initial); + + // process success and error + handler.success(scope.onsuccess); + handler.error(scope.onerror); + }; scope.icon = attrs.icon || "fi-lightbulb"; scope.hostname = $location.host(); scope.httpdport = $location.port(); + scope.autolog = JSON.parse(attrs.autolog || false); - scope.getping(); - scope.refresh(); + if (scope.autolog) scope.tkcreate(); + + // Init ping and refresh process + $timeout (scope.getping, ConfigApp.session.pingrate*1000); + $timeout (scope.refresh, ConfigApp.session.timeout *250); } return {