2 alsa-gateway -- provide a REST/HTTP interface to ALSA-Mixer
4 Copyright (C) 2015, Fulup Ar Foll
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with scope program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 '<div class="afb-monitor" ng-click="getping()">' +
29 '<span class="afb-refresh-token" >afb://{{hostname}}:{{httpdport}}</span>' +
30 '<i class="{{icon}}"></i>' +
34 // scope module is load statically before any route is cativated
35 angular.module('TokenRefresh', ['AppConfig', 'ModalNotification'])
37 .directive ('tokenRefresh', function($log, $window, $timeout, $location, Notification, AppConfig, AppCall) {
39 function mymethods(scope, elem, attrs) {
40 scope.logged=undefined; // neither thu neither false
42 $window.onbeforeunload = function () {
43 AppCall.get ("token", "reset", {/*query*/}, function () {
48 scope.online = function () {
49 elem.addClass ("online");
50 elem.removeClass ("offline");
54 scope.offline = function(){
55 elem.addClass ("offline");
56 elem.removeClass ("online");
60 scope.onerror = function() {
61 if (scope.logged !== false) {
62 Notification.warning ({message: "AppFramework Binder Lost", delay: 5000});
68 scope.onsuccess = function(jresp, errcode) {
70 if (errcode !== 200 || jresp.request.status !== "success") {
71 Notification.warning ({message: "auto-connect :" + jresp.request.info, delay: 10000});
76 if (scope.logged !== true) {
77 Notification.success ({message: "AppFramework Binder Connected", delay: 3000});
79 if (scope.callback) scope.callback(jresp);
86 // Check Binder status
87 scope.getping = function() {
89 AppCall.get (scope.plugin, "ping", {/*query*/},function(jresp, errcode) {
90 if (errcode !== 200 || jresp.request.status !== "success") {
91 Notification.warning ({message: jresp.request.info, delay: 5000});
95 // restart a new timer for next ping
96 $timeout (scope.getping, AppConfig.session.pingrate*1000);
100 // Check Binder status
101 scope.refresh = function() {
103 AppCall.get (scope.plugin, "refresh", {/*query*/}, function(jresp, errcode) {
105 scope.onsuccess (jresp, errcode);
107 // restart a new timer for next refresh
108 $timeout (scope.refresh, AppConfig.session.timeout *250);
112 // Initial connection
113 scope.loggin = function() {
114 AppCall.get (scope.plugin, "connect", {token: AppConfig.session.initial}, function(jresp, errcode) {
116 if (!scope.onsuccess (jresp, errcode)) return;
118 // Intial token was accepted let's start ping & refresh
119 $timeout (scope.getping, AppConfig.session.pingrate*1000);
120 $timeout (scope.refresh, AppConfig.session.timeout *250);
126 // Parse Widget Parameters
127 scope.plugin = attrs.plugin || "auth";
128 scope.icon = attrs.icon || "fi-lightbulb";
129 scope.hostname = $location.host();
130 scope.httpdport = $location.port();
131 scope.autolog = JSON.parse(attrs.autolog || false);
133 // autostart log if requested
134 if (scope.autolog) scope.loggin();
149 console.log ("Token Refresh Loaded");