First version
[src/app-framework-demo.git] / afm-client / app / Frontend / widgets / Notifications / TokenRefreshSvc.js
1 /*
2  alsa-gateway -- provide a REST/HTTP interface to ALSA-Mixer
3
4  Copyright (C) 2015, Fulup Ar Foll
5
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.
10
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.
15
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.
19
20  References:
21
22  */
23
24 (function () {
25     'use strict';
26
27     var template =
28           '<div class="afb-monitor" ng-click="getping()">' +
29          '<span class="afb-refresh-token"  >afb://{{hostname}}:{{httpdport}}</span>' +
30          '<i class="{{icon}}"></i>' +
31          '</div>';
32
33
34 // scope module is load statically before any route is cativated
35 angular.module('TokenRefresh', ['AppConfig', 'ModalNotification'])
36
37     .directive ('tokenRefresh', function($timeout, $http, $location, Notification, AppConfig) {
38
39     function mymethods(scope, elem, attrs) {
40         scope.status=undefined; // neither thu neither false
41         
42     
43         scope.online = function () {
44             elem.addClass    ("online");
45             elem.removeClass ("offline");
46         };
47
48         scope.offline = function(){
49             elem.addClass    ("offline");
50             elem.removeClass ("online");
51         };
52         
53         scope.onerror = function(data, errcode, headers) {
54             if (scope.status !== false)  {
55                 Notification.warning ({message: "AppFramework Binder Lost", delay: 5000});
56                 scope.offline();
57             }
58             scope.status = 0;
59         };
60         
61         scope.onsuccess = function(data, errcode, headers, config) {
62             if (scope.status !== true)  {
63                 if (data.request.token) AppConfig.session.token = data.request.token;
64                 if (data.request.uuid)  AppConfig.session.uuid  = data.request.uuid;
65                 if (data.request.timeout)  AppConfig.session.timeout  = data.request.timeout;
66
67                 Notification.success ({message: "AppFramework Binder Back to Live", delay: 3000});
68                 scope.online();
69                 if (scope.callback) scope.callback();
70             }
71             scope.status = 1;
72         };
73
74         // Check Binder status
75         scope.getping = function() {
76
77             var handler = $http.get(AppConfig.session.ping+'?token='+ AppConfig.session.token);
78             
79             // process success and error
80             handler.success(scope.onsuccess);
81             handler.error(scope.onerror);
82
83             // restart a new timer for next ping
84             $timeout (scope.getping, AppConfig.session.pingrate*1000);
85         };
86         
87         // Check Binder status
88         scope.refresh = function() {
89             var handler = $http.get(AppConfig.session.refresh+'?token='+ AppConfig.session.token);
90             
91             // process success and error
92             handler.success(scope.onsuccess);
93             handler.error(scope.onerror);
94             // restart a new timer for next refresh to 1/4 of timeout session
95             $timeout (scope.refresh, AppConfig.session.timeout *250);
96         };
97         
98         // Initial connection
99         scope.tkcreate = function() {
100             var handler = $http.get(AppConfig.session.create+'?token='+ AppConfig.session.initial);
101             
102             // process success and error
103             handler.success(scope.onsuccess);
104             handler.error(scope.onerror);
105         };
106  
107         scope.icon      = attrs.icon   || "fi-lightbulb";
108         scope.hostname  = $location.host();
109         scope.httpdport = $location.port();
110         scope.autolog   = JSON.parse(attrs.autolog || false);
111         
112         if (scope.autolog) scope.tkcreate();
113
114         // Init ping and refresh process
115         $timeout (scope.getping, AppConfig.session.pingrate*1000);
116         $timeout (scope.refresh, AppConfig.session.timeout *250);
117     }
118
119     return {
120         template: template,
121         scope: {
122             callback : "="
123         },
124         restrict: 'E',
125         link: mymethods
126     };
127 });
128
129 })();
130 console.log ("Token Refresh Loaded");
131