]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/circ/patron/app.js
LP#1724052: move stat-cat cache initialization to patron search service
[Evergreen.git] / Open-ILS / web / js / ui / default / staff / circ / patron / app.js
1 /**
2  * Patron App
3  *
4  * Search, checkout, items out, holds, bills, edit, etc.
5  */
6
7 angular.module('egPatronApp', ['ngRoute', 'ui.bootstrap', 'egUserBucketMod', 
8     'egCoreMod', 'egUiMod', 'egGridMod', 'egUserMod', 'ngToast',
9     'egPatronSearchMod'])
10
11 .config(['ngToastProvider', function(ngToastProvider) {
12     ngToastProvider.configure({
13         verticalPosition: 'bottom',
14         animation: 'fade'
15     });
16 }])
17
18 .config(function($routeProvider, $locationProvider, $compileProvider) {
19     $locationProvider.html5Mode(true);
20     $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|mailto|blob):/); // grid export
21         
22     // data loaded at startup which only requires an authtoken goes
23     // here. this allows the requests to be run in parallel instead of
24     // waiting until startup has completed.
25     var resolver = {delay : ['egCore','egUser', function(egCore , egUser) {
26
27         // fetch the org settings we care about during egStartup
28         // and toss them into egCore.env as egCore.env.aous[name] = value.
29         // note: only load settings here needed by all tabs; load tab-
30         // specific settings from within their respective controllers
31         egCore.env.classLoaders.aous = function() {
32             return egCore.org.settings([
33                 'ui.staff.require_initials.patron_info_notes',
34                 'circ.do_not_tally_claims_returned',
35                 'circ.tally_lost',
36                 'circ.obscure_dob',
37                 'ui.circ.show_billing_tab_on_bills',
38                 'circ.patron_expires_soon_warning',
39                 'ui.circ.items_out.lost',
40                 'ui.circ.items_out.longoverdue',
41                 'ui.circ.items_out.claimsreturned'
42             ]).then(function(settings) { 
43                 // local settings are cached within egOrg.  Caching them
44                 // again in egEnv just simplifies the syntax for access.
45                 egCore.env.aous = settings;
46             });
47         }
48
49         egCore.env.loadClasses.push('aous');
50
51         // app-globally modify the default flesh fields for 
52         // fleshed user retrieval.
53         if (egUser.defaultFleshFields.indexOf('profile') == -1) {
54             egUser.defaultFleshFields = egUser.defaultFleshFields.concat([
55                 'profile',
56                 'net_access_level',
57                 'ident_type',
58                 'ident_type2',
59                 'cards',
60                 'groups'
61             ]);
62         }
63
64         return egCore.startup.go();
65     }]};
66
67     $routeProvider.when('/circ/patron/search', {
68         templateUrl: './circ/patron/t_search',
69         controller: 'PatronSearchCtrl',
70         resolve : resolver
71     });
72
73     $routeProvider.when('/circ/patron/bcsearch', {
74         templateUrl: './circ/patron/t_bcsearch',
75         controller: 'PatronBarcodeSearchCtrl',
76         resolve : resolver
77     });
78
79     $routeProvider.when('/circ/patron/credentials', {
80         templateUrl: './circ/patron/t_credentials',
81         controller: 'PatronVerifyCredentialsCtrl',
82         resolve : resolver
83     });
84
85     $routeProvider.when('/circ/patron/last', {
86         templateUrl: './circ/patron/t_last_patron',
87         controller: 'PatronFetchLastCtrl',
88         resolve : resolver
89     });
90
91     // the following require a patron ID
92
93     $routeProvider.when('/circ/patron/:id/alerts', {
94         templateUrl: './circ/patron/t_alerts',
95         controller: 'PatronAlertsCtrl',
96         resolve : resolver
97     });
98
99     $routeProvider.when('/circ/patron/:id/checkout', {
100         templateUrl: './circ/patron/t_checkout',
101         controller: 'PatronCheckoutCtrl',
102         resolve : resolver
103     });
104
105     $routeProvider.when('/circ/patron/:id/items_out', {
106         templateUrl: './circ/patron/t_items_out',
107         controller: 'PatronItemsOutCtrl',
108         resolve : resolver
109     });
110
111     $routeProvider.when('/circ/patron/:id/holds', {
112         templateUrl: './circ/patron/t_holds',
113         controller: 'PatronHoldsCtrl',
114         resolve : resolver
115     });
116
117     $routeProvider.when('/circ/patron/:id/holds/create', {
118         templateUrl: './circ/patron/t_holds_create',
119         controller: 'PatronHoldsCreateCtrl',
120         resolve : resolver
121     });
122
123     $routeProvider.when('/circ/patron/:id/holds/:hold_id', {
124         templateUrl: './circ/patron/t_holds',
125         controller: 'PatronHoldsCtrl',
126         resolve : resolver
127     });
128
129     $routeProvider.when('/circ/patron/:id/hold/:hold_id', {
130         templateUrl: './circ/patron/t_hold_details',
131         controller: 'PatronHoldDetailsCtrl',
132         resolve : resolver
133     });
134
135     $routeProvider.when('/circ/patron/:id/bills', {
136         templateUrl: './circ/patron/t_bills',
137         controller: 'PatronBillsCtrl',
138         resolve : resolver
139     });
140
141     $routeProvider.when('/circ/patron/:id/bill/:xact_id', {
142         templateUrl: './circ/patron/t_xact_details',
143         controller: 'XactDetailsCtrl',
144         resolve : resolver
145     });
146
147     $routeProvider.when('/circ/patron/:id/bill_history/:history_tab', {
148         templateUrl: './circ/patron/t_bill_history',
149         controller: 'BillHistoryCtrl',
150         resolve : resolver
151     });
152
153     $routeProvider.when('/circ/patron/:id/messages', {
154         templateUrl: './circ/patron/t_messages',
155         controller: 'PatronMessagesCtrl',
156         resolve : resolver
157     });
158
159     $routeProvider.when('/circ/patron/:id/edit', {
160         templateUrl: './circ/patron/t_edit',
161         controller: 'PatronRegCtrl',
162         resolve : resolver
163     });
164
165     $routeProvider.when('/circ/patron/:id/credentials', {
166         templateUrl: './circ/patron/t_credentials',
167         controller: 'PatronVerifyCredentialsCtrl',
168         resolve : resolver
169     });
170
171     $routeProvider.when('/circ/patron/:id/notes', {
172         templateUrl: './circ/patron/t_notes',
173         controller: 'PatronNotesCtrl',
174         resolve : resolver
175     });
176
177     $routeProvider.when('/circ/patron/:id/triggered_events', {
178         templateUrl: './circ/patron/t_triggered_events',
179         controller: 'PatronTriggeredEventsCtrl',
180         resolve : resolver
181     });
182
183     $routeProvider.when('/circ/patron/:id/message_center', {
184         templateUrl: './circ/patron/t_message_center',
185         controller: 'PatronMessageCenterCtrl',
186         resolve : resolver
187     });
188
189     $routeProvider.when('/circ/patron/:id/edit_perms', {
190         templateUrl: './circ/patron/t_edit_perms',
191         controller: 'PatronPermsCtrl',
192         resolve : resolver
193     });
194
195     $routeProvider.when('/circ/patron/:id/group', {
196         templateUrl: './circ/patron/t_group',
197         controller: 'PatronGroupCtrl',
198         resolve : resolver
199     });
200
201     $routeProvider.when('/circ/patron/:id/stat_cats', {
202         templateUrl: './circ/patron/t_stat_cats',
203         controller: 'PatronStatCatsCtrl',
204         resolve : resolver
205     });
206
207     $routeProvider.when('/circ/patron/:id/surveys', {
208         templateUrl: './circ/patron/t_surveys',
209         controller: 'PatronSurveyCtrl',
210         resolve : resolver
211     });
212
213     $routeProvider.otherwise({redirectTo : '/circ/patron/search'});
214 })
215
216 /**
217  * Manages tabbed patron view.
218  * This is the parent scope of all patron tab scopes.
219  *
220  * */
221 .controller('PatronCtrl',
222        ['$scope','$q','$location','$filter','egCore','egNet','egUser','egAlertDialog','egConfirmDialog','egPromptDialog','patronSvc',
223 function($scope,  $q , $location , $filter , egCore , egNet , egUser , egAlertDialog , egConfirmDialog , egPromptDialog , patronSvc) {
224
225     $scope.is_patron_edit = function() {
226         return Boolean($location.path().match(/patron\/\d+\/edit$/));
227     }
228
229     // To support the fixed position patron edit actions bar,
230     // its markup has to live outside the scope of the patron 
231     // edit controller.  Insert a scope blob here that can be
232     // modifed from within the patron edit controller.
233     $scope.edit_passthru = {};
234
235     // returns true if a redirect occurs
236     function redirectToAlertPanel() {
237
238         $scope.alert_penalties = 
239             function() {return patronSvc.alert_penalties}
240
241         if (patronSvc.alertsShown()) return false;
242
243         // if the patron has any unshown alerts, show them now
244         if (patronSvc.hasAlerts && 
245             !$location.path().match(/alerts$/)) {
246
247             $location
248                 .path('/circ/patron/' + patronSvc.current.id() + '/alerts')
249                 .search('card', null);
250             return true;
251         }
252
253         // no alert required.  If the patron has fines and the show-bills
254         // OUS is applied, direct to the bills page.
255         if ($scope.patron_stats().fines.balance_owed > 0 // TODO: != 0 ?
256             && egCore.env.aous['ui.circ.show_billing_tab_on_bills']
257             && !$location.path().match(/bills$/)) {
258
259             $scope.tab = 'bills';
260             $location
261                 .path('/circ/patron/' + patronSvc.current.id() + '/bills')
262                 .search('card', null);
263
264             return true;
265         }
266
267         return false;
268     }
269
270     // called after each route-specified controller is instantiated.
271     // this doubles as a way to inform the top-level controller that
272     // egStartup.go() has completed, which means we are clear to 
273     // fetch the patron, etc.
274     $scope.initTab = function(tab, patron_id) {
275         console.log('init tab ' + tab);
276         $scope.tab = tab;
277         $scope.aous = egCore.env.aous;
278         $scope.auth_user_id = egCore.auth.user().id();
279
280         if (patron_id) {
281             $scope.patron_id = patron_id;
282             return patronSvc.setPrimary($scope.patron_id)
283             .then(function() {
284                 // the page title context label comes from the tab.
285                 egCore.strings.setPageTitle(
286                     egCore.strings.PAGE_TITLE_PATRON_NAME, 
287                     egCore.strings['PAGE_TITLE_PATRON_' + tab.toUpperCase()],
288                     {   lname : patronSvc.current.family_name(),
289                         fname : patronSvc.current.first_given_name(),
290                         mname : patronSvc.current.second_given_name()
291                     }
292                 );
293             })
294             .then(function() {return patronSvc.checkAlerts()})
295             .then(redirectToAlertPanel)
296             .then(function(){
297                 $scope.ident_type_name = $scope.patron().ident_type().name()
298                 $scope.hasIdentTypeName = $scope.ident_type_name.length > 0;
299             });
300         } else {
301             // No patron, use the tab name as the page title.
302             egCore.strings.setPageTitle(
303                 egCore.strings['PAGE_TITLE_PATRON_' + tab.toUpperCase()]);
304         }
305         return $q.when();
306     }
307
308     $scope._show_dob = {};
309     $scope.show_dob = function (val) {
310         if ($scope.patron()) {
311             if (typeof val != 'undefined') $scope._show_dob[$scope.patron().id()] = val;
312             return $scope._show_dob[$scope.patron().id()];
313         }
314         return !egCore.env.aous['circ.obscure_dob'];
315     }
316         
317     $scope.obscure_dob = function() { 
318         return egCore.env.aous && egCore.env.aous['circ.obscure_dob'];
319     }
320     $scope.now_show_dob = function() { 
321         return egCore.env.aous && egCore.env.aous['circ.obscure_dob'] ?
322             $scope.show_dob() : true; 
323     }
324
325     $scope.patron = function() { return patronSvc.current }
326     $scope.patron_stats = function() { return patronSvc.patron_stats }
327     $scope.summary_stat_cats = function() { return patronSvc.summary_stat_cats }
328     $scope.hasAlerts = function() { return patronSvc.hasAlerts }
329     $scope.isPatronExpired = function() { return patronSvc.patronExpired }
330
331     $scope.print_address = function(addr) {
332         egCore.print.print({
333             context : 'default', 
334             template : 'patron_address', 
335             scope : {
336                 patron : egCore.idl.toHash(patronSvc.current),
337                 address : egCore.idl.toHash(addr)
338             }
339         });
340     }
341
342     $scope.toggle_expand_summary = function() {
343         if ($scope.collapsePatronSummary) {
344             $scope.collapsePatronSummary = false;
345             egCore.hatch.removeItem('eg.circ.patron.summary.collapse');
346         } else {
347             $scope.collapsePatronSummary = true;
348             egCore.hatch.setItem('eg.circ.patron.summary.collapse', true);
349         }
350     }
351     
352     // always expand the patron summary in the search UI, regardless
353     // of stored preference.
354     $scope.collapse_summary = function() {
355         return $scope.tab != 'search' && $scope.collapsePatronSummary;
356     }
357
358     function _purge_account(dest_usr,override) {
359         egNet.request(
360             'open-ils.actor',
361             'open-ils.actor.user.delete' + (override ? '.override' : ''),
362             egCore.auth.token(),
363             $scope.patron().id(),
364             dest_usr
365         ).then(function(resp){
366             if (evt = egCore.evt.parse(resp)) {
367                 if (evt.code == '2004' /* ACTOR_USER_DELETE_OPEN_XACTS */) {
368                     egConfirmDialog.open(
369                         egCore.strings.PATRON_PURGE_CONFIRM_TITLE, egCore.strings.PATRON_PURGE_OVERRIDE_PROMPT,
370                         {ok : function() {
371                             _purge_account(dest_usr,true);
372                         }}
373                     );
374                 } else {
375                     alert(js2JSON(evt));
376                 }
377             } else {
378                 location.href = egCore.env.basePath + '/circ/patron/search';
379             }
380         });
381     }
382
383     function _purge_account_with_destination(dest_barcode) {
384         egCore.pcrud.search('ac', {barcode : dest_barcode})
385         .then(function(card) {
386             if (!card) {
387                 egAlertDialog.open(egCore.strings.PATRON_PURGE_STAFF_BAD_BARCODE);
388             } else {
389                 _purge_account(card.usr());
390             }
391         });
392     }
393
394     $scope.purge_account = function() {
395         egConfirmDialog.open(
396             egCore.strings.PATRON_PURGE_CONFIRM_TITLE, egCore.strings.PATRON_PURGE_CONFIRM,
397             {ok : function() {
398                 egConfirmDialog.open(
399                     egCore.strings.PATRON_PURGE_CONFIRM_TITLE, egCore.strings.PATRON_PURGE_LAST_CHANCE,
400                     {ok : function() {
401                         egNet.request(
402                             'open-ils.actor',
403                             'open-ils.actor.user.has_work_perm_at',
404                             egCore.auth.token(), 'STAFF_LOGIN', $scope.patron().id()
405                         ).then(function(resp) {
406                             var is_staff = resp.length > 0;
407                             if (is_staff) {
408                                 egPromptDialog.open(
409                                     egCore.strings.PATRON_PURGE_STAFF_PROMPT,
410                                     null, // TODO: this would be cool if it worked: egCore.auth.user().card().barcode(),
411                                     {ok : function(barcode) {_purge_account_with_destination(barcode)}}
412                                 );
413                             } else {
414                                 _purge_account();
415                             }
416                         });
417                     }
418                 });
419             }
420         });
421     }
422
423     egCore.hatch.getItem('eg.circ.patron.summary.collapse')
424     .then(function(val) {$scope.collapsePatronSummary = Boolean(val)});
425 }])
426
427 .controller('PatronBarcodeSearchCtrl',
428        ['$scope','$location','egCore','egConfirmDialog','egUser','patronSvc','$uibModal','$q',
429 function($scope , $location , egCore , egConfirmDialog , egUser , patronSvc , $uibModal , $q) {
430     $scope.selectMe = true; // focus text input
431     patronSvc.clearPrimary(); // clear the default user
432
433     // jump to the patron checkout UI
434     function loadPatron(user_id) {
435         egCore.audio.play('success.patron.by_barcode');
436         $location
437         .path('/circ/patron/' + user_id + '/checkout')
438         .search('card', $scope.args.barcode);
439         patronSvc.search_barcode = $scope.args.barcode;
440     }
441
442     // create an opt-in=yes response for the loaded user
443     function createOptIn(user_id) {
444         egCore.net.request(
445             'open-ils.actor',
446             'open-ils.actor.user.org_unit_opt_in.create',
447             egCore.auth.token(), user_id).then(function(resp) {
448                 if (evt = egCore.evt.parse(resp)) return alert(evt);
449                 loadPatron(user_id);
450             }
451         );
452     }
453
454     $scope.submitBarcode = function(args) {
455         $scope.bcNotFound = null;
456         $scope.optInRestricted = false;
457         if (!args.barcode) return;
458         args.barcode = args.barcode.replace(/\s/g,'');
459         // blur so next time it's set to true it will re-apply select()
460         $scope.selectMe = false;
461
462         var user_id;
463
464         // given a scanned barcode, this function finds any matching users
465         // and handles multiple matches due to barcode completion
466         function handleBarcodeCompletion(scanned_barcode) {
467             var deferred = $q.defer();
468
469             egCore.net.request(
470                 'open-ils.actor',
471                 'open-ils.actor.get_barcodes',
472                 egCore.auth.token(), egCore.auth.user().ws_ou(), 
473                 'actor', scanned_barcode)
474
475             .then(function(resp) { // get_barcodes
476
477                 if (evt = egCore.evt.parse(resp)) {
478                     alert(evt); // FIXME
479                     deferred.reject();
480                     return;
481                 }
482
483                 if (!resp || !resp[0]) {
484                     $scope.bcNotFound = args.barcode;
485                     $scope.selectMe = true;
486                     egCore.audio.play('warning.patron.not_found');
487                     deferred.reject();
488                     return;
489                 }
490
491                 if (resp.length == 1) {
492                     // exactly one matching barcode: return it
493                     deferred.resolve();
494                     user_id = resp[0].id;
495                 } else {
496                     // multiple matching barcodes: let the user pick one 
497                     var barcode_map = {};
498                     var matches = [];
499                     var promises = [];
500                     var selected_barcode;
501                     angular.forEach(resp, function(match) {
502                         promises.push(
503                             egUser.get(match.id, {useFields : ['home_ou']}).then(function(user) {
504                                 barcode_map[match.barcode] = user.id();
505                                 matches.push( {
506                                     barcode: match.barcode,
507                                     title: user.first_given_name() + ' ' + user.family_name(),
508                                     org_name: user.home_ou().name(),
509                                     org_shortname: user.home_ou().shortname()
510                                 });
511                             })
512                         );
513                     });
514                     return $q.all(promises)
515                     .then(function() {
516                         $uibModal.open({
517                             templateUrl: './circ/share/t_barcode_choice_dialog',
518                             controller:
519                                 ['$scope', '$uibModalInstance',
520                                 function($scope, $uibModalInstance) {
521                                 $scope.matches = matches;
522                                 $scope.ok = function(barcode) {
523                                     $uibModalInstance.close();
524                                     selected_barcode = barcode;
525                                 }
526                                 $scope.cancel = function() {$uibModalInstance.dismiss()}
527                             }],
528                         }).result.then(function() {
529                             deferred.resolve();
530                             user_id = barcode_map[selected_barcode];
531                         });
532                     });
533                 }
534             });
535             return deferred.promise;
536         }
537
538         // call our function to lookup matching users for the scanned barcode
539         handleBarcodeCompletion(args.barcode).then(function() {
540
541             // see if an opt-in request is needed
542             return egCore.net.request(
543                 'open-ils.actor',
544                 'open-ils.actor.user.org_unit_opt_in.check',
545                 egCore.auth.token(), user_id
546             ).then(function(optInResp) { // opt_in_check
547
548                 if (evt = egCore.evt.parse(optInResp)) {
549                     alert(evt); // FIXME
550                     return;
551                 }
552
553                 if (optInResp == 2) {
554                     // opt-in disallowed at this location by patron's home library
555                     $scope.optInRestricted = true;
556                     $scope.selectMe = true;
557                     egCore.audio.play('warning.patron.opt_in_restricted');
558                     return;
559                 }
560             
561                 if (optInResp == 1) {
562                     // opt-in handled or not needed
563                     return loadPatron(user_id);
564                 }
565
566                 // opt-in needed, show the opt-in dialog
567                 egUser.get(user_id, {useFields : []})
568
569                 .then(function(user) { // retrieve user
570                     var org = egCore.org.get(user.home_ou());
571                     egConfirmDialog.open(
572                         egCore.strings.OPT_IN_DIALOG_TITLE,
573                         egCore.strings.OPT_IN_DIALOG,
574                         {   family_name : user.family_name(),
575                             first_given_name : user.first_given_name(),
576                             org_name : org.name(),
577                             org_shortname : org.shortname(),
578                             ok : function() { createOptIn(user.id()) },
579                             cancel : function() {}
580                         }
581                     );
582                 })
583             })
584         })
585     }
586 }])
587
588
589 /**
590  * Manages patron search
591  */
592 .controller('PatronSearchCtrl',
593        ['$scope','$q','$routeParams','$timeout','$window','$location','egCore','ngToast',
594        '$filter','egUser', 'patronSvc','egGridDataProvider','$document','bucketSvc',
595        'egPatronMerge','egProgressDialog','$controller','$interpolate','$uibModal',
596 function($scope,  $q,  $routeParams,  $timeout,  $window,  $location,  egCore , ngToast,
597          $filter,  egUser,  patronSvc , egGridDataProvider , $document , bucketSvc,
598         egPatronMerge , egProgressDialog , $controller , $interpolate , $uibModal) {
599
600     angular.extend(this, $controller('BasePatronSearchCtrl', {$scope : $scope}));
601     $scope.initTab('search');
602
603     $scope.gridControls = {
604         activateItem : function(item) {
605             $location.path('/circ/patron/' + item.id() + '/checkout');
606         },
607         selectedItems : function() { return [] }
608     }
609
610     $scope.bucketSvc = bucketSvc;
611     $scope.bucketSvc.fetchUserBuckets();
612     $scope.addToBucket = function(item, data, recs) {
613         if (recs.length == 0) return;
614         var added_count = 0;
615         var failed_count = 0;
616         var p = [];
617         angular.forEach(recs,
618             function(rec) {
619                 var item = new egCore.idl.cubi();
620                 item.bucket(data.id());
621                 item.target_user(rec.id());
622                 p.push(egCore.net.request(
623                     'open-ils.actor',
624                     'open-ils.actor.container.item.create',
625                     egCore.auth.token(), 'user', item
626                 ).then(
627                     function(){ added_count++ },
628                     function(){ failed_count++ }
629                 ));
630             }
631         );
632
633         $q.all(p).then( function () {
634             if (added_count) ngToast.create($interpolate(egCore.strings.BUCKET_ADD_SUCCESS)({ count: ''+added_count, name: data.name()} ));
635             if (failed_count) ngToast.warning($interpolate(egCore.strings.BUCKET_ADD_FAIL)({ count: ''+failed_count, name: data.name() } ));
636         });
637     }
638
639     var temp_scope = $scope;
640     $scope.openCreateBucketDialog = function() {
641         $uibModal.open({
642             templateUrl: './circ/patron/bucket/t_bucket_create',
643             backdrop: 'static',
644             controller:
645                 ['$scope', '$uibModalInstance', function($scope, $uibModalInstance) {
646                 $scope.focusMe = true;
647                 $scope.ok = function(args) { $uibModalInstance.close(args) }
648                 $scope.cancel = function () { $uibModalInstance.dismiss() }
649             }]
650         }).result.then(function (args) {
651             if (!args || !args.name) return;
652             bucketSvc.createBucket(args.name, args.desc).then(
653                 function(id) {
654                     if (id) {
655                         $scope.bucketSvc.fetchBucket(id).then(function (b) {
656                             $scope.addToBucket(
657                                 null,
658                                 b,
659                                 $scope.gridControls.selectedItems()
660                             );
661                             $scope.bucketSvc.fetchUserBuckets(true);
662                         });
663                     }
664                 }
665             );
666         });
667     }
668
669     $scope.$watch(
670         function() {return $scope.gridControls.selectedItems()},
671         function(list) {
672             if (list[0]) 
673                 patronSvc.setPrimary(null, list[0]);
674         },
675         true
676     );
677
678     $scope.need_one_selected = function() {
679         var items = $scope.gridControls.selectedItems();
680         return (items.length > 0) ? false : true;
681     }
682     $scope.need_two_selected = function() {
683         var items = $scope.gridControls.selectedItems();
684         return (items.length == 2) ? false : true;
685     }
686     $scope.merge_patrons = function() {
687         var items = $scope.gridControls.selectedItems();
688         if (items.length != 2) return false;
689
690         var patron_ids = [];
691         angular.forEach(items, function(i) {
692             patron_ids.push(i.id());
693         });
694         egPatronMerge.do_merge(patron_ids).then(function() {
695             // ensure that we're not drawing from cached
696             // resuts, as a successful merge just deleted a
697             // record
698             delete patronSvc.lastSearch;
699             $scope.gridControls.refresh();
700         });
701     }
702    
703 }])
704
705 /**
706  * Manages messages
707  */
708 .controller('PatronMessagesCtrl',
709        ['$scope','$q','$routeParams','egCore','$uibModal','patronSvc','egCirc',
710 function($scope , $q , $routeParams,  egCore , $uibModal , patronSvc , egCirc) {
711     $scope.initTab('messages', $routeParams.id);
712     var usr_id = $routeParams.id;
713
714     // setup date filters
715     var start = new Date(); // now - 1 year
716     start.setFullYear(start.getFullYear() - 1),
717     $scope.dates = {
718         start_date : start,
719         end_date : new Date()
720     }
721
722     function date_range() {
723         var start = $scope.dates.start_date.toISOString().replace(/T.*/,'');
724         var end = $scope.dates.end_date.toISOString().replace(/T.*/,'');
725         var today = new Date().toISOString().replace(/T.*/,'');
726         if (end == today) end = 'now';
727         return [start, end];
728     }
729
730     // grid queries
731    
732     var activeGrid = $scope.activeGridControls = {
733         setSort : function() {
734             return ['set_date'];
735         },
736         setQuery : function() {
737             return {
738                 usr : usr_id,
739                 '-or' : [
740                     {stop_date : null},
741                     {stop_date : {'>' : 'now'}}
742                 ]
743             }
744         }
745     }
746
747     var archiveGrid = $scope.archiveGridControls = {
748         setSort : function() {
749             return ['set_date'];
750         },
751         setQuery : function() {
752             return {
753                 usr : usr_id, 
754                 stop_date : {'<=' : 'now'},
755                 set_date : {between : date_range()}
756             };
757         }
758     };
759
760     $scope.removePenalty = function(selected) {
761         // the grid stores flattened penalties.  Fetch penalty objects first
762
763         var ids = selected.map(function(s){ return s.id });
764         egCore.pcrud.search('ausp', 
765             {id : ids}, {}, 
766             {atomic : true, authoritative : true}
767
768         // then delete them
769         ).then(function(penalties) {
770             return egCore.pcrud.remove(penalties);
771
772         // then refresh the grid
773         }).then(function() {
774             activeGrid.refresh();
775         });
776     }
777
778     $scope.archivePenalty = function(selected) {
779         // the grid stores flattened penalties.  Fetch penalty objects first
780
781         var ids = selected.map(function(s){ return s.id });
782         egCore.pcrud.search('ausp', 
783             {id : ids}, {}, 
784             {atomic : true, authoritative : true}
785
786         // then delete them
787         ).then(function(penalties) {
788             angular.forEach(penalties, function(p){ p.stop_date('now') });
789             return egCore.pcrud.update(penalties);
790
791         // then refresh the grid
792         }).then(function() {
793             activeGrid.refresh();
794             archiveGrid.refresh();
795         });
796     }
797
798     // leverage egEnv for caching
799     function fetchPenaltyTypes() {
800         if (egCore.env.csp) 
801             return $q.when(egCore.env.csp.list);
802         return egCore.pcrud.search(
803             // id <= 100 are reserved for system use
804             'csp', {id : {'>': 100}}, {}, {atomic : true})
805         .then(function(penalties) {
806             egCore.env.absorbList(penalties, 'csp');
807             return penalties;
808         });
809     }
810
811     $scope.createPenalty = function() {
812         egCirc.create_penalty(usr_id).then(function() {
813             activeGrid.refresh();
814             // force a refresh of the user, since they may now
815             // have blocking penalties, etc.
816             patronSvc.setPrimary(patronSvc.current.id(), null, true);
817         });
818     }
819
820     $scope.editPenalty = function(selected) {
821         if (selected.length == 0) return;
822
823         // grab the penalty from the user object
824         var penalty = patronSvc.current.standing_penalties().filter(
825             function(p) {return p.id() == selected[0].id})[0];
826
827         egCirc.edit_penalty(penalty).then(function() {
828             activeGrid.refresh();
829             // force a refresh of the user, since they may now
830             // have blocking penalties, etc.
831             patronSvc.setPrimary(patronSvc.current.id(), null, true);
832         });
833     }
834 }])
835
836
837 /**
838  * Credentials tester
839  */
840 .controller('PatronVerifyCredentialsCtrl',
841        ['$scope','$routeParams','$location','egCore',
842 function($scope,  $routeParams , $location , egCore) {
843     $scope.verified = null;
844     $scope.focusMe = true;
845
846     // called with a patron, pre-populate the form args
847     $scope.initTab('other', $routeParams.id).then(
848         function() {
849             if ($routeParams.id && $scope.patron()) {
850                 $scope.prepop = true;
851                 $scope.username = $scope.patron().usrname();
852                 $scope.barcode = $scope.patron().card().barcode();
853             } else {
854                 $scope.username = '';
855                 $scope.barcode = '';
856                 $scope.password = '';
857             }
858         }
859     );
860
861     // verify login credentials
862     $scope.verify = function() {
863         $scope.verified = null;
864         $scope.notFound = false;
865
866         egCore.net.request(
867             'open-ils.actor',
868             'open-ils.actor.verify_user_password',
869             egCore.auth.token(), $scope.barcode,
870             $scope.username, hex_md5($scope.password || '')
871
872         ).then(function(resp) {
873             $scope.focusMe = true;
874             if (evt = egCore.evt.parse(resp)) {
875                 alert(evt);
876             } else if (resp == 1) {
877                 $scope.verified = true;
878             } else {
879                 $scope.verified = false;
880             }
881         });
882     }
883
884     // load the main patron UI for the provided username or barcode
885     $scope.load = function($event) {
886         $scope.notFound = false;
887         $scope.verified = null;
888
889         egCore.net.request(
890             'open-ils.actor',
891             'open-ils.actor.user.retrieve_id_by_barcode_or_username',
892             egCore.auth.token(), $scope.barcode, $scope.username
893
894         ).then(function(resp) {
895
896             if (Number(resp)) {
897                 $location.path('/circ/patron/' + resp + '/checkout');
898                 return;
899             }
900
901             // something went wrong...
902             $scope.focusMe = true;
903             if (evt = egCore.evt.parse(resp)) {
904                 if (evt.textcode == 'ACTOR_USR_NOT_FOUND') {
905                     $scope.notFound = true;
906                     return;
907                 }
908                 return alert(evt);
909             } else {
910                 alert(resp);
911             }
912         });
913
914         // load() button sits within the verify form.  
915         // avoid submitting the verify() form action on load()
916         $event.preventDefault();
917     }
918 }])
919
920 .controller('PatronAlertsCtrl',
921        ['$scope','$routeParams','$location','egCore','patronSvc',
922 function($scope,  $routeParams , $location , egCore , patronSvc) {
923
924     $scope.initTab('other', $routeParams.id)
925     .then(function() {
926         $scope.patronExpired = patronSvc.patronExpired;
927         $scope.patronExpiresSoon = patronSvc.patronExpiresSoon;
928         $scope.retrievedWithInactive = patronSvc.fetchedWithInactiveCard();
929         $scope.invalidAddresses = patronSvc.invalidAddresses;
930     });
931
932 }])
933
934 .controller('PatronNotesCtrl',
935        ['$scope','$filter','$routeParams','$location','egCore','patronSvc','$uibModal',
936         'egConfirmDialog',
937 function($scope,  $filter , $routeParams , $location , egCore , patronSvc , $uibModal,
938          egConfirmDialog) {
939     $scope.initTab('other', $routeParams.id);
940     var usr_id = $routeParams.id;
941
942     // fetch the notes
943     function refreshPage() {
944         $scope.notes = [];
945         egCore.pcrud.search('aun', 
946             {usr : usr_id}, 
947             {flesh : 1, flesh_fields : {aun : ['creator']}}, 
948             {authoritative : true})
949         .then(null, null, function(note) {
950             $scope.notes.push(note);
951         });
952     }
953
954     // open the new-note dialog and create the note
955     $scope.newNote = function() {
956         $uibModal.open({
957             templateUrl: './circ/patron/t_new_note_dialog',
958             backdrop: 'static',
959             controller: 
960                 ['$scope', '$uibModalInstance',
961             function($scope, $uibModalInstance) {
962                 $scope.focusNote = true;
963                 $scope.args = {};
964                 $scope.require_initials = egCore.env.aous['ui.staff.require_initials.patron_info_notes'];
965                 $scope.ok = function(count) { $uibModalInstance.close($scope.args) }
966                 $scope.cancel = function () { $uibModalInstance.dismiss() }
967             }],
968         }).result.then(
969             function(args) {
970                 if (!args.value) return;
971                 var note = new egCore.idl.aun();
972                 note.usr(usr_id);
973                 note.title(args.title);
974                 note.value(args.value);
975                 note.pub(args.pub ? 't' : 'f');
976                 note.creator(egCore.auth.user().id());
977                 if (args.initials) 
978                     note.value(note.value() + ' [' + args.initials + ']');
979                 egCore.pcrud.create(note).then(function() {refreshPage()});
980             }
981         );
982     }
983
984     // delete the selected note
985     $scope.deleteNote = function(note) {
986         egConfirmDialog.open(
987             egCore.strings.PATRON_NOTE_DELETE_CONFIRM_TITLE, egCore.strings.PATRON_NOTE_DELETE_CONFIRM,
988             {ok : function() {
989                 egCore.pcrud.remove(note).then(function() {refreshPage()});
990             },
991             note_title : note.title(),
992             create_date : note.create_date()
993         });
994     }
995
996     // print the selected note
997     $scope.printNote = function(note) {
998         var hash = egCore.idl.toHash(note);
999         hash.usr = egCore.idl.toHash($scope.patron());
1000         egCore.print.print({
1001             context : 'default', 
1002             template : 'patron_note', 
1003             scope : {note : hash}
1004         });
1005     }
1006
1007     // perform the initial note fetch
1008     refreshPage();
1009 }])
1010
1011 .controller('PatronGroupCtrl',
1012        ['$scope','$routeParams','$q','$window','$timeout','$location','egCore',
1013         'patronSvc','$uibModal','egPromptDialog','egConfirmDialog',
1014 function($scope,  $routeParams , $q , $window , $timeout,  $location , egCore ,
1015          patronSvc , $uibModal , egPromptDialog , egConfirmDialog) {
1016
1017     var usr_id = $routeParams.id;
1018
1019     $scope.totals = {owed : 0, total_out : 0, overdue : 0}
1020
1021     var grid = $scope.gridControls = {
1022         activateItem : function(item) {
1023             $location.path('/circ/patron/' + item.id + '/checkout');
1024         },
1025         itemRetrieved : function(item) {
1026
1027             if (item.id == patronSvc.current.id()) {
1028                 item.stats = patronSvc.patron_stats;
1029
1030             } else {
1031                 // flesh stats for other group members
1032                 patronSvc.getUserStats(item.id).then(function(stats) {
1033                     item.stats = stats;
1034                     $scope.totals.total_out += stats.checkouts.total_out; 
1035                     $scope.totals.overdue += stats.checkouts.overdue; 
1036                 });
1037             }
1038         },
1039         setSort : function() {
1040             return ['create_date'];
1041         }
1042     }
1043
1044     $scope.initTab('other', $routeParams.id)
1045     .then(function(redirect) {
1046         // if we are redirecting to the alerts page, avoid updating the
1047         // grid query.
1048         if (redirect) return;
1049         // let initTab() fetch the user first so we can know the usrgroup
1050
1051         grid.setQuery({
1052             usrgroup : patronSvc.current.usrgroup(),
1053             deleted : 'f'
1054         });
1055         $scope.totals.owed = patronSvc.patron_stats.fines.group_balance_owed;
1056     });
1057
1058     $scope.removeFromGroup = function(selected) {
1059         var promises = [];
1060         angular.forEach(selected, function(user) {
1061             console.debug('removing user ' + user.id + ' from group');
1062
1063             promises.push(
1064                 egCore.net.request(
1065                     'open-ils.actor',
1066                     'open-ils.actor.usergroup.new',
1067                     egCore.auth.token(), user.id, true
1068                 )
1069             );
1070         });
1071
1072         $q.all(promises).then(function() {grid.refresh()});
1073     }
1074
1075     function addUserToGroup(user) {
1076         user.usrgroup(patronSvc.current.usrgroup());
1077         user.ischanged(true);
1078         egCore.net.request(
1079             'open-ils.actor',
1080             'open-ils.actor.patron.update',
1081             egCore.auth.token(), user
1082
1083         ).then(function() {grid.refresh()});
1084     }
1085
1086     // fetch each user ("selected" has flattened users)
1087     // update the usrgroup, then update the user object
1088     // After all updates are complete, refresh the grid.
1089     function moveUsersToGroup(target_user, selected) {
1090         var promises = [];
1091
1092         angular.forEach(selected, function(user) {
1093             promises.push(
1094                 egCore.pcrud.retrieve('au', user.id)
1095                 .then(function(u) {
1096                     u.usrgroup(target_user.usrgroup());
1097                     u.ischanged(true);
1098                     return egCore.net.request(
1099                         'open-ils.actor',
1100                         'open-ils.actor.patron.update',
1101                         egCore.auth.token(), u
1102                     );
1103                 })
1104             );
1105         });
1106
1107         $q.all(promises).then(function() {grid.refresh()});
1108     }
1109
1110     function showMoveToGroupConfirm(barcode, selected, outbound) {
1111
1112         // find the user
1113         egCore.pcrud.search('ac', {barcode : barcode})
1114
1115         // fetch the fleshed user
1116         .then(function(card) {
1117
1118             if (!card) return; // TODO: warn user
1119
1120             egCore.pcrud.retrieve('au', card.usr())
1121             .then(function(user) {
1122                 user.card(card);
1123                 $uibModal.open({
1124                     templateUrl: './circ/patron/t_move_to_group_dialog',
1125                     backdrop: 'static',
1126                     controller: [
1127                                 '$scope','$uibModalInstance',
1128                         function($scope , $uibModalInstance) {
1129                             $scope.user = user;
1130                             $scope.selected = selected;
1131                             $scope.outbound = outbound;
1132                             $scope.ok = 
1133                                 function(count) { $uibModalInstance.close() }
1134                             $scope.cancel = 
1135                                 function () { $uibModalInstance.dismiss() }
1136                         }
1137                     ]
1138                 }).result.then(function() {
1139                     if (outbound) {
1140                         moveUsersToGroup(user, selected);
1141                     } else {
1142                         addUserToGroup(user);
1143                     }
1144                 });
1145             });
1146         });
1147     }
1148
1149     // selected == move selected patrons to another patron's group
1150     // !selected == patron from a different group moves into our group
1151     function moveToGroup(selected, outbound) {
1152         egPromptDialog.open(
1153             egCore.strings.GROUP_ADD_USER, '',
1154             {ok : function(value) {
1155                 if (value) 
1156                     showMoveToGroupConfirm(value, selected, outbound);
1157             }}
1158         );
1159     }
1160
1161     $scope.moveToGroup = function() { moveToGroup([], false) };
1162     $scope.moveToAnotherGroup = function(selected) { moveToGroup(selected, true) };
1163
1164     $scope.cloneUser = function(selected) {
1165         if (!selected.length) return;
1166         var url = $location.absUrl().replace(
1167             /\/patron\/.*/, 
1168             '/patron/register/clone/' + selected[0].id);
1169         $window.open(url, '_blank').focus();
1170     }
1171
1172     $scope.retrieveSelected = function(selected) {
1173         if (!selected.length) return;
1174         angular.forEach(selected, function(usr) {
1175             $timeout(function() {
1176                 var url = $location.absUrl().replace(
1177                     /\/patron\/.*/,
1178                     '/patron/' + usr.id + '/checkout');
1179                 $window.open(url, '_blank')
1180             });
1181         });
1182     }
1183
1184 }])
1185
1186 .controller('PatronStatCatsCtrl',
1187        ['$scope','$routeParams','$q','egCore','patronSvc',
1188 function($scope,  $routeParams , $q , egCore , patronSvc) {
1189     $scope.initTab('other', $routeParams.id)
1190     .then(function(redirect) {
1191         // Entries for org-visible stat cats are fleshed.  Any others
1192         // have to be fleshed within.
1193
1194         var to_flesh = {};
1195         angular.forEach(patronSvc.current.stat_cat_entries(), 
1196             function(entry) {
1197                 if (!angular.isObject(entry.stat_cat())) {
1198                     to_flesh[entry.stat_cat()] = entry;
1199                 }
1200             }
1201         );
1202
1203         if (!Object.keys(to_flesh).length) return;
1204
1205         egCore.pcrud.search('actsc', {id : Object.keys(to_flesh)})
1206         .then(null, null, function(cat) { // stream
1207             cat.owner(egCore.org.get(cat.owner())); // owner flesh
1208             to_flesh[cat.id()].stat_cat(cat);
1209         });
1210     });
1211 }])
1212
1213 .controller('PatronSurveyCtrl',
1214        ['$scope','$routeParams','$location','egCore','patronSvc',
1215 function($scope,  $routeParams , $location , egCore , patronSvc) {
1216     $scope.initTab('other', $routeParams.id);
1217     var usr_id = $routeParams.id;
1218     var org_ids = egCore.org.fullPath(egCore.auth.user().ws_ou(), true);
1219
1220     $scope.surveys = [];
1221     var svr_responses = {};
1222
1223     // fetch all survey responses for this user.
1224     egCore.pcrud.search('asvr',
1225         {usr : usr_id},
1226         {flesh : 2, flesh_fields : {asvr : ['survey','question','answer']}}
1227     ).then(
1228         function() {
1229             // All responses collected and deduplicated.
1230             // Create one collection of responses per survey.
1231
1232             angular.forEach(svr_responses, function(questions, survey_id) {
1233                 var collection = {responses : []};
1234                 angular.forEach(questions, function(response) {
1235                     collection.survey = response.survey(); // same for one.
1236                     collection.responses.push(response);
1237                 });
1238                 $scope.surveys.push(collection);
1239             });
1240         },
1241         null, 
1242         function(response) {
1243
1244             // Discard responses for out-of-scope surveys.
1245             if (org_ids.indexOf(response.survey().owner()) < 0) 
1246                 return;
1247
1248             // survey_id => question_id => response
1249             var svr_id = response.survey().id();
1250             var qst_id = response.question().id();
1251
1252             if (!svr_responses[svr_id]) 
1253                 svr_responses[svr_id] = [];
1254
1255             if (!svr_responses[svr_id][qst_id]) {
1256                 svr_responses[svr_id][qst_id] = response;
1257
1258             } else {
1259                 // We have multiple responses for the same question.
1260                 // For this UI we only care about the most recent response.
1261                 if (response.effective_date() > 
1262                     svr_responses[svr_id][qst_id].effective_date())
1263                     svr_responses[svr_id][qst_id] = response;
1264             }
1265         }
1266     );
1267 }])
1268
1269 .controller('PatronFetchLastCtrl',
1270        ['$scope','$location','egCore',
1271 function($scope , $location , egCore) {
1272
1273     var ids = egCore.hatch.getLoginSessionItem('eg.circ.recent_patrons') || [];
1274     if (ids.length) 
1275         return $location.path('/circ/patron/' + ids[0] + '/checkout');
1276
1277     $scope.no_last = true;
1278 }])
1279
1280 .controller('PatronTriggeredEventsCtrl',
1281        ['$scope','$routeParams','$location','egCore','patronSvc',
1282 function($scope,  $routeParams,  $location , egCore , patronSvc) {
1283     $scope.initTab('other', $routeParams.id);
1284
1285     var url = $location.absUrl().replace(/\/staff.*/, '/actor/user/event_log');
1286     url += '?patron_id=' + encodeURIComponent($routeParams.id);
1287
1288     $scope.triggered_events_url = url;
1289     $scope.funcs = {};
1290 }])
1291
1292 .controller('PatronMessageCenterCtrl',
1293        ['$scope','$routeParams','$location','egCore','patronSvc',
1294 function($scope,  $routeParams,  $location , egCore , patronSvc) {
1295     $scope.initTab('other', $routeParams.id);
1296
1297     var url = $location.protocol() + '://' + $location.host()
1298         + egCore.env.basePath.replace(/\/staff.*/,  '/actor/user/message');
1299     url += '/' + encodeURIComponent($routeParams.id);
1300
1301     $scope.message_center_url = url;
1302     $scope.funcs = {};
1303 }])
1304
1305 .controller('PatronPermsCtrl',
1306        ['$scope','$routeParams','$window','$location','egCore',
1307 function($scope , $routeParams , $window , $location , egCore) {
1308     $scope.initTab('other', $routeParams.id);
1309
1310     var url = $location.absUrl().replace(
1311         /\/eg\/staff.*/, '/xul/server/patron/user_edit.xhtml');
1312
1313     url += '?usr=' + encodeURIComponent($routeParams.id);
1314
1315     // user_edit does not load the session via cookie.  It uses URL 
1316     // params or xulG instead.  Pass via xulG.
1317     $scope.funcs = {
1318         ses : egCore.auth.token(),
1319         on_patron_save : function() {
1320             $scope.funcs.reload();
1321         }
1322     }
1323
1324     $scope.user_perms_url = url;
1325 }])
1326