Update to LoginClient Plugin
[src/app-framework-demo.git] / afb-client / app / Frontend / widgets / Notifications / TokenRefreshSvc.js
index 1671748..3e5e8d6 100644 (file)
     'use strict';
 
     var template =
-          '<div class="afb-monitor">'
-        + '<span class="afb-refresh-token" ng-click="getping" >afb://{{hostname}}:{{httpdport}}</span>'
-        + '<i class="{{icon}}"></i>'
-        + '</div>'
-        ;
+          '<div class="afb-monitor" ng-click="getping()">' +
+         '<span class="afb-refresh-token"  >afb://{{hostname}}:{{httpdport}}</span>' +
+         '<i class="{{icon}}"></i>' +
+         '</div>';
 
 
 // scope module is load statically before any route is cativated
-angular.module('TokenRefresh', [])
+angular.module('TokenRefresh', ['AppConfig', 'ModalNotification'])
 
-    .directive ('tokenRefresh', function($timeout, $http, $location, Notification, ConfigApp) {
+    .directive ('tokenRefresh', function($log, $window, $timeout, $location, Notification, AppConfig, AppCall) {
 
     function mymethods(scope, elem, attrs) {
+        scope.logged=undefined; // neither thu neither false
         
-        scope.status;
-    
+        $window.onbeforeunload = function () {
+            AppCall.get ("token", "reset", {/*query*/}, function () {    
+            $log.log("OPA exit");            
+            });
+        };
+                 
         scope.online = function () {
             elem.addClass    ("online");
             elem.removeClass ("offline");
+            scope.logged=true;
         };
 
         scope.offline = function(){
             elem.addClass    ("offline");
             elem.removeClass ("online");
+            scope.logged=false;
+        };
+        
+        scope.onerror = function() {
+            if (scope.logged !== false)  {
+                Notification.warning ({message: "AppFramework Binder Lost", delay: 5000});
+                scope.offline();
+            }
+            scope.status = 0;
+        };
+        
+        scope.onsuccess = function(jresp, errcode) {
+            
+            if (errcode !== 200 || jresp.request.status !== "success") {
+                Notification.warning ({message: jresp.request.info, delay: 5000});
+                scope.offline(); 
+                return false;
+            }
+            
+            if (scope.logged !== true)  {
+                Notification.success ({message: "AppFramework Binder Connected", delay: 3000});
+                scope.online();
+                if (scope.callback) scope.callback(jresp);
+            }
+            
+            scope.status = 1;            
+            return true;
         };
 
         // Check Binder status
         scope.getping = function() {
-
-            var handler = $http.get(ConfigApp.api.ping+'xx?token='+ ConfigApp.session.token);
-            handler.success(function(response, errcode, headers, config) {
-                if (!scope.status)  {
-                    Notification.success ({message: "AFB Back to Live", delay: 3000});
-                    scope.online();
-                }
-                scope.status = 1;
-            });
-
-            handler.error(function(response, errcode, headers) {
-                if (scope.status)  {
-                    Notification.warning ({message: "AFB Lost", delay: 5000});
-                    scope.offline();
+            
+            AppCall.get (scope.plugin, "ping", {/*query*/},function(jresp, errcode) {
+                if (errcode !== 200 || jresp.request.status !== "success") {
+                    Notification.warning ({message: jresp.request.info, delay: 5000});
+                    scope.offline(); 
+                    return;
                 }
-                scope.status = 0;
-            });
-
-            // restart a new timer for next ping
-            $timeout (scope.getping, ConfigApp.session.pingrate*1000);
+                // restart a new timer for next ping
+                $timeout (scope.getping, AppConfig.session.pingrate*1000);
+            }, scope.onerror);
         };
         
         // Check Binder status
         scope.refresh = function() {
-            var handler = $http.get(ConfigApp.api.refresh+'?token='+ ConfigApp.session.token);
-            $timeout (scope.refresh, ConfigApp.session.timeout *800);
+            
+            AppCall.get (scope.plugin, "refresh", {/*query*/}, function(jresp, errcode) {
+
+                scope.onsuccess (jresp, errcode);
+                
+                // restart a new timer for next refresh
+                $timeout (scope.refresh, AppConfig.session.timeout *250);
+            }, scope.onerror);            
         };
+        
+        // Initial connection
+        scope.loggin = function() {            
+            AppCall.get (scope.plugin, "login", {token: AppConfig.session.initial}, function(jresp, errcode) {
+                
+                if (!scope.onsuccess (jresp, errcode)) return;
+                
+                // Intial token was accepted let's start ping & refresh
+                $timeout (scope.getping, AppConfig.session.pingrate*1000);
+                $timeout (scope.refresh, AppConfig.session.timeout *250);
  
+            }, scope.onerror);
+        };
+
+
+        // Parse Widget Parameters
+        scope.plugin    = attrs.plugin || "auth";
         scope.icon      = attrs.icon   || "fi-lightbulb";
         scope.hostname  = $location.host();
         scope.httpdport = $location.port();
+        scope.autolog   = JSON.parse(attrs.autolog || false);
+        
+        // autostart log if requested
+        if (scope.autolog) scope.loggin();
         
-        scope.getping();
-        scope.refresh();
     }
 
     return {
@@ -101,4 +147,3 @@ angular.module('TokenRefresh', [])
 
 })();
 console.log ("Token Refresh Loaded");
-