4d7aed68713376c0ab651095b3aa63ff07a8e6f9
[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($log, $window, $timeout, $location, Notification, AppConfig, AppCall) {
38
39     function mymethods(scope, elem, attrs) {
40         scope.logged=undefined; // neither thu neither false
41         
42         $window.onbeforeunload = function () {
43             AppCall.get ("token", "reset", {/*query*/}, function () {    
44             $log.log("OPA exit");            
45             });
46         };
47                  
48         scope.online = function () {
49             elem.addClass    ("online");
50             elem.removeClass ("offline");
51             scope.logged=true;
52         };
53
54         scope.offline = function(){
55             elem.addClass    ("offline");
56             elem.removeClass ("online");
57             scope.logged=false;
58         };
59         
60         scope.onerror = function() {
61             if (scope.logged !== false)  {
62                 Notification.warning ({message: "AppFramework Binder Lost", delay: 5000});
63                 scope.offline();
64             }
65             scope.status = 0;
66         };
67         
68         scope.onsuccess = function(jresp) {
69             if (jresp.request.token) AppConfig.session.token = jresp.request.token;
70             if (jresp.request.uuid)  AppConfig.session.uuid  = jresp.request.uuid;
71             if (jresp.request.timeout)  AppConfig.session.timeout  = jresp.request.timeout;
72             
73             if (scope.logged !== true)  {
74                 Notification.success ({message: "AppFramework Binder Back to Live", delay: 3000});
75                 scope.online();
76                 if (scope.callback) scope.callback(jresp);
77             }
78             scope.status = 1;
79         };
80
81         // Check Binder status
82         scope.getping = function() {
83             
84             AppCall.get ("token", "ping", {/*query*/},function(result) {
85                 if (result.status === 200) scope.onsuccess (result.data);
86                 else  scope.onerror();
87                 // restart a new timer for next ping
88                 $timeout (scope.getping, AppConfig.session.pingrate*1000);
89             });
90         };
91         
92         // Check Binder status
93         scope.refresh = function() {
94             
95             AppCall.get ("token", "refresh", {/*query*/},function(result) {
96                 if (result.status === 200) scope.onsuccess (result.data);
97                 else  scope.onerror();
98                 // restart a new timer for next refresh
99                 $timeout (scope.refresh, AppConfig.session.timeout *250);
100             });            
101         };
102         
103         // Initial connection
104         scope.tkcreate = function() {
105             
106             AppCall.get ("token", "create", {token: AppConfig.session.initial},function(result) {
107                 if (result.status === 200) scope.onsuccess (result.data);
108                 else  scope.onerror();
109             });                        
110         };
111  
112         scope.icon      = attrs.icon   || "fi-lightbulb";
113         scope.hostname  = $location.host();
114         scope.httpdport = $location.port();
115         scope.autolog   = JSON.parse(attrs.autolog || false);
116         
117         if (scope.autolog) scope.tkcreate();
118
119         // Init ping and refresh process
120         $timeout (scope.getping, AppConfig.session.pingrate*1000);
121         $timeout (scope.refresh, AppConfig.session.timeout *250);
122     }
123
124     return {
125         template: template,
126         scope: {
127             callback : "="
128         },
129         restrict: 'E',
130         link: mymethods
131     };
132 });
133
134 })();
135 console.log ("Token Refresh Loaded");
136