diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-04 13:59:00 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-15 18:21:42 +0200 |
commit | e3d26a820db76f006ec364c90dc54a689446d998 (patch) | |
tree | ae7a80f266445fd6a3bb29abb25ac231d18e7516 /templates/hybrid-html5/app/Frontend/widgets/Notifications/TokenRefreshSvc.js | |
parent | 02075924e861edb74935266cc722d362af87a9f0 (diff) |
Rename to more meaningful name directories
Change-Id: Ib3990308c1f2358b3e330cd0068719098c4dab56
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'templates/hybrid-html5/app/Frontend/widgets/Notifications/TokenRefreshSvc.js')
-rw-r--r-- | templates/hybrid-html5/app/Frontend/widgets/Notifications/TokenRefreshSvc.js | 149 |
1 files changed, 149 insertions, 0 deletions
diff --git a/templates/hybrid-html5/app/Frontend/widgets/Notifications/TokenRefreshSvc.js b/templates/hybrid-html5/app/Frontend/widgets/Notifications/TokenRefreshSvc.js new file mode 100644 index 0000000..2c7c3da --- /dev/null +++ b/templates/hybrid-html5/app/Frontend/widgets/Notifications/TokenRefreshSvc.js @@ -0,0 +1,149 @@ +/* + alsa-gateway -- provide a REST/HTTP interface to ALSA-Mixer + + Copyright (C) 2015, Fulup Ar Foll + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with scope program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + + References: + + */ + +(function () { + 'use strict'; + + var template = + '<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', ['AppConfig', 'ModalNotification']) + + .directive ('tokenRefresh', function($log, $window, $timeout, $location, Notification, AppConfig, AppCall) { + + function mymethods(scope, elem, attrs) { + scope.logged=undefined; // neither thu neither false + + $window.onbeforeunload = function () { + AppCall.get (scope.plugin, "logout", {/*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: "auto-connect :" + jresp.request.info, delay: 10000}); + 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() { + + 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; + } + // restart a new timer for next ping + $timeout (scope.getping, AppConfig.session.pingrate*1000); + }, scope.onerror); + }; + + // Check Binder status + scope.refresh = function() { + + 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, "connect", {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(); + + } + + return { + template: template, + scope: { + callback : "=" + }, + restrict: 'E', + link: mymethods + }; +}); + +})(); +console.log ("Token Refresh Loaded"); |