blob: 16f2607f5070d4d2cf9a80f85a04e4a0990f5fbd [file] [log] [blame]
Simon Huntc7ae7952015-04-08 18:59:27 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Simon Huntc7ae7952015-04-08 18:59:27 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/*
18 ONOS GUI -- Util -- User Preference Service
19 */
20(function () {
21 'use strict';
22
23 // injected refs
Thomas Vachuska0af26912016-03-21 21:37:30 -070024 var $log, fs, wss;
Simon Huntc7ae7952015-04-08 18:59:27 -070025
26 // internal state
Simon Huntf51bf462016-06-29 16:22:57 -070027 var cache = {},
28 listeners = [];
Simon Huntc7ae7952015-04-08 18:59:27 -070029
Simon Hunt8a119b02016-03-29 16:00:32 -070030 // returns the preference settings for the specified key
31 function getPrefs(name, defaults, qparams) {
32 var obj = angular.extend({}, defaults || {}, cache[name] || {});
33
34 // if query params are specified, they override...
35 if (fs.isO(qparams)) {
36 angular.forEach(obj, function (v, k) {
37 if (qparams.hasOwnProperty(k)) {
38 obj[k] = qparams[k];
39 }
40 });
41 }
42 return obj;
Simon Huntc7ae7952015-04-08 18:59:27 -070043 }
44
Simon Huntfcbde892015-04-16 12:05:28 -070045 // converts string values to numbers for selected (or all) keys
Simon Huntfc5c5842017-02-01 23:32:18 -080046 // asNumbers(obj, ['a', 'b']) <-- convert keys .a, .b to numbers
47 // asNumbers(obj, ['a', 'b'], true) <-- convert ALL BUT keys .a, .b to numbers
48
49 function asNumbers(obj, keys, not) {
Simon Huntfcbde892015-04-16 12:05:28 -070050 if (!obj) return null;
51
Simon Huntfc5c5842017-02-01 23:32:18 -080052 var skip = {};
53 if (not) {
54 keys.forEach(function (k) {
55 skip[k] = 1;
56 });
57 }
58
59 if (!keys || not) {
Simon Huntfcbde892015-04-16 12:05:28 -070060 // do them all
61 angular.forEach(obj, function (v, k) {
Simon Huntfc5c5842017-02-01 23:32:18 -080062 if (!not || !skip[k]) {
63 obj[k] = Number(obj[k]);
64 }
Simon Huntfcbde892015-04-16 12:05:28 -070065 });
66 } else {
Simon Huntfc5c5842017-02-01 23:32:18 -080067 // do the explicitly named keys
Simon Huntfcbde892015-04-16 12:05:28 -070068 keys.forEach(function (k) {
69 obj[k] = Number(obj[k]);
70 });
71 }
72 return obj;
73 }
74
Simon Huntc7ae7952015-04-08 18:59:27 -070075 function setPrefs(name, obj) {
Thomas Vachuska0af26912016-03-21 21:37:30 -070076 // keep a cached copy of the object and send an update to server
Simon Huntc7ae7952015-04-08 18:59:27 -070077 cache[name] = obj;
Thomas Vachuska0af26912016-03-21 21:37:30 -070078 wss.sendEvent('updatePrefReq', { key: name, value: obj });
79 }
80
81 function updatePrefs(data) {
Thomas Vachuska341310c2016-03-24 10:14:13 -070082 cache = data;
Simon Hunt8a119b02016-03-29 16:00:32 -070083 listeners.forEach(function (lsnr) { lsnr(); });
Thomas Vachuska341310c2016-03-24 10:14:13 -070084 }
85
86 function addListener(listener) {
87 listeners.push(listener);
88 }
89
90 function removeListener(listener) {
91 listeners = listeners.filter(function(obj) { return obj === listener; });
Simon Huntc7ae7952015-04-08 18:59:27 -070092 }
93
94 angular.module('onosUtil')
Thomas Vachuska0af26912016-03-21 21:37:30 -070095 .factory('PrefsService', ['$log', 'FnService', 'WebSocketService',
96 function (_$log_, _fs_, _wss_) {
Simon Huntc7ae7952015-04-08 18:59:27 -070097 $log = _$log_;
Simon Hunt4deb0e82015-06-10 16:18:25 -070098 fs = _fs_;
Thomas Vachuska0af26912016-03-21 21:37:30 -070099 wss = _wss_;
100
Matteo Scandolocf060772016-05-13 15:54:44 -0700101 try {
102 cache = angular.isDefined(userPrefs) ? userPrefs : {};
103 }
104 catch(e){
105 // browser throws error for non-existing globals
106 cache = {}
107 }
Thomas Vachuska0af26912016-03-21 21:37:30 -0700108
109 wss.bindHandlers({
110 updatePrefs: updatePrefs
111 });
Simon Huntc7ae7952015-04-08 18:59:27 -0700112
113 return {
114 getPrefs: getPrefs,
Simon Huntfcbde892015-04-16 12:05:28 -0700115 asNumbers: asNumbers,
Thomas Vachuska341310c2016-03-24 10:14:13 -0700116 setPrefs: setPrefs,
117 addListener: addListener,
118 removeListener: removeListener
Simon Huntc7ae7952015-04-08 18:59:27 -0700119 };
120 }]);
121
122}());