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