]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/admin/workstation/app.js
98dc9b77e8708598c019b201ef9f4f9131cac3dd
[Evergreen.git] / Open-ILS / web / js / ui / default / staff / admin / workstation / app.js
1 /**
2  * App to drive the base page. 
3  * Login Form
4  * Splash Page
5  */
6
7 angular.module('egWorkstationAdmin', 
8     ['ngRoute', 'ui.bootstrap', 'egCoreMod', 'egUiMod'])
9
10 .config(['$routeProvider','$locationProvider','$compileProvider', 
11  function($routeProvider , $locationProvider , $compileProvider) {
12
13     $locationProvider.html5Mode(true);
14     $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|mailto|blob):/); 
15     var resolver = {delay : function(egStartup) {return egStartup.go()}};
16
17     $routeProvider.when('/admin/workstation/workstations', {
18         templateUrl: './admin/workstation/t_workstations',
19         controller: 'WSRegCtrl',
20         resolve : resolver
21     });
22
23     $routeProvider.when('/admin/workstation/print/config', {
24         templateUrl: './admin/workstation/t_print_config',
25         controller: 'PrintConfigCtrl',
26         resolve : resolver
27     });
28
29     $routeProvider.when('/admin/workstation/print/templates', {
30         templateUrl: './admin/workstation/t_print_templates',
31         controller: 'PrintTemplatesCtrl',
32         resolve : resolver
33     });
34
35     $routeProvider.when('/admin/workstation/stored_prefs', {
36         templateUrl: './admin/workstation/t_stored_prefs',
37         controller: 'StoredPrefsCtrl',
38         resolve : resolver
39     });
40
41     $routeProvider.when('/admin/workstation/hatch', {
42         templateUrl: './admin/workstation/t_hatch',
43         controller: 'HatchCtrl',
44         resolve : resolver
45     });
46
47     $routeProvider.when('/admin/workstation/tests', {
48         templateUrl: './admin/workstation/t_tests',
49         controller: 'testsCtrl',
50         resolve : resolver
51     });
52     
53     // default page 
54     $routeProvider.otherwise({
55         templateUrl : './admin/workstation/t_splash',
56         controller : 'SplashCtrl',
57         resolve : resolver
58     });
59 }])
60
61 .config(['ngToastProvider', function(ngToastProvider) {
62   ngToastProvider.configure({
63     verticalPosition: 'bottom',
64     animation: 'fade'
65   });
66 }])
67
68 .factory('workstationSvc',
69        ['$q','$timeout','$location','egCore','egConfirmDialog',
70 function($q , $timeout , $location , egCore , egConfirmDialog) {
71     
72     var service = {};
73
74     service.get_all = function() {
75         return egCore.hatch.getItem('eg.workstation.all')
76         .then(function(all) { return all || [] });
77     }
78
79     service.get_default = function() {
80         return egCore.hatch.getItem('eg.workstation.default');
81     }
82
83     service.set_default = function(name) {
84         return egCore.hatch.setItem('eg.workstation.default', name);
85     }
86
87     service.register_workstation = function(base_name, name, org_id) {
88         return service.register_ws_api(base_name, name, org_id)
89         .then(function(ws_id) {
90             return service.track_new_ws(ws_id, name, org_id);
91         });
92     };
93
94     service.register_ws_api = 
95         function(base_name, name, org_id, override, deferred) {
96         if (!deferred) deferred = $q.defer();
97
98         var method = 'open-ils.actor.workstation.register';
99         if (override) method += '.override';
100
101         egCore.net.request(
102             'open-ils.actor', method, egCore.auth.token(), name, org_id)
103
104         .then(function(resp) {
105
106             if (evt = egCore.evt.parse(resp)) {
107                 console.log('register returned ' + evt.toString());
108
109                 if (evt.textcode == 'WORKSTATION_NAME_EXISTS' && !override) {
110
111                     egConfirmDialog.open(
112                         egCore.strings.WS_EXISTS, base_name, {  
113                             ok : function() {
114                                 service.register_ws_api(
115                                     base_name, name, org_id, true, deferred)
116                             },
117                             cancel : function() {
118                                 deferred.reject();
119                             }
120                         }
121                     );
122
123                 } else {
124                     alert(evt.toString());
125                     deferred.reject();
126                 }
127             } else if (resp) {
128                 console.log('Resolving register promise with: ' + resp);
129                 deferred.resolve(resp);
130             }
131         });
132
133         return deferred.promise;
134     }
135
136     service.track_new_ws = function(ws_id, ws_name, owning_lib) {
137         console.log('Tracking newly created WS with ID ' + ws_id);
138         var new_ws = {id : ws_id, name : ws_name, owning_lib : owning_lib};
139
140         return service.get_all()
141         .then(function(all) {
142             all.push(new_ws);
143             return egCore.hatch.setItem('eg.workstation.all', all)
144             .then(function() { return new_ws });
145         });
146     }
147
148     // Remove all traces of the workstation locally.
149     // This does not remove the WS from the server.
150     service.remove_workstation = function(name) {
151         console.debug('Removing workstation: ' + name);
152
153         return egCore.hatch.getItem('eg.workstation.all')
154
155         // remove from list of all workstations
156         .then(function(all) {
157             if (!all) all = [];
158             var keep = all.filter(function(ws) {return ws.name != name});
159             return egCore.hatch.setItem('eg.workstation.all', keep)
160
161         }).then(function() { 
162
163             return service.get_default()
164
165         }).then(function(def) {
166             if (def == name) {
167                 console.debug('Removing default workstation: ' + name);
168                 return egCore.hatch.removeItem('eg.workstation.default');
169             }
170         });
171     }
172
173     return service;
174 }])
175
176
177 .controller('SplashCtrl',
178        ['$scope','$window','$location','egCore','egConfirmDialog',
179 function($scope , $window , $location , egCore , egConfirmDialog) {
180
181     egCore.hatch.getItem('eg.audio.disable').then(function(val) {
182         $scope.disable_sound = val;
183     });
184
185     egCore.hatch.getItem('eg.search.search_lib').then(function(val) {
186         $scope.search_lib = egCore.org.get(val);
187     });
188     $scope.handle_search_lib_changed = function(org) {
189         egCore.hatch.setItem('eg.search.search_lib', org.id());
190     };
191
192     egCore.hatch.getItem('eg.search.pref_lib').then(function(val) {
193         $scope.pref_lib = egCore.org.get(val);
194     });
195     $scope.handle_pref_lib_changed = function(org) {
196         egCore.hatch.setItem('eg.search.pref_lib', org.id());
197     };
198
199     $scope.adv_pane = 'advanced'; // default value if not explicitly set
200     egCore.hatch.getItem('eg.search.adv_pane').then(function(val) {
201         $scope.adv_pane = val;
202     });
203     $scope.$watch('adv_pane', function(newVal, oldVal) {
204         if (typeof newVal != 'undefined' && newVal != oldVal) {
205             egCore.hatch.setItem('eg.search.adv_pane', newVal);
206         }
207     });
208
209     $scope.apply_sound = function() {
210         if ($scope.disable_sound) {
211             egCore.hatch.setItem('eg.audio.disable', true);
212         } else {
213             egCore.hatch.removeItem('eg.audio.disable');
214         }
215     }
216
217     $scope.test_audio = function(sound) {
218         egCore.audio.play(sound);
219     }
220
221 }])
222
223 .controller('PrintConfigCtrl',
224        ['$scope','egCore',
225 function($scope , egCore) {
226
227     $scope.printConfig = {};
228     $scope.setContext = function(ctx) { 
229         $scope.context = ctx; 
230         $scope.isTestView = false;
231     }
232     $scope.setContext('default');
233
234     $scope.setContentType = function(type) { $scope.contentType = type }
235     $scope.setContentType('text/plain');
236
237     $scope.useHatchPrinting = function() {
238         return egCore.hatch.usePrinting();
239     }
240
241     $scope.hatchIsOpen = function() {
242         return egCore.hatch.hatchAvailable;
243     }
244
245     $scope.getPrinterByAttr = function(attr, value) {
246         var printer;
247         angular.forEach($scope.printers, function(p) {
248             if (p[attr] == value) printer = p;
249         });
250         return printer;
251     }
252
253     $scope.resetPrinterSettings = function(context) {
254         $scope.printConfig[context] = {
255             context : context,
256             printer : $scope.defaultPrinter ? $scope.defaultPrinter.name : null,
257             autoMargins : true, 
258             allPages : true,
259             pageRanges : []
260         };
261     }
262
263     $scope.savePrinterSettings = function(context) {
264         return egCore.hatch.setPrintConfig(
265             context, $scope.printConfig[context]);
266     }
267
268     $scope.printerConfString = function() {
269         if ($scope.printConfigError) return $scope.printConfigError;
270         if (!$scope.printConfig) return;
271         if (!$scope.printConfig[$scope.context]) return;
272         return JSON.stringify(
273             $scope.printConfig[$scope.context], undefined, 2);
274     }
275
276     function loadPrinterOptions(name) {
277         egCore.hatch.getPrinterOptions(name).then(
278             function(options) {$scope.printerOptions = options});
279     }
280
281     $scope.setPrinter = function(name) {
282         $scope.printConfig[$scope.context].printer = name;
283         loadPrinterOptions(name);
284     }
285
286     $scope.testPrint = function(withDialog) {
287         if ($scope.contentType == 'text/plain') {
288             egCore.print.print({
289                 context : $scope.context, 
290                 content_type : $scope.contentType, 
291                 content : $scope.textPrintContent,
292                 show_dialog : withDialog
293             });
294         } else {
295             egCore.print.print({
296                 context : $scope.context,
297                 content_type : $scope.contentType, 
298                 content : $scope.htmlPrintContent, 
299                 scope : {
300                     value1 : 'Value One', 
301                     value2 : 'Value Two',
302                     date_value : '2015-02-04T14:04:34-0400'
303                 },
304                 show_dialog : withDialog
305             });
306         }
307     }
308
309     // Load startup data....
310     // Don't bother talking to Hatch if it's not there.
311     if (!egCore.hatch.hatchAvailable) return;
312
313     // fetch info on all remote printers
314     egCore.hatch.getPrinters()
315     .then(function(printers) { 
316         $scope.printers = printers;
317
318         var def = $scope.getPrinterByAttr('is-default', true);
319         if (!def && printers.length) def = printers[0];
320
321         if (def) {
322             $scope.defaultPrinter = def;
323             loadPrinterOptions(def.name);
324         }
325     }).then(function() {
326         angular.forEach(
327             ['default','receipt','label','mail','offline'],
328             function(ctx) {
329                 egCore.hatch.getPrintConfig(ctx).then(function(conf) {
330                     if (conf) {
331                         $scope.printConfig[ctx] = conf;
332                     } else {
333                         $scope.resetPrinterSettings(ctx);
334                     }
335                 });
336             }
337         );
338     });
339
340 }])
341
342 .controller('PrintTemplatesCtrl',
343        ['$scope','$q','egCore','ngToast',
344 function($scope , $q , egCore , ngToast) {
345
346     $scope.print = {
347         template_name : 'bills_current',
348         template_output : '',
349         template_context : 'default'
350     };
351
352     // print preview scope data
353     // TODO: consider moving the template-specific bits directly
354     // into the templates or storing template- specific script files
355     // alongside the templates.
356     // NOTE: A lot of this data can be shared across templates.
357     var seed_user = {
358         prefix : 'Mr',
359         first_given_name : 'Joseph',
360         second_given_name : 'Martin',
361         family_name : 'Jones',
362         suffix : 'III',
363         card : {
364             barcode : '30393830393'
365         },
366         money_summary : {
367             balance_owed : 4, // This is currently how these values are returned to the client
368             total_billed : '5.00',
369             total_paid : '1.00'
370         },
371         expire_date : '2020-12-31',
372         alias : 'Joey J.',
373         has_email : true,
374         has_phone : false,
375         dob : '1980-01-01T00:00:00-8:00',
376         juvenile : 'f',
377         usrname : '30393830393',
378         day_phone : '111-222-3333',
379         evening_phone : '222-333-1111',
380         other_phone : '333-111-2222',
381         email : 'user@example.com',
382         home_ou : {name: function() {return 'BR1'}},
383         profile : {name: function() {return 'Patrons'}},
384         net_access_level : {name: function() {return 'Filtered'}},
385         active : 't',
386         barred : 'f',
387         master_account : 'f',
388         claims_returned_count : '0',
389         claims_never_checked_out_count : '0',
390         alert_message : 'Coat is in the lost-and-found behind the circ desk',
391         ident_type: {name: function() {return 'Drivers License'}},
392         ident_value: '11332445',
393         ident_type2: {name: function() {return 'Other'}},
394         ident_value2 : '55442211',
395         addresses : [],
396         stat_cat_entries : [
397             {
398                 stat_cat : {'name' : 'Favorite Donut'},
399                 'stat_cat_entry' : 'Maple'
400             }, {
401                 stat_cat : {'name' : 'Favorite Book'},
402                 'stat_cat_entry' : 'Beasts Made of Night'
403             }
404         ]
405     }
406
407     var seed_addr = {
408         address_type : 'MAILING',
409         street1 : '123 Apple Rd',
410         street2 : 'Suite B',
411         city : 'Anywhere',
412         county : 'Great County',
413         state : 'XX',
414         country : 'US',
415         post_code : '12345',
416         valid : 't',
417         within_city_limits: 't'
418     }
419
420     seed_user.addresses.push(seed_addr);
421
422     var seed_record = {
423         title : 'Traveling Pants!!',
424         author : 'Jane Jones',
425         isbn : '1231312123'
426     };
427
428     var seed_copy = {
429         barcode : '33434322323',
430         call_number : {
431             label : '636.8 JON',
432             record : {
433                 simple_record : {
434                     'title' : 'Test Title'
435                 }
436             }
437         },
438         location : {
439             name : 'General Collection'
440         },
441         // flattened versions for item status template
442         // TODO - make this go away
443         'call_number.label' : '636.8 JON',
444         'call_number.record.simple_record.title' : 'Test Title',
445         'location.name' : 'General Colleciton'
446     }
447
448     var one_hold = {
449         behind_desk : 'f',
450         phone_notify : '111-222-3333',
451         sms_notify : '111-222-3333',
452         email_notify : 'user@example.org',
453         request_time : new Date().toISOString(),
454         hold_type : 'T',
455         shelf_expire_time : new Date().toISOString()
456     }
457
458     var seed_transit = {
459         source : {
460             name : 'Library Y',
461             shortname : 'LY',
462             holds_address : seed_addr
463         },
464         dest : {
465             name : 'Library X',
466             shortname : 'LX',
467             holds_address : seed_addr
468         },
469         source_send_time : new Date().toISOString(),
470         target_copy : seed_copy
471     }
472
473     $scope.preview_scope = {
474         //bills
475         transactions : [
476             {
477                 id : 1,
478                 xact_start : new Date().toISOString(),
479                 xact_finish : new Date().toISOString(),
480                 summary : {
481                     xact_type : 'circulation',
482                     last_billing_type : 'Overdue materials',
483                     total_owed : 1.50,
484                     last_payment_note : 'Test Note 1',
485                     last_payment_type : 'cash_payment',
486                     last_payment_ts : new Date().toISOString(),
487                     total_paid : 0.50,
488                     balance_owed : 1.00
489                 }
490             }, {
491                 id : 2,
492                 xact_start : new Date().toISOString(),
493                 xact_finish : new Date().toISOString(),
494                 summary : {
495                     xact_type : 'circulation',
496                     last_billing_type : 'Overdue materials',
497                     total_owed : 2.50,
498                     last_payment_note : 'Test Note 2',
499                     last_payment_type : 'credit_payment',
500                     last_payment_ts : new Date().toISOString(),
501                     total_paid : 0.50,
502                     balance_owed : 2.00
503                 }
504             }
505         ],
506
507         copy : seed_copy,
508         copies : [ seed_copy ],
509
510         checkins : [
511             {
512                 due_date : new Date().toISOString(),
513                 circ_lib : 1,
514                 duration : '7 days',
515                 target_copy : seed_copy,
516                 copy_barcode : seed_copy.barcode,
517                 call_number : seed_copy.call_number,
518                 title : seed_record.title
519             },
520         ],
521
522         circulations : [
523             {
524                 circ : {
525                     due_date : new Date().toISOString(),
526                     circ_lib : 1,
527                     duration : '7 days'
528                 },
529                 copy : seed_copy,
530                 title : seed_record.title,
531                 author : seed_record.author
532             },
533         ],
534
535         patron_money : {
536             balance_owed : 5.01,
537             total_owed : 10.12,
538             total_paid : 5.11
539         },
540
541         in_house_uses : [
542             {
543                 num_uses : 3,
544                 copy : seed_copy,
545                 title : seed_record.title
546             }
547         ],
548
549         previous_balance : 8.45,
550         payment_total : 2.00,
551         payment_applied : 2.00,
552         new_balance : 6.45,
553         amount_voided : 0,
554         change_given : 0,
555         payment_type : 'cash_payment',
556         payment_note : 'Here is a payment note',
557         note : {
558             create_date : new Date().toISOString(), 
559             title : 'Test Note Title',
560             usr : seed_user,
561             value : 'This patron is super nice!'
562         },
563
564         transit : seed_transit,
565         transits : [ seed_transit ],
566         title : seed_record.title,
567         author : seed_record.author,
568         patron : seed_user,
569         address : seed_addr,
570         dest_location : egCore.idl.toHash(egCore.org.get(egCore.auth.user().ws_ou())),
571         dest_courier_code : 'ABC 123',
572         dest_address : seed_addr,
573         hold : one_hold,
574         holds : [
575             {
576                 hold : one_hold, title : 'Some Title 1', author : 'Some Author 1',
577                 volume : { label : '646.4 SOM' }, copy : seed_copy,
578                 part : { label : 'v. 1' },
579                 patron_barcode : 'S52802662',
580                 patron_alias : 'XYZ', patron_last : 'Smith', patron_first : 'Jane',
581                 status_string : 'Ready for Pickup'
582             },
583             {
584                 hold : one_hold, title : 'Some Title 2', author : 'Some Author 2',
585                 volume : { label : '646.4 SOM' }, copy : seed_copy,
586                 part : { label : 'v. 1' },
587                 patron_barcode : 'S52802662',
588                 patron_alias : 'XYZ', patron_last : 'Smith', patron_first : 'Jane',
589                 status_string : 'Ready for Pickup'
590             },
591             {
592                 hold : one_hold, title : 'Some Title 3', author : 'Some Author 3',
593                 volume : { label : '646.4 SOM' }, copy : seed_copy,
594                 part : { label : 'v. 1' },
595                 patron_barcode : 'S52802662',
596                 patron_alias : 'XYZ', patron_last : 'Smith', patron_first : 'Jane',
597                 status_string : 'Canceled'
598             }
599         ]
600     }
601
602     $scope.preview_scope.payments = [
603         {amount : 1.00, xact : $scope.preview_scope.transactions[0]}, 
604         {amount : 1.00, xact : $scope.preview_scope.transactions[1]}
605     ]
606     $scope.preview_scope.payments[0].xact.title = 'Hali Bote Azikaban de tao fan';
607     $scope.preview_scope.payments[0].xact.copy_barcode = '334343434';
608     $scope.preview_scope.payments[1].xact.title = seed_record.title;
609     $scope.preview_scope.payments[1].xact.copy_barcode = seed_copy.barcode;
610
611     // today, staff, current_location, etc.
612     egCore.print.fleshPrintScope($scope.preview_scope);
613
614     $scope.template_changed = function() {
615         $scope.print.load_failed = false;
616         egCore.print.getPrintTemplate($scope.print.template_name)
617         .then(
618             function(html) { 
619                 $scope.print.template_content = html;
620                 console.log('set template content');
621             },
622             function() {
623                 $scope.print.template_content = '';
624                 $scope.print.load_failed = true;
625             }
626         );
627         egCore.print.getPrintTemplateContext($scope.print.template_name)
628         .then(function(template_context) {
629             $scope.print.template_context = template_context;
630         });
631     }
632
633     $scope.reset_to_default = function() {
634         egCore.print.removePrintTemplate(
635             $scope.print.template_name
636         );
637         egCore.print.removePrintTemplateContext(
638             $scope.print.template_name
639         );
640         $scope.template_changed();
641     }
642
643     $scope.save_locally = function() {
644         egCore.print.storePrintTemplate(
645             $scope.print.template_name,
646             $scope.print.template_content
647         );
648         egCore.print.storePrintTemplateContext(
649             $scope.print.template_name,
650             $scope.print.template_context
651         );
652     }
653
654     $scope.exportable_templates = function() {
655         var templates = {};
656         var contexts = {};
657         var deferred = $q.defer();
658         var promises = [];
659         egCore.hatch.getKeys('eg.print.template').then(function(keys) {
660             angular.forEach(keys, function(key) {
661                 if (key.match(/^eg\.print\.template\./)) {
662                     promises.push(egCore.hatch.getItem(key).then(function(value) {
663                         templates[key.replace('eg.print.template.', '')] = value;
664                     }));
665                 } else {
666                     promises.push(egCore.hatch.getItem(key).then(function(value) {
667                         contexts[key.replace('eg.print.template_context.', '')] = value;
668                     }));
669                 }
670             });
671             $q.all(promises).then(function() {
672                 if (Object.keys(templates).length) {
673                     deferred.resolve({
674                         templates: templates,
675                         contexts: contexts
676                     });
677                 } else {
678                     ngToast.warning(egCore.strings.PRINT_TEMPLATES_FAIL_EXPORT);
679                     deferred.reject();
680                 }
681             });
682         });
683         return deferred.promise;
684     }
685
686     $scope.imported_print_templates = { data : '' };
687     $scope.$watch('imported_print_templates.data', function(newVal, oldVal) {
688         if (newVal && newVal != oldVal) {
689             try {
690                 var data = JSON.parse(newVal);
691                 angular.forEach(data.templates, function(template_content, template_name) {
692                     egCore.print.storePrintTemplate(template_name, template_content);
693                 });
694                 angular.forEach(data.contexts, function(template_context, template_name) {
695                     egCore.print.storePrintTemplateContext(template_name, template_context);
696                 });
697                 $scope.template_changed(); // refresh
698                 ngToast.create(egCore.strings.PRINT_TEMPLATES_SUCCESS_IMPORT);
699             } catch (E) {
700                 ngToast.warning(egCore.strings.PRINT_TEMPLATES_FAIL_IMPORT);
701             }
702         }
703     });
704
705     $scope.template_changed(); // load the default
706 }])
707
708 // 
709 .directive('egPrintTemplateOutput', ['$compile',function($compile) {
710     return function(scope, element, attrs) {
711         scope.$watch(
712             function(scope) {
713                 return scope.$eval(attrs.content);
714             },
715             function(value) {
716                 // create an isolate scope and copy the print context
717                 // data into the new scope.
718                 // TODO: see also print security concerns in egHatch
719                 var result = element.html(value);
720                 var context = scope.$eval(attrs.context);
721                 var print_scope = scope.$new(true);
722                 angular.forEach(context, function(val, key) {
723                     print_scope[key] = val;
724                 })
725                 $compile(element.contents())(print_scope);
726             }
727         );
728     };
729 }])
730
731 .controller('StoredPrefsCtrl',
732        ['$scope','$q','egCore','egConfirmDialog',
733 function($scope , $q , egCore , egConfirmDialog) {
734     console.log('StoredPrefsCtrl');
735
736     $scope.setContext = function(ctx) {
737         $scope.context = ctx;
738     }
739     $scope.setContext('local');
740
741     // grab the edit perm
742     $scope.userHasDeletePerm = false;
743     egCore.perm.hasPermHere('ADMIN_WORKSTATION')
744     .then(function(bool) { $scope.userHasDeletePerm = bool });
745
746     // fetch the keys
747
748     function refreshKeys() {
749         $scope.keys = {local : [], remote : []};
750
751         if (egCore.hatch.hatchAvailable) {
752             egCore.hatch.getRemoteKeys().then(
753                 function(keys) { $scope.keys.remote = keys.sort() })
754         }
755     
756         // local calls are non-async
757         $scope.keys.local = egCore.hatch.getLocalKeys();
758     }
759     refreshKeys();
760
761     $scope.selectKey = function(key) {
762         $scope.currentKey = key;
763         $scope.currentKeyContent = null;
764
765         if ($scope.context == 'local') {
766             $scope.currentKeyContent = egCore.hatch.getLocalItem(key);
767         } else {
768             egCore.hatch.getRemoteItem(key)
769             .then(function(content) {
770                 $scope.currentKeyContent = content
771             });
772         }
773     }
774
775     $scope.getCurrentKeyContent = function() {
776         return JSON.stringify($scope.currentKeyContent, null, 2);
777     }
778
779     $scope.removeKey = function(key) {
780         egConfirmDialog.open(
781             egCore.strings.PREFS_REMOVE_KEY_CONFIRM, '',
782             {   deleteKey : key,
783                 ok : function() {
784                     if ($scope.context == 'local') {
785                         egCore.hatch.removeLocalItem(key);
786                         refreshKeys();
787                     } else {
788                         // Honor requests to remove items from Hatch even
789                         // when Hatch is configured for data storage.
790                         egCore.hatch.removeRemoteItem(key)
791                         .then(function() { refreshKeys() });
792                     }
793                 },
794                 cancel : function() {} // user canceled, nothing to do
795             }
796         );
797     }
798 }])
799
800 .controller('WSRegCtrl',
801        ['$scope','$q','$window','$location','egCore','egAlertDialog','workstationSvc',
802 function($scope , $q , $window , $location , egCore , egAlertDialog , workstationSvc) {
803
804     var all_workstations = [];
805     var reg_perm_orgs = [];
806
807     $scope.page_loaded = false;
808     $scope.contextOrg = egCore.org.get(egCore.auth.user().ws_ou());
809     $scope.wsOrgChanged = function(org) { $scope.contextOrg = org; }
810
811     console.log('set context org to ' + $scope.contextOrg);
812
813     // fetch workstation reg perms
814     egCore.perm.hasPermAt('REGISTER_WORKSTATION', true)
815     .then(function(orgList) { 
816         reg_perm_orgs = orgList;
817
818         // hide orgs in the context org selector where this login
819         // does not have the reg_ws perm or the org can't have users
820         $scope.wsOrgHidden = function(id) {
821             return reg_perm_orgs.indexOf(id) == -1
822                 || $scope.cant_have_users(id);
823         }
824
825     // fetch the locally stored workstation data
826     }).then(function() {
827         return workstationSvc.get_all()
828         
829     }).then(function(all) {
830         all_workstations = all || [];
831         $scope.workstations = 
832             all_workstations.map(function(w) { return w.name });
833         return workstationSvc.get_default()
834
835     // fetch the default workstation
836     }).then(function(def) { 
837         $scope.defaultWS = def;
838         $scope.activeWS = $scope.selectedWS = egCore.auth.workstation() || def;
839
840     // Handle any URL commands.
841     }).then(function() {
842         var remove = $location.search().remove;
843          if (remove) {
844             console.log('Removing WS via URL request: ' + remove);
845             return $scope.remove_ws(remove).then(
846                 function() { $scope.page_loaded = true; });
847         }
848         $scope.page_loaded = true;
849     });
850
851     $scope.get_ws_label = function(ws) {
852         return ws == $scope.defaultWS ? 
853             egCore.strings.$replace(egCore.strings.DEFAULT_WS_LABEL, {ws:ws}) : ws;
854     }
855
856     $scope.set_default_ws = function(name) {
857         delete $scope.removing_ws;
858         $scope.defaultWS = name;
859         workstationSvc.set_default(name);
860     }
861
862     $scope.cant_have_users = 
863         function (id) { return !egCore.org.CanHaveUsers(id); };
864     $scope.cant_have_volumes = 
865         function (id) { return !egCore.org.CanHaveVolumes(id); };
866
867     // Log out and return to login page with selected WS 
868     $scope.use_now = function() {
869         egCore.auth.logout();
870         $window.location.href = $location
871             .path('/login')
872             .search({ws : $scope.selectedWS})
873             .absUrl();
874     }
875
876     $scope.can_delete_ws = function(name) {
877         var ws = all_workstations.filter(
878             function(ws) { return ws.name == name })[0];
879         return ws && reg_perm_orgs.indexOf(ws.owning_lib) != -1;
880     }
881
882     $scope.remove_ws = function(remove_me) {
883         $scope.removing_ws = remove_me;
884
885         // Perm is used to disable Remove button in UI, but have to check
886         // again here in case we're removing a WS based on URL params.
887         if (!$scope.can_delete_ws(remove_me)) return $q.when();
888
889         $scope.is_removing = true;
890         return workstationSvc.remove_workstation(remove_me)
891         .then(function() {
892
893             all_workstations = all_workstations.filter(
894                 function(ws) { return ws.name != remove_me });
895
896             $scope.workstations = $scope.workstations.filter(
897                 function(ws) { return ws != remove_me });
898
899             if ($scope.selectedWS == remove_me) 
900                 $scope.selectedWS = $scope.workstations[0];
901
902             if ($scope.defaultWS == remove_me) 
903                 $scope.defaultWS = '';
904
905             $scope.is_removing = false;
906         });
907     }
908
909     $scope.register_ws = function() {
910         delete $scope.removing_ws;
911
912         var full_name = 
913             $scope.contextOrg.shortname() + '-' + $scope.newWSName;
914
915         if ($scope.workstations.indexOf(full_name) > -1) {
916             // avoid duplicate local registrations
917             return egAlertDialog.open(egCore.strings.WS_USED);
918         }
919
920         $scope.is_registering = true;
921         workstationSvc.register_workstation(
922             $scope.newWSName, full_name,
923             $scope.contextOrg.id()
924
925         ).then(function(new_ws) {
926             $scope.workstations.push(new_ws.name);
927             all_workstations.push(new_ws);  
928             $scope.is_registering = false;
929
930             if (!$scope.selectedWS) {
931                 $scope.selectedWS = new_ws.name;
932             }
933             if (!$scope.defaultWS) {
934                 return $scope.set_default_ws(new_ws.name);
935             }
936             $scope.newWSName = '';
937         }, function(err) {
938             $scope.is_registering = false;
939         });
940     }
941 }])
942
943 .controller('HatchCtrl',
944        ['$scope','egCore','ngToast',
945 function($scope , egCore , ngToast) {
946     var hatch = egCore.hatch;  // convenience
947
948     $scope.hatch_available = hatch.hatchAvailable;
949     $scope.hatch_printing = hatch.usePrinting();
950     $scope.hatch_settings = hatch.useSettings();
951     $scope.hatch_offline  = hatch.useOffline();
952
953     // Apply Hatch settings as changes occur in the UI.
954     
955     $scope.$watch('hatch_printing', function(newval) {
956         if (typeof newval != 'boolean') return;
957         hatch.setLocalItem('eg.hatch.enable.printing', newval);
958     });
959
960     $scope.$watch('hatch_settings', function(newval) {
961         if (typeof newval != 'boolean') return;
962         hatch.setLocalItem('eg.hatch.enable.settings', newval);
963     });
964
965     $scope.$watch('hatch_offline', function(newval) {
966         if (typeof newval != 'boolean') return;
967         hatch.setLocalItem('eg.hatch.enable.offline', newval);
968     });
969
970     $scope.copy_to_hatch = function() {
971         hatch.copySettingsToHatch().then(
972             function() {
973                 ngToast.create(egCore.strings.HATCH_SETTINGS_MIGRATION_SUCCESS)},
974             function() {
975                 ngToast.warning(egCore.strings.HATCH_SETTINGS_MIGRATION_FAILURE)}
976         );
977     }
978
979     $scope.copy_to_local = function() {
980         hatch.copySettingsToLocal().then(
981             function() {
982                 ngToast.create(egCore.strings.HATCH_SETTINGS_MIGRATION_SUCCESS)},
983             function() {
984                 ngToast.warning(egCore.strings.HATCH_SETTINGS_MIGRATION_FAILURE)}
985         );
986     }
987
988 }])
989
990 /*
991  * Home of the Latency tester
992  * */
993 .controller('testsCtrl', ['$scope', '$location', 'egCore', function($scope, $location, egCore) {
994     $scope.hostname = $location.host();
995
996     $scope.tests = [];
997     $scope.clearTestData = function(){
998         $scope.tests = [];
999         numPings = 0;
1000     }
1001
1002     $scope.isTesting = false;
1003     $scope.avrg = 0; // avrg latency
1004     $scope.canCopyCommand = document.queryCommandSupported('copy');
1005     var numPings = 0;
1006     // initially fetch first 10 (gets a decent average)
1007
1008     function calcAverage(){
1009
1010         if ($scope.tests.length == 0) return 0;
1011
1012         if ($scope.tests.length == 1) return $scope.tests[0].l;
1013
1014         var sum = 0;
1015         angular.forEach($scope.tests, function(t){
1016             sum += t.l;
1017         });
1018
1019         return sum / $scope.tests.length;
1020     }
1021
1022     function ping(){
1023         $scope.isTesting = true;
1024         var t = Date.now();
1025         return egCore.net.request(
1026             "open-ils.pcrud", "opensrf.system.echo", "ping"
1027         ).then(function(resp){
1028             var t2 = Date.now();
1029             var latency = t2 - t;
1030             $scope.tests.push({t: new Date(t), l: latency});
1031             console.log("Start: " + t + " and end: " + t2);
1032             console.log("Latency: " + latency);
1033             console.log(resp);
1034         }).then(function(){
1035             $scope.avrg = calcAverage();
1036             numPings++;
1037             $scope.isTesting = false;
1038         });
1039     }
1040
1041     $scope.testLatency = function(){
1042
1043         if (numPings >= 10){
1044             ping(); // just ping once after the initial ten
1045         } else {
1046             ping()
1047                 .then($scope.testLatency)
1048                 .then(function(){
1049                     if (numPings == 9){
1050                         $scope.tests.shift(); // toss first result
1051                         $scope.avrg = calcAverage();
1052                     }
1053                 });
1054         }
1055     }
1056
1057     $scope.copyTests = function(){
1058
1059         var lNode = document.querySelector('#pingData');
1060         var r = document.createRange();
1061         r.selectNode(lNode);
1062         var sel = window.getSelection();
1063         sel.removeAllRanges();
1064         sel.addRange(r);
1065         document.execCommand('copy');
1066     }
1067
1068 }])
1069
1070