summaryrefslogtreecommitdiffstats
path: root/afb-client
diff options
context:
space:
mode:
authorFulup Ar Foll <fulup@iot.bzh>2016-02-15 15:36:19 +0100
committerFulup Ar Foll <fulup@iot.bzh>2016-02-15 15:36:19 +0100
commitfb1353dbc12ae889c17a6aa1572b917f57de0f9d (patch)
treed83488e1eccc518578e9749c828da027b283818c /afb-client
parentceafc991147b17a52eab0a26cee5331b647a38f2 (diff)
TokenRefresh added Logout
Diffstat (limited to 'afb-client')
-rw-r--r--afb-client/app/Frontend/widgets/Notifications/TokenRefreshSvc.js57
1 files changed, 31 insertions, 26 deletions
diff --git a/afb-client/app/Frontend/widgets/Notifications/TokenRefreshSvc.js b/afb-client/app/Frontend/widgets/Notifications/TokenRefreshSvc.js
index 25cb3a4..c4a086e 100644
--- a/afb-client/app/Frontend/widgets/Notifications/TokenRefreshSvc.js
+++ b/afb-client/app/Frontend/widgets/Notifications/TokenRefreshSvc.js
@@ -34,11 +34,17 @@
// scope module is load statically before any route is cativated
angular.module('TokenRefresh', ['AppConfig', 'ModalNotification'])
- .directive ('tokenRefresh', function($timeout, $http, $location, Notification, AppConfig) {
+ .directive ('tokenRefresh', function($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 () {
+ console.log("OPA Exit Requested");
+ });
+ };
+
scope.online = function () {
elem.addClass ("online");
elem.removeClass ("offline");
@@ -51,7 +57,7 @@ angular.module('TokenRefresh', ['AppConfig', 'ModalNotification'])
scope.logged=false;
};
- scope.onerror = function(data, errcode, headers) {
+ scope.onerror = function() {
if (scope.logged !== false) {
Notification.warning ({message: "AppFramework Binder Lost", delay: 5000});
scope.offline();
@@ -59,49 +65,48 @@ angular.module('TokenRefresh', ['AppConfig', 'ModalNotification'])
scope.status = 0;
};
- scope.onsuccess = function(data, errcode, headers, config) {
- if (data.request.token) AppConfig.session.token = data.request.token;
- if (data.request.uuid) AppConfig.session.uuid = data.request.uuid;
- if (data.request.timeout) AppConfig.session.timeout = data.request.timeout;
+ scope.onsuccess = function(jresp) {
+ 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();
+ if (scope.callback) scope.callback(jresp);
}
scope.status = 1;
};
// Check Binder status
scope.getping = function() {
-
- var handler = $http.get(AppConfig.session.ping+'?token='+ AppConfig.session.token);
- // process success and error
- handler.success(scope.onsuccess);
- handler.error(scope.onerror);
-
- // restart a new timer for next ping
- $timeout (scope.getping, AppConfig.session.pingrate*1000);
+ AppCall.get ("token", "ping", {/*query*/},function(result) {
+ if (result.status === 200) scope.onsuccess (result.data);
+ else scope.onerror();
+ // restart a new timer for next ping
+ $timeout (scope.getping, AppConfig.session.pingrate*1000);
+ });
};
// Check Binder status
scope.refresh = function() {
- var handler = $http.get(AppConfig.session.refresh+'?token='+ AppConfig.session.token);
- // process success and error
- handler.success(scope.onsuccess);
- handler.error(scope.onerror);
- // restart a new timer for next refresh to 1/4 of timeout session
- $timeout (scope.refresh, AppConfig.session.timeout *250);
+ AppCall.get ("token", "refresh", {/*query*/},function(result) {
+ if (result.status === 200) scope.onsuccess (result.data);
+ else scope.onerror();
+ // restart a new timer for next refresh
+ $timeout (scope.refresh, AppConfig.session.timeout *250);
+ });
};
// Initial connection
scope.tkcreate = function() {
- var handler = $http.get(AppConfig.session.create+'?token='+ AppConfig.session.initial);
- // process success and error
- handler.success(scope.onsuccess);
- handler.error(scope.onerror);
+ AppCall.get ("token", "create", {token: AppConfig.session.initial},function(result) {
+ if (result.status === 200) scope.onsuccess (result.data);
+ else scope.onerror();
+ });
};
scope.icon = attrs.icon || "fi-lightbulb";
bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */