1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
|
/* jshint -W041 */
/* jslint browser: true*/
/* global cordova,StatusBar,angular,console */
angular.module('zmApp.controllers').controller('MenuController', ['$scope', '$ionicSideMenuDelegate', 'zm', '$stateParams', '$ionicHistory', '$state', 'NVRDataModel', '$rootScope', '$ionicPopup', '$translate', '$timeout', '$location','EventServer', 'zmAutoLogin','$http',function ($scope, $ionicSideMenuDelegate, zm, $stateParams, $ionicHistory, $state, NVRDataModel, $rootScope, $ionicPopup, $translate, $timeout, $location, EventServer, zmAutoLogin, $http) {
$scope.openMenu = function () {
$ionicSideMenuDelegate.toggleLeft();
};
//----------------------------------------------------------------
// This controller sits along with the main app to bring up
// the language menu from the main menu
//----------------------------------------------------------------
$scope.go = function(p) {
$ionicHistory.nextViewOptions({
historyRoot: true,
disableAnimate: true,
expire: 300
});
$ionicSideMenuDelegate.toggleLeft();
$location.path(p);
};
$scope.navigateView = function (view, args) {
if (view == $state.current.name) return;
NVRDataModel.debug("Navigating view to: " + view);
$ionicHistory.nextViewOptions({
disableBack: true
});
$state.go(view, args);
/* $timeout (function() {
window.stop();
// after window stop executes, in next cycle
// this _should_ ensure stop concludes before
// exit/entry lifecycles kick in?
$timeout (function() {$state.go(view,args);});
});*/
};
function switchToServer(s) {
$rootScope.alarmCount = 0;
$rootScope.isAlarm = false;
// First lets kill current stuf
NVRDataModel.debug ("** Resetting existing server");
var cld = NVRDataModel.getLogin();
if (cld.isUseEventServer) {
NVRDataModel.debug ("Stopping Event server");
EventServer.disconnect();
}
NVRDataModel.debug ("**Switching to new server...");
var zmServers = NVRDataModel.getServerGroups();
var loginData = zmServers[s];
NVRDataModel.debug("Retrieved state for this profile:" + JSON.stringify(loginData));
NVRDataModel.setLogin(loginData);
if (loginData.isUseEventServer) {
EventServer.init();
if ($rootScope.apnsToken && loginData.disablePush != true) {
NVRDataModel.log("Making sure we get push notifications");
EventServer.sendMessage('push', {
type: 'token',
platform: $rootScope.platformOS,
token: $rootScope.apnsToken,
state: "enabled"
}, 1);
}
EventServer.sendMessage("control", {
type: 'filter',
monlist: loginData.eventServerMonitors,
intlist: loginData.eventServerInterval
});
}
var apiurl = loginData.apiurl + '/host/getVersion.json';
var portalurl = loginData.url + '/index.php';
zmAutoLogin.doLogin("<button class='button button-clear' style='line-height: normal; min-height: 0; min-width: 0; color:#fff;' ng-click='$root.cancelAuth()'><i class='ion-close-circled'></i> " + $translate.instant('kAuthenticating') + "...</button>")
// Do the happy menu only if authentication works
// if it does not work, there is an emitter for auth
// fail in app.js that will be called to show an error
// box
.then(function (data) {
// possible image digits changed between servers
NVRDataModel.getKeyConfigParams(0);
NVRDataModel.log("Validating APIs at " + apiurl);
$http.get(apiurl)
.success(function (data) {
NVRDataModel.getTimeZone(true);
var loginStatus = $translate.instant('kExploreEnjoy') + " " + $rootScope.appName + "!";
EventServer.refresh();
// now grab and report PATH_ZMS
NVRDataModel.getPathZms()
.then(function (data) {
var ld = NVRDataModel.getLogin();
var zm_cgi = data.toLowerCase();
var user_cgi = (ld.streamingurl).toLowerCase();
NVRDataModel.log("ZM relative cgi-path: " + zm_cgi + ", you entered: " + user_cgi);
$http.get(ld.streamingurl + "/zms")
.success(function (data) {
NVRDataModel.debug("Urk! cgi-path returned success, but it should not have come here");
loginStatus = $translate.instant('kLoginStatusNoCgi');
NVRDataModel.debug("refreshing API version...");
NVRDataModel.getAPIversion()
.then(function (data) {
$rootScope.apiVersion = data;
var refresh = NVRDataModel.getMonitors(1)
.then (function () {
$ionicHistory.nextViewOptions({
disableBack: true
});
console.log ("+++ state go after getMonitors force");
$state.go('app.refresh', {
"view": $state.current.name
});
return;
});
},
function (error) {
var refresh = NVRDataModel.getMonitors(1);
console.log ("+++ state go after API version error: "+error);
$rootScope.apiVersion = "0.0.0";
NVRDataModel.debug("Error, failed API version, setting to " + $rootScope.apiVersion);
$ionicHistory.nextViewOptions({
disableBack: true
});
$state.go('app.refresh', {
"view": $state.current.name
});
return;
});
})
.error(function (error, status) {
// If its 5xx, then the cgi-bin path is valid
// if its 4xx then the cgi-bin path is not valid
if (status < 500) {
loginStatus = $translate.instant('kLoginStatusNoCgiAlt');
}
NVRDataModel.displayBanner((status < 500) ? 'error' : 'info', [loginStatus]);
NVRDataModel.debug("refreshing API version...");
NVRDataModel.getAPIversion()
.then(function (data) {
var refresh = NVRDataModel.getMonitors(1)
.then (function () {
$rootScope.apiVersion = data;
$ionicHistory.nextViewOptions({
disableBack: true
});
console.log ("+++ state go after 5xx");
$state.go('app.refresh', {
"view": $state.current.name
});
return;
});
},
function (error) {
var refresh = NVRDataModel.getMonitors(1);
$rootScope.apiVersion = "0.0.0";
NVRDataModel.debug("Error, failed API version, setting to " + $rootScope.apiVersion);
$ionicHistory.nextViewOptions({
disableBack: true
});
console.log ("+++ state go after API version force");
$state.go('app.refresh', {
"view": $state.current.name
});
return;
});
});
});
})
.error(function (error) {
NVRDataModel.displayBanner('error', [$translate.instant('kBannerAPICheckFailed'), $translate.instant('kBannerPleaseCheck')]);
NVRDataModel.log("API login error " + JSON.stringify(error));
$rootScope.zmPopup = SecuredPopups.show('alert', {
title: $translate.instant('kLoginValidAPIFailedTitle'),
template: $translate.instant('kBannerPleaseCheck'),
okText: $translate.instant('kButtonOk'),
cancelText: $translate.instant('kButtonCancel'),
});
});
});
}
$scope.switchProfiles = function () {
$scope.newServer = {
val:""
};
$scope.avs = Object.keys(NVRDataModel.getServerGroups());
$scope.avs = $scope.avs.filter(function() { return true; });
if ($scope.avs.length <= 1) {
return;
}
$rootScope.zmPopup = $ionicPopup.show({
scope: $scope,
template: '<ion-radio-fix ng-if="item" ng-repeat="item in avs" ng-value="item" ng-model="newServer.val"> {{item}} </ion-radio-fix>',
title: $translate.instant('kSelect'),
buttons: [{
text: $translate.instant('kButtonCancel'),
onTap: function (e) {
if ($ionicSideMenuDelegate.isOpen()) {
$ionicSideMenuDelegate.toggleLeft();
}
}
},
{
text: $translate.instant('kButtonOk'),
onTap: function (e) {
NVRDataModel.log("Server selected:" + $scope.newServer.val);
if ($ionicSideMenuDelegate.isOpen()) {
$ionicSideMenuDelegate.toggleLeft();
}
if (NVRDataModel.getLogin().serverName != $scope.newServer.val)
switchToServer($scope.newServer.val);
//$rootScope.$broadcast('server-changed');
//return "OK";
}
}
]
});
};
$scope.switchLang = function () {
$scope.lang = NVRDataModel.getLanguages();
$scope.myopt = {
lang: ""
};
$rootScope.zmPopup = $ionicPopup.show({
scope: $scope,
template: '<ion-radio-fix ng-repeat="item in lang" ng-value="item.value" ng-model="myopt.lang"> {{item.text}} </ion-radio-fix>',
title: $translate.instant('kSelectLanguage'),
buttons: [{
text: $translate.instant('kButtonCancel'),
onTap: function (e) {
//return "CANCEL";
}
},
{
text: $translate.instant('kButtonOk'),
onTap: function (e) {
NVRDataModel.log("Language selected:" + $scope.myopt.lang);
NVRDataModel.setDefaultLanguage($scope.myopt.lang, true);
$rootScope.$broadcast('language-changed');
//return "OK";
}
}
]
});
};
}]);
|