/* 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 = '
' + 'afb://{{hostname}}:{{httpdport}}' + '' + '
'; // 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 ("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) { if (jresp.request.status !== "success") { Notification.warning ({message: jresp.request.info, delay: 5000}); scope.offline(); return; } if (jresp.request.token) AppConfig.session.token = jresp.request.token; if (jresp.request.uuid) AppConfig.session.uuid = jresp.request.uuid; if (jresp.request.timeout) AppConfig.session.timeout = jresp.request.timeout; if (scope.logged !== true) { Notification.success ({message: "AppFramework Binder Back to Live", delay: 3000}); scope.online(); if (scope.callback) scope.callback(jresp); } scope.status = 1; }; // Check Binder status scope.getping = function() { AppCall.get ("token", "ping", {/*query*/},function(jresp, errcode) { if (errcode) scope.onerror(); else scope.onsuccess (jresp); // restart a new timer for next ping $timeout (scope.getping, AppConfig.session.pingrate*1000); }); }; // Check Binder status scope.refresh = function() { AppCall.get ("token", "refresh", {/*query*/},function(jresp, errcode) { if (errcode) scope.onerror(); else scope.onsuccess (jresp); // restart a new timer for next refresh $timeout (scope.refresh, AppConfig.session.timeout *250); }); }; // Initial connection scope.tkcreate = function() { AppCall.get ("token", "create", {token: AppConfig.session.initial},function(jresp, errcode) { if (errcode) scope.onerror(); else scope.onsuccess (jresp); }); }; scope.icon = attrs.icon || "fi-lightbulb"; scope.hostname = $location.host(); scope.httpdport = $location.port(); scope.autolog = JSON.parse(attrs.autolog || false); if (scope.autolog) scope.tkcreate(); // Init ping and refresh process $timeout (scope.getping, AppConfig.session.pingrate*1000); $timeout (scope.refresh, AppConfig.session.timeout *250); } return { template: template, scope: { callback : "=" }, restrict: 'E', link: mymethods }; }); })(); console.log ("Token Refresh Loaded");