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