]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/admin/workstation/app.js
LP1774008 Remove Hatch storage options
[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.getWorkstations()
76         .then(function(all) { return all || [] });
77     }
78
79     service.get_default = function() {
80         return egCore.hatch.getDefaultWorkstation();
81     }
82
83     service.set_default = function(name) {
84         return egCore.hatch.setDefaultWorkstation(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.setWorkstations(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.getWorkstations()
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.setWorkstations(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.removeDefaultWorkstation();
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     var hatchPrinting = false;
238     egCore.hatch.usePrinting().then(function(answer) {
239         hatchPrinting = answer;
240     });
241
242     $scope.useHatchPrinting = function() {
243         return hatchPrinting;
244     }
245
246     $scope.hatchIsOpen = function() {
247         return egCore.hatch.hatchAvailable;
248     }
249
250     $scope.getPrinterByAttr = function(attr, value) {
251         var printer;
252         angular.forEach($scope.printers, function(p) {
253             if (p[attr] == value) printer = p;
254         });
255         return printer;
256     }
257
258     $scope.resetPrinterSettings = function(context) {
259         $scope.printConfig[context] = {
260             context : context,
261             printer : $scope.defaultPrinter ? $scope.defaultPrinter.name : null,
262             autoMargins : true, 
263             allPages : true,
264             pageRanges : []
265         };
266     }
267
268     $scope.savePrinterSettings = function(context) {
269         return egCore.hatch.setPrintConfig(
270             context, $scope.printConfig[context]);
271     }
272
273     $scope.printerConfString = function() {
274         if ($scope.printConfigError) return $scope.printConfigError;
275         if (!$scope.printConfig) return;
276         if (!$scope.printConfig[$scope.context]) return;
277         return JSON.stringify(
278             $scope.printConfig[$scope.context], undefined, 2);
279     }
280
281     function loadPrinterOptions(name) {
282         if (name == 'hatch_file_writer') {
283             $scope.printerOptions = {};
284         } else {
285             egCore.hatch.getPrinterOptions(name).then(
286                 function(options) {$scope.printerOptions = options});
287         }
288     }
289
290     $scope.setPrinter = function(name) {
291         $scope.printConfig[$scope.context].printer = name;
292         loadPrinterOptions(name);
293     }
294
295     $scope.testPrint = function(withDialog) {
296         if ($scope.contentType == 'text/plain') {
297             egCore.print.print({
298                 context : $scope.context, 
299                 content_type : $scope.contentType, 
300                 content : $scope.textPrintContent,
301                 show_dialog : withDialog
302             });
303         } else {
304             egCore.print.print({
305                 context : $scope.context,
306                 content_type : $scope.contentType, 
307                 content : $scope.htmlPrintContent, 
308                 scope : {
309                     value1 : 'Value One', 
310                     value2 : 'Value Two',
311                     date_value : '2015-02-04T14:04:34-0400'
312                 },
313                 show_dialog : withDialog
314             });
315         }
316     }
317
318     $scope.useFileWriter = function() {
319         return (
320             $scope.printConfig[$scope.context] &&
321             $scope.printConfig[$scope.context].printer == 'hatch_file_writer'
322         );
323     }
324
325     // Load startup data....
326     // Don't bother talking to Hatch if it's not there.
327     if (!egCore.hatch.hatchAvailable) return;
328
329     // fetch info on all remote printers
330     egCore.hatch.getPrinters()
331     .then(function(printers) { 
332         $scope.printers = printers;
333
334         printers.push({
335             // We need a static name for saving configs.
336             // Human-friendly label is set in the template.
337             name: 'hatch_file_writer' 
338         });
339
340         var def = $scope.getPrinterByAttr('is-default', true);
341         if (!def && printers.length) def = printers[0];
342
343         if (def) {
344             $scope.defaultPrinter = def;
345             loadPrinterOptions(def.name);
346         }
347     }).then(function() {
348         angular.forEach(
349             ['default','receipt','label','mail','offline'],
350             function(ctx) {
351                 egCore.hatch.getPrintConfig(ctx).then(function(conf) {
352                     if (conf) {
353                         $scope.printConfig[ctx] = conf;
354                     } else {
355                         $scope.resetPrinterSettings(ctx);
356                     }
357                 });
358             }
359         );
360     });
361
362 }])
363
364 .controller('PrintTemplatesCtrl',
365        ['$scope','$q','egCore','ngToast',
366 function($scope , $q , egCore , ngToast) {
367
368     $scope.print = {
369         template_name : 'bills_current',
370         template_output : '',
371         template_context : 'default'
372     };
373
374     // print preview scope data
375     // TODO: consider moving the template-specific bits directly
376     // into the templates or storing template- specific script files
377     // alongside the templates.
378     // NOTE: A lot of this data can be shared across templates.
379     var seed_user = {
380         prefix : 'Mr',
381         first_given_name : 'Joseph',
382         second_given_name : 'Martin',
383         family_name : 'Jones',
384         suffix : 'III',
385         pref_first_given_name : 'Martin',
386         pref_second_given_name : 'Joe',
387         pref_family_name : 'Smith',
388         card : {
389             barcode : '30393830393'
390         },
391         money_summary : {
392             balance_owed : 4, // This is currently how these values are returned to the client
393             total_billed : '5.00',
394             total_paid : '1.00'
395         },
396         expire_date : '2020-12-31',
397         alias : 'Joey J.',
398         has_email : true,
399         has_phone : false,
400         dob : '1980-01-01T00:00:00-8:00',
401         juvenile : 'f',
402         usrname : '30393830393',
403         day_phone : '111-222-3333',
404         evening_phone : '222-333-1111',
405         other_phone : '333-111-2222',
406         email : 'user@example.com',
407         home_ou : {name: function() {return 'BR1'}},
408         profile : {name: function() {return 'Patrons'}},
409         net_access_level : {name: function() {return 'Filtered'}},
410         active : 't',
411         barred : 'f',
412         master_account : 'f',
413         claims_returned_count : '0',
414         claims_never_checked_out_count : '0',
415         alert_message : 'Coat is in the lost-and-found behind the circ desk',
416         ident_type: {name: function() {return 'Drivers License'}},
417         ident_value: '11332445',
418         ident_type2: {name: function() {return 'Other'}},
419         ident_value2 : '55442211',
420         addresses : [],
421         stat_cat_entries : [
422             {
423                 stat_cat : {'name' : 'Favorite Donut'},
424                 'stat_cat_entry' : 'Maple'
425             }, {
426                 stat_cat : {'name' : 'Favorite Book'},
427                 'stat_cat_entry' : 'Beasts Made of Night'
428             }
429         ]
430     }
431
432     var seed_addr = {
433         address_type : 'MAILING',
434         street1 : '123 Apple Rd',
435         street2 : 'Suite B',
436         city : 'Anywhere',
437         county : 'Great County',
438         state : 'XX',
439         country : 'US',
440         post_code : '12345',
441         valid : 't',
442         within_city_limits: 't'
443     }
444
445     seed_user.addresses.push(seed_addr);
446
447     var seed_record = {
448         title : 'Traveling Pants!!',
449         author : 'Jane Jones',
450         isbn : '1231312123'
451     };
452
453     var seed_copy = {
454         barcode : '33434322323',
455         status : {
456             name : 'In transit'
457             },
458         call_number : {
459             label : '636.8 JON',
460             record : {
461                 simple_record : {
462                     'title' : 'Test Title'
463                 }
464             },
465             owning_lib : {
466                 name : 'Ankers Memorial Library',
467                 shortname : 'Ankers'
468             }
469         },
470         circ_modifier : {
471                 name : 'Book'
472                 },
473         location : {
474             name : 'General Collection'
475         },
476         status : {
477             name : 'In Transit'
478         },
479         // flattened versions for item status template
480         // TODO - make this go away
481         'call_number.label' : '636.8 JON',
482         'call_number.record.simple_record.title' : 'Test Title',
483         'location.name' : 'General Collection',
484         'call_number.owning_lib.name' : 'Ankers Memorial Library',
485         'call_number.owning_lib.shortname' : 'Ankers',
486         'location.name' : 'General Collection'
487     }
488
489     var one_hold = {
490         behind_desk : 'f',
491         phone_notify : '111-222-3333',
492         sms_notify : '111-222-3333',
493         email_notify : 'user@example.org',
494         request_time : new Date().toISOString(),
495         hold_type : 'T',
496         shelf_expire_time : new Date().toISOString()
497     }
498
499     var seed_transit = {
500         source : {
501             name : 'Library Y',
502             shortname : 'LY',
503             holds_address : seed_addr
504         },
505         dest : {
506             name : 'Library X',
507             shortname : 'LX',
508             holds_address : seed_addr
509         },
510         source_send_time : new Date().toISOString(),
511         target_copy : seed_copy
512     }
513
514     $scope.preview_scope = {
515         //bills
516         transactions : [
517             {
518                 id : 1,
519                 xact_start : new Date().toISOString(),
520                 xact_finish : new Date().toISOString(),
521                 call_number : {
522                     label : "spindler",
523                     prefix : "biography",
524                     suffix : "Closed Stacks",
525                     owning_lib : {
526                         name : "Mineola Public Library",
527                         shortname : "Mineola"
528                     }
529                 },
530                 summary : {
531                     xact_type : 'circulation',
532                     last_billing_type : 'Overdue materials',
533                     total_owed : 1.50,
534                     last_payment_note : 'Test Note 1',
535                     last_payment_type : 'cash_payment',
536                     last_payment_ts : new Date().toISOString(),
537                     total_paid : 0.50,
538                     balance_owed : 1.00
539                 }
540             }, {
541                 id : 2,
542                 xact_start : new Date().toISOString(),
543                 xact_finish : new Date().toISOString(),
544                 call_number : {
545                         label : "796.6 WEI",
546                         prefix : "",
547                         suffix : "REF",
548                         owning_lib : {
549                            name : "Rogers Reading Room",
550                            shortname : "Rogers"
551                                      }
552                                },
553                 summary : {
554                     xact_type : 'circulation',
555                     last_billing_type : 'Overdue materials',
556                     total_owed : 2.50,
557                     last_payment_note : 'Test Note 2',
558                     last_payment_type : 'credit_payment',
559                     last_payment_ts : new Date().toISOString(),
560                     total_paid : 0.50,
561                     balance_owed : 2.00
562                 }
563             }
564         ],
565
566         copy : seed_copy,
567         copies : [ seed_copy ],
568
569         checkins : [
570             {
571                 due_date : new Date().toISOString(),
572                 circ_lib : 1,
573                 duration : '7 days',
574                 target_copy : seed_copy,
575                 copy_barcode : seed_copy.barcode,
576                 call_number : seed_copy.call_number,
577                 title : seed_record.title
578             },
579         ],
580
581         circulations : [
582             {
583                 circ : {
584                     due_date : new Date().toISOString(),
585                     circ_lib : 1,
586                     duration : '7 days',
587                     renewal_remaining : 2
588                 },
589                 copy : seed_copy,
590                 title : seed_record.title,
591                 author : seed_record.author
592             }
593         ],
594
595         patron_money : {
596             balance_owed : 5.01,
597             total_owed : 10.12,
598             total_paid : 5.11
599         },
600
601         in_house_uses : [
602             {
603                 num_uses : 3,
604                 copy : seed_copy,
605                 title : seed_record.title
606             }
607         ],
608
609         previous_balance : 8.45,
610         payment_total : 2.00,
611         payment_applied : 2.00,
612         new_balance : 6.45,
613         amount_voided : 0,
614         change_given : 0,
615         payment_type : 'cash_payment',
616         payment_note : 'Here is a payment note',
617         note : {
618             create_date : new Date().toISOString(), 
619             title : 'Test Note Title',
620             usr : seed_user,
621             value : 'This patron is super nice!'
622         },
623
624         transit : seed_transit,
625         transits : [ seed_transit ],
626         title : seed_record.title,
627         author : seed_record.author,
628         patron : seed_user,
629         address : seed_addr,
630         dest_location : egCore.idl.toHash(egCore.org.get(egCore.auth.user().ws_ou())),
631         dest_courier_code : 'ABC 123',
632         dest_address : seed_addr,
633         hold : one_hold,
634         holds : [
635             {
636                 hold : one_hold, title : 'Some Title 1', author : 'Some Author 1',
637                 volume : { label : '646.4 SOM' }, copy : seed_copy,
638                 part : { label : 'v. 1' },
639                 patron_barcode : 'S52802662',
640                 patron_alias : 'XYZ', patron_last : 'Smith', patron_first : 'Jane',
641                 status_string : 'Ready for Pickup'
642             },
643             {
644                 hold : one_hold, title : 'Some Title 2', author : 'Some Author 2',
645                 volume : { label : '646.4 SOM' }, copy : seed_copy,
646                 part : { label : 'v. 1' },
647                 patron_barcode : 'S52802662',
648                 patron_alias : 'XYZ', patron_last : 'Smith', patron_first : 'Jane',
649                 status_string : 'Ready for Pickup'
650             },
651             {
652                 hold : one_hold, title : 'Some Title 3', author : 'Some Author 3',
653                 volume : { label : '646.4 SOM' }, copy : seed_copy,
654                 part : { label : 'v. 1' },
655                 patron_barcode : 'S52802662',
656                 patron_alias : 'XYZ', patron_last : 'Smith', patron_first : 'Jane',
657                 status_string : 'Canceled'
658             }
659         ]
660     }
661
662     $scope.preview_scope.payments = [
663         {amount : 1.00, xact : $scope.preview_scope.transactions[0]}, 
664         {amount : 1.00, xact : $scope.preview_scope.transactions[1]}
665     ]
666     $scope.preview_scope.payments[0].xact.title = 'Hali Bote Azikaban de tao fan';
667     $scope.preview_scope.payments[0].xact.copy_barcode = '334343434';
668     $scope.preview_scope.payments[1].xact.title = seed_record.title;
669     $scope.preview_scope.payments[1].xact.copy_barcode = seed_copy.barcode;
670
671     // today, staff, current_location, etc.
672     egCore.print.fleshPrintScope($scope.preview_scope);
673
674     $scope.template_changed = function() {
675         $scope.print.load_failed = false;
676         egCore.print.getPrintTemplate($scope.print.template_name)
677         .then(
678             function(html) { 
679                 $scope.print.template_content = html;
680                 console.log('set template content');
681             },
682             function() {
683                 $scope.print.template_content = '';
684                 $scope.print.load_failed = true;
685             }
686         );
687         egCore.print.getPrintTemplateContext($scope.print.template_name)
688         .then(function(template_context) {
689             $scope.print.template_context = template_context;
690         });
691     }
692
693     $scope.reset_to_default = function() {
694         egCore.print.removePrintTemplate(
695             $scope.print.template_name
696         );
697         egCore.print.removePrintTemplateContext(
698             $scope.print.template_name
699         );
700         $scope.template_changed();
701     }
702
703     $scope.save_locally = function() {
704         egCore.print.storePrintTemplate(
705             $scope.print.template_name,
706             $scope.print.template_content
707         );
708         egCore.print.storePrintTemplateContext(
709             $scope.print.template_name,
710             $scope.print.template_context
711         );
712     }
713
714     $scope.exportable_templates = function() {
715         var templates = {};
716         var contexts = {};
717         var deferred = $q.defer();
718         var promises = [];
719         egCore.hatch.getKeys('eg.print.template').then(function(keys) {
720             angular.forEach(keys, function(key) {
721                 if (key.match(/^eg\.print\.template\./)) {
722                     promises.push(egCore.hatch.getItem(key).then(function(value) {
723                         templates[key.replace('eg.print.template.', '')] = value;
724                     }));
725                 } else {
726                     promises.push(egCore.hatch.getItem(key).then(function(value) {
727                         contexts[key.replace('eg.print.template_context.', '')] = value;
728                     }));
729                 }
730             });
731             $q.all(promises).then(function() {
732                 if (Object.keys(templates).length) {
733                     deferred.resolve({
734                         templates: templates,
735                         contexts: contexts
736                     });
737                 } else {
738                     ngToast.warning(egCore.strings.PRINT_TEMPLATES_FAIL_EXPORT);
739                     deferred.reject();
740                 }
741             });
742         });
743         return deferred.promise;
744     }
745
746     $scope.imported_print_templates = { data : '' };
747     $scope.$watch('imported_print_templates.data', function(newVal, oldVal) {
748         if (newVal && newVal != oldVal) {
749             try {
750                 var data = JSON.parse(newVal);
751                 angular.forEach(data.templates, function(template_content, template_name) {
752                     egCore.print.storePrintTemplate(template_name, template_content);
753                 });
754                 angular.forEach(data.contexts, function(template_context, template_name) {
755                     egCore.print.storePrintTemplateContext(template_name, template_context);
756                 });
757                 $scope.template_changed(); // refresh
758                 ngToast.create(egCore.strings.PRINT_TEMPLATES_SUCCESS_IMPORT);
759             } catch (E) {
760                 ngToast.warning(egCore.strings.PRINT_TEMPLATES_FAIL_IMPORT);
761             }
762         }
763     });
764
765     $scope.template_changed(); // load the default
766 }])
767
768 // 
769 .directive('egPrintTemplateOutput', ['$compile',function($compile) {
770     return function(scope, element, attrs) {
771         scope.$watch(
772             function(scope) {
773                 return scope.$eval(attrs.content);
774             },
775             function(value) {
776                 // create an isolate scope and copy the print context
777                 // data into the new scope.
778                 // TODO: see also print security concerns in egHatch
779                 var result = element.html(value);
780                 var context = scope.$eval(attrs.context);
781                 var print_scope = scope.$new(true);
782                 angular.forEach(context, function(val, key) {
783                     print_scope[key] = val;
784                 })
785                 $compile(element.contents())(print_scope);
786             }
787         );
788     };
789 }])
790
791 .controller('StoredPrefsCtrl',
792        ['$scope','$q','egCore','egConfirmDialog',
793 function($scope , $q , egCore , egConfirmDialog) {
794     console.log('StoredPrefsCtrl');
795
796     $scope.setContext = function(ctx) {
797         $scope.context = ctx;
798     }
799     $scope.setContext('local');
800
801     // grab the edit perm
802     $scope.userHasDeletePerm = false;
803     egCore.perm.hasPermHere('ADMIN_WORKSTATION')
804     .then(function(bool) { $scope.userHasDeletePerm = bool });
805
806     // fetch the keys
807
808     function refreshKeys() {
809         $scope.keys = {local : [], remote : [], server_workstation: []};
810
811         if (egCore.hatch.hatchAvailable) {
812             egCore.hatch.getRemoteKeys().then(
813                 function(keys) { $scope.keys.remote = keys.sort() })
814         }
815     
816         // local calls are non-async
817         $scope.keys.local = egCore.hatch.getLocalKeys();
818
819         egCore.hatch.getServerKeys(null, {workstation_only: true}).then(
820             function(keys) {$scope.keys.server_workstation = keys});
821     }
822     refreshKeys();
823
824     $scope.selectKey = function(key) {
825         $scope.currentKey = key;
826         $scope.currentKeyContent = null;
827
828         if ($scope.context == 'local') {
829             $scope.currentKeyContent = egCore.hatch.getLocalItem(key);
830         } else if ($scope.context == 'remote') {
831             egCore.hatch.getRemoteItem(key)
832             .then(function(content) {
833                 $scope.currentKeyContent = content
834             });
835         } else if ($scope.context == 'server_workstation') {
836             egCore.hatch.getServerItem(key).then(function(content) {
837                 $scope.currentKeyContent = content;
838             });
839         }
840     }
841
842     $scope.getCurrentKeyContent = function() {
843         return JSON.stringify($scope.currentKeyContent, null, 2);
844     }
845
846     $scope.removeKey = function(key) {
847         egConfirmDialog.open(
848             egCore.strings.PREFS_REMOVE_KEY_CONFIRM, '',
849             {   deleteKey : key,
850                 ok : function() {
851                     if ($scope.context == 'local') {
852                         egCore.hatch.removeLocalItem(key);
853                         refreshKeys();
854                     } else if ($scope.context == 'remote') {
855                         // Honor requests to remove items from Hatch even
856                         // when Hatch is configured for data storage.
857                         egCore.hatch.removeRemoteItem(key)
858                         .then(function() { refreshKeys() });
859                     } else if ($scope.context == 'server_workstation') {
860                         egCore.hatch.removeServerItem(key)
861                         .then(function() { refreshKeys() });
862                     }
863                 },
864                 cancel : function() {} // user canceled, nothing to do
865             }
866         );
867     }
868 }])
869
870 .controller('WSRegCtrl',
871        ['$scope','$q','$window','$location','egCore','egAlertDialog','workstationSvc',
872 function($scope , $q , $window , $location , egCore , egAlertDialog , workstationSvc) {
873
874     var all_workstations = [];
875     var reg_perm_orgs = [];
876
877     $scope.page_loaded = false;
878     $scope.contextOrg = egCore.org.get(egCore.auth.user().ws_ou());
879     $scope.wsOrgChanged = function(org) { $scope.contextOrg = org; }
880
881     console.log('set context org to ' + $scope.contextOrg);
882
883     egCore.hatch.hostname().then(function(name) {
884         $scope.newWSName = name || '';
885     });
886
887     // fetch workstation reg perms
888     egCore.perm.hasPermAt('REGISTER_WORKSTATION', true)
889     .then(function(orgList) { 
890         reg_perm_orgs = orgList;
891
892         // hide orgs in the context org selector where this login
893         // does not have the reg_ws perm or the org can't have users
894         $scope.wsOrgHidden = function(id) {
895             return reg_perm_orgs.indexOf(id) == -1
896                 || $scope.cant_have_users(id);
897         }
898
899     // fetch the locally stored workstation data
900     }).then(function() {
901         return workstationSvc.get_all()
902         
903     }).then(function(all) {
904         all_workstations = all || [];
905         $scope.workstations = 
906             all_workstations.map(function(w) { return w.name });
907         return workstationSvc.get_default()
908
909     // fetch the default workstation
910     }).then(function(def) { 
911         $scope.defaultWS = def;
912         $scope.activeWS = $scope.selectedWS = egCore.auth.workstation() || def;
913
914     // Handle any URL commands.
915     }).then(function() {
916         var remove = $location.search().remove;
917          if (remove) {
918             console.log('Removing WS via URL request: ' + remove);
919             return $scope.remove_ws(remove).then(
920                 function() { $scope.page_loaded = true; });
921         }
922         $scope.page_loaded = true;
923     });
924
925     $scope.get_ws_label = function(ws) {
926         return ws == $scope.defaultWS ? 
927             egCore.strings.$replace(egCore.strings.DEFAULT_WS_LABEL, {ws:ws}) : ws;
928     }
929
930     $scope.set_default_ws = function(name) {
931         delete $scope.removing_ws;
932         $scope.defaultWS = name;
933         workstationSvc.set_default(name);
934     }
935
936     $scope.cant_have_users = 
937         function (id) { return !egCore.org.CanHaveUsers(id); };
938     $scope.cant_have_volumes = 
939         function (id) { return !egCore.org.CanHaveVolumes(id); };
940
941     // Log out and return to login page with selected WS 
942     $scope.use_now = function() {
943         egCore.auth.logout();
944         $window.location.href = $location
945             .path('/login')
946             .search({ws : $scope.selectedWS})
947             .absUrl();
948     }
949
950     $scope.can_delete_ws = function(name) {
951         var ws = all_workstations.filter(
952             function(ws) { return ws.name == name })[0];
953         return ws && reg_perm_orgs.indexOf(ws.owning_lib) != -1;
954     }
955
956     $scope.remove_ws = function(remove_me) {
957         $scope.removing_ws = remove_me;
958
959         // Perm is used to disable Remove button in UI, but have to check
960         // again here in case we're removing a WS based on URL params.
961         if (!$scope.can_delete_ws(remove_me)) return $q.when();
962
963         $scope.is_removing = true;
964         return workstationSvc.remove_workstation(remove_me)
965         .then(function() {
966
967             all_workstations = all_workstations.filter(
968                 function(ws) { return ws.name != remove_me });
969
970             $scope.workstations = $scope.workstations.filter(
971                 function(ws) { return ws != remove_me });
972
973             if ($scope.selectedWS == remove_me) 
974                 $scope.selectedWS = $scope.workstations[0];
975
976             if ($scope.defaultWS == remove_me) 
977                 $scope.defaultWS = '';
978
979             $scope.is_removing = false;
980         });
981     }
982
983     $scope.register_ws = function() {
984         delete $scope.removing_ws;
985
986         var full_name = 
987             $scope.contextOrg.shortname() + '-' + $scope.newWSName;
988
989         if ($scope.workstations.indexOf(full_name) > -1) {
990             // avoid duplicate local registrations
991             return egAlertDialog.open(egCore.strings.WS_USED);
992         }
993
994         $scope.is_registering = true;
995         workstationSvc.register_workstation(
996             $scope.newWSName, full_name,
997             $scope.contextOrg.id()
998
999         ).then(function(new_ws) {
1000             $scope.workstations.push(new_ws.name);
1001             all_workstations.push(new_ws);  
1002             $scope.is_registering = false;
1003
1004             if (!$scope.selectedWS) {
1005                 $scope.selectedWS = new_ws.name;
1006             }
1007             if (!$scope.defaultWS) {
1008                 return $scope.set_default_ws(new_ws.name);
1009             }
1010             $scope.newWSName = '';
1011         }, function(err) {
1012             $scope.is_registering = false;
1013         });
1014     }
1015 }])
1016
1017 .controller('HatchCtrl',
1018        ['$scope','egCore','ngToast',
1019 function($scope , egCore , ngToast) {
1020     var hatch = egCore.hatch;  // convenience
1021
1022     $scope.hatch_available = hatch.hatchAvailable;
1023
1024     hatch.usePrinting().then(function(answer) {
1025         $scope.hatch_printing = answer;
1026     });
1027
1028     // Apply Hatch settings as changes occur in the UI.
1029     
1030     $scope.$watch('hatch_printing', function(newval) {
1031         if (typeof newval != 'boolean') return;
1032         hatch.setItem('eg.hatch.enable.printing', newval);
1033     });
1034 }])
1035
1036 /*
1037  * Home of the Latency tester
1038  * */
1039 .controller('testsCtrl', ['$scope', '$location', 'egCore', function($scope, $location, egCore) {
1040     $scope.hostname = $location.host();
1041
1042     $scope.tests = [];
1043     $scope.clearTestData = function(){
1044         $scope.tests = [];
1045         numPings = 0;
1046     }
1047
1048     $scope.isTesting = false;
1049     $scope.avrg = 0; // avrg latency
1050     $scope.canCopyCommand = document.queryCommandSupported('copy');
1051     var numPings = 0;
1052     // initially fetch first 10 (gets a decent average)
1053
1054     function calcAverage(){
1055
1056         if ($scope.tests.length == 0) return 0;
1057
1058         if ($scope.tests.length == 1) return $scope.tests[0].l;
1059
1060         var sum = 0;
1061         angular.forEach($scope.tests, function(t){
1062             sum += t.l;
1063         });
1064
1065         return sum / $scope.tests.length;
1066     }
1067
1068     function ping(){
1069         $scope.isTesting = true;
1070         var t = Date.now();
1071         return egCore.net.request(
1072             "open-ils.pcrud", "opensrf.system.echo", "ping"
1073         ).then(function(resp){
1074             var t2 = Date.now();
1075             var latency = t2 - t;
1076             $scope.tests.push({t: new Date(t), l: latency});
1077             console.log("Start: " + t + " and end: " + t2);
1078             console.log("Latency: " + latency);
1079             console.log(resp);
1080         }).then(function(){
1081             $scope.avrg = calcAverage();
1082             numPings++;
1083             $scope.isTesting = false;
1084         });
1085     }
1086
1087     $scope.testLatency = function(){
1088
1089         if (numPings >= 10){
1090             ping(); // just ping once after the initial ten
1091         } else {
1092             ping()
1093                 .then($scope.testLatency)
1094                 .then(function(){
1095                     if (numPings == 9){
1096                         $scope.tests.shift(); // toss first result
1097                         $scope.avrg = calcAverage();
1098                     }
1099                 });
1100         }
1101     }
1102
1103     $scope.copyTests = function(){
1104
1105         var lNode = document.querySelector('#pingData');
1106         var r = document.createRange();
1107         r.selectNode(lNode);
1108         var sel = window.getSelection();
1109         sel.removeAllRanges();
1110         sel.addRange(r);
1111         document.execCommand('copy');
1112     }
1113
1114 }])
1115
1116