]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/circ/patron/app.js
LP#1402797 Pre-force tab change. There have been reports of the tab not changing...
[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'])
9
10 .config(function($routeProvider, $locationProvider, $compileProvider) {
11     $locationProvider.html5Mode(true);
12     $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|blob):/); // grid export
13
14     // data loaded at startup which only requires an authtoken goes
15     // here. this allows the requests to be run in parallel instead of
16     // waiting until startup has completed.
17     var resolver = {delay : ['egCore','egUser', function(egCore , egUser) {
18
19         // fetch the org settings we care about during egStartup
20         // and toss them into egCore.env as egCore.env.aous[name] = value.
21         // note: only load settings here needed by all tabs; load tab-
22         // specific settings from within their respective controllers
23         egCore.env.classLoaders.aous = function() {
24             return egCore.org.settings([
25                 'circ.obscure_dob',
26                 'ui.circ.show_billing_tab_on_bills',
27                 'circ.patron_expires_soon_warning',
28                 'ui.circ.items_out.lost',
29                 'ui.circ.items_out.longoverdue',
30                 'ui.circ.items_out.claimsreturned'
31             ]).then(function(settings) { 
32                 // local settings are cached within egOrg.  Caching them
33                 // again in egEnv just simplifies the syntax for access.
34                 egCore.env.aous = settings;
35             });
36         }
37
38         egCore.env.loadClasses.push('aous');
39
40         // app-globally modify the default flesh fields for 
41         // fleshed user retrieval.
42         if (egUser.defaultFleshFields.indexOf('profile') == -1) {
43             egUser.defaultFleshFields = egUser.defaultFleshFields.concat([
44                 'profile',
45                 'net_access_level',
46                 'ident_type',
47                 'ident_type2',
48                 'cards'
49             ]);
50         }
51
52         return egCore.startup.go().then(function() {
53
54             // This call requires orgs to be loaded, because it
55             // calls egCore.org.ancestors(), so call it after startup
56             return egCore.pcrud.search('actsc', 
57                 {owner : egCore.org.ancestors(
58                     egCore.auth.user().ws_ou(), true)},
59                 {}, {atomic : true}
60             ).then(function(cats) {
61                 egCore.env.absorbList(cats, 'actsc');
62             });
63         });
64     }]};
65
66     $routeProvider.when('/circ/patron/search', {
67         templateUrl: './circ/patron/t_search',
68         controller: 'PatronSearchCtrl',
69         resolve : resolver
70     });
71
72     $routeProvider.when('/circ/patron/bcsearch', {
73         templateUrl: './circ/patron/t_bcsearch',
74         controller: 'PatronBarcodeSearchCtrl',
75         resolve : resolver
76     });
77
78     $routeProvider.when('/circ/patron/credentials', {
79         templateUrl: './circ/patron/t_credentials',
80         controller: 'PatronVerifyCredentialsCtrl',
81         resolve : resolver
82     });
83
84     $routeProvider.when('/circ/patron/last', {
85         templateUrl: './circ/patron/t_last_patron',
86         controller: 'PatronFetchLastCtrl',
87         resolve : resolver
88     });
89
90     // the following require a patron ID
91
92     $routeProvider.when('/circ/patron/:id/alerts', {
93         templateUrl: './circ/patron/t_alerts',
94         controller: 'PatronAlertsCtrl',
95         resolve : resolver
96     });
97
98     $routeProvider.when('/circ/patron/:id/checkout', {
99         templateUrl: './circ/patron/t_checkout',
100         controller: 'PatronCheckoutCtrl',
101         resolve : resolver
102     });
103
104     $routeProvider.when('/circ/patron/:id/items_out', {
105         templateUrl: './circ/patron/t_items_out',
106         controller: 'PatronItemsOutCtrl',
107         resolve : resolver
108     });
109
110     $routeProvider.when('/circ/patron/:id/holds', {
111         templateUrl: './circ/patron/t_holds',
112         controller: 'PatronHoldsCtrl',
113         resolve : resolver
114     });
115
116     $routeProvider.when('/circ/patron/:id/holds/create', {
117         templateUrl: './circ/patron/t_holds_create',
118         controller: 'PatronHoldsCreateCtrl',
119         resolve : resolver
120     });
121
122     $routeProvider.when('/circ/patron/:id/holds/:hold_id', {
123         templateUrl: './circ/patron/t_holds',
124         controller: 'PatronHoldsCtrl',
125         resolve : resolver
126     });
127
128     $routeProvider.when('/circ/patron/:id/hold/:hold_id', {
129         templateUrl: './circ/patron/t_hold_details',
130         controller: 'PatronHoldDetailsCtrl',
131         resolve : resolver
132     });
133
134     $routeProvider.when('/circ/patron/:id/bills', {
135         templateUrl: './circ/patron/t_bills',
136         controller: 'PatronBillsCtrl',
137         resolve : resolver
138     });
139
140     $routeProvider.when('/circ/patron/:id/bill/:xact_id', {
141         templateUrl: './circ/patron/t_xact_details',
142         controller: 'XactDetailsCtrl',
143         resolve : resolver
144     });
145
146     $routeProvider.when('/circ/patron/:id/bill_history/:history_tab', {
147         templateUrl: './circ/patron/t_bill_history',
148         controller: 'BillHistoryCtrl',
149         resolve : resolver
150     });
151
152     $routeProvider.when('/circ/patron/:id/messages', {
153         templateUrl: './circ/patron/t_messages',
154         controller: 'PatronMessagesCtrl',
155         resolve : resolver
156     });
157
158     $routeProvider.when('/circ/patron/:id/edit', {
159         templateUrl: './circ/patron/t_edit',
160         controller: 'PatronEditCtrl',
161         resolve : resolver
162     });
163
164     $routeProvider.when('/circ/patron/:id/credentials', {
165         templateUrl: './circ/patron/t_credentials',
166         controller: 'PatronVerifyCredentialsCtrl',
167         resolve : resolver
168     });
169
170     $routeProvider.when('/circ/patron/:id/notes', {
171         templateUrl: './circ/patron/t_notes',
172         controller: 'PatronNotesCtrl',
173         resolve : resolver
174     });
175
176     $routeProvider.when('/circ/patron/:id/triggered_events', {
177         templateUrl: './circ/patron/t_triggered_events',
178         controller: 'PatronTriggeredEventsCtrl',
179         resolve : resolver
180     });
181
182     $routeProvider.when('/circ/patron/:id/edit_perms', {
183         templateUrl: './circ/patron/t_edit_perms',
184         controller: 'PatronPermsCtrl',
185         resolve : resolver
186     });
187
188     $routeProvider.when('/circ/patron/:id/group', {
189         templateUrl: './circ/patron/t_group',
190         controller: 'PatronGroupCtrl',
191         resolve : resolver
192     });
193
194     $routeProvider.when('/circ/patron/:id/stat_cats', {
195         templateUrl: './circ/patron/t_stat_cats',
196         controller: 'PatronStatCatsCtrl',
197         resolve : resolver
198     });
199
200     $routeProvider.otherwise({redirectTo : '/circ/patron/search'});
201 })
202
203 /**
204  * Patron service
205  */
206 .factory('patronSvc',
207        ['$q','$timeout','$location','egCore','egUser','$locale',
208 function($q , $timeout , $location , egCore,  egUser , $locale) {
209
210     var service = {
211         // cached patron search results
212         patrons : [],
213
214         // currently selected patron object
215         current : null, 
216
217         // patron circ stats (overdues, fines, holds)
218         patron_stats : null,
219
220         // event types manually overridden, which should always be
221         // overridden for checkouts to this patron for this instance of
222         // the interface.
223         checkout_overrides : {},
224     };
225
226     // when we change the default patron, we need to clear out any
227     // data collected on that patron
228     service.resetPatronLists = function() {
229         service.checkouts = [];
230         service.items_out = []
231         service.items_out_ids = [];
232         service.holds = [];
233         service.hold_ids = [];
234         service.checkout_overrides = {};
235         service.patron_stats = null;
236         service.noncat_ids = [];
237         service.hasAlerts = false;
238         service.alertsShown = false;
239         service.patronExpired = false;
240         service.patronExpiresSoon = false;
241         service.retrievedWithInactive = false;
242         service.invalidAddresses = false;
243     }
244     service.resetPatronLists();  // initialize
245
246     // shortcut to force-reload the current primary
247     service.refreshPrimary = function() {
248         if (!service.current) return $q.when();
249         return service.setPrimary(service.current.id(), null, true);
250     }
251
252     // clear the currently focused user
253     service.clearPrimary = function() {
254         // reset with no patron
255         service.resetPatronLists();
256         service.current = null;
257         service.patron_stats = null;
258         return $q.when();
259     }
260
261     // sets the primary display user, fetching data as necessary.
262     service.setPrimary = function(id, user, force) {
263         var user_id = id ? id : (user ? user.id() : null);
264
265         console.debug('setting primary user to: ' + user_id);
266
267         if (!user_id) return $q.reject();
268
269         // when loading a new patron, update the last patron setting
270         if (!service.current || service.current.id() != user_id)
271             egCore.hatch.setLocalItem('eg.circ.last_patron', user_id);
272
273         // avoid running multiple retrievals for the same patron, which
274         // can happen during dbl-click by maintaining a single running
275         // data retrieval promise
276         if (service.primaryUserPromise) {
277             if (service.primaryUserId == user_id) {
278                 return service.primaryUserPromise.promise;
279             } else {
280                 service.primaryUserPromise = null;
281             }
282         }
283
284         service.primaryUserPromise = $q.defer();
285         service.primaryUserId = user_id;
286
287         service.getPrimary(id, user, force)
288         .then(function() {
289             var p = service.primaryUserPromise;
290             service.primaryUserId = null;
291             // clear before resolution just to be safe.
292             service.primaryUserPromise = null;
293             p.resolve();
294         });
295
296         return service.primaryUserPromise.promise;
297     }
298
299     service.getPrimary = function(id, user, force) {
300
301         if (user) {
302             if (!force && service.current && 
303                 service.current.id() == user.id()) {
304                 if (service.patron_stats) {
305                     return $q.when();
306                 } else {
307                     return service.fetchUserStats();
308                 }
309             }
310
311             service.resetPatronLists();
312             service.current = user;
313             service.localFlesh(user);
314             return service.fetchUserStats();
315
316         } else if (id) {
317             if (!force && service.current && service.current.id() == id) {
318                 if (service.patron_stats) {
319                     return $q.when();
320                 } else {
321                     return service.fetchUserStats();
322                 }
323             }
324
325             service.resetPatronLists();
326
327             return egUser.get(id).then(
328                 function(user) {
329                     service.current = user;
330                     service.localFlesh(user);
331                     return service.fetchUserStats();
332                 },
333                 function(err) {
334                     console.error(
335                         "unable to fetch user "+id+': '+js2JSON(err))
336                 }
337             );
338         } else {
339
340             // fetching a null user clears the primary user.
341             // NOTE: this should probably reject() and log an error, 
342             // but calling clear for backwards compat for now.
343             return service.clearPrimary();
344         }
345     }
346
347     // flesh some additional user fields locally
348     service.localFlesh = function(user) {
349         if (!angular.isObject(typeof user.home_ou()))
350             user.home_ou(egCore.org.get(user.home_ou()));
351
352         angular.forEach(
353             user.standing_penalties(),
354             function(penalty) {
355                 if (!angular.isObject(penalty.org_unit()))
356                     penalty.org_unit(egCore.org.get(penalty.org_unit()));
357             }
358         );
359
360         // stat_cat_entries == stat_cat_entry_user_map
361         angular.forEach(user.stat_cat_entries(), function(map) {
362             if (angular.isObject(map.stat_cat())) return;
363             // At page load, we only retrieve org-visible stat cats.
364             // For the common case, ignore entries for remote stat cats.
365             var cat = egCore.env.actsc.map[map.stat_cat()];
366             if (cat) {
367                 map.stat_cat(cat);
368                 cat.owner(egCore.org.get(cat.owner()));
369             }
370         });
371     }
372
373     // resolves to true if the patron account has expired or will
374     // expire soon, based on YAOUS circ.patron_expires_soon_warning
375     // note: returning a promise is no longer strictly necessary
376     // (no more async activity) if the calling function is changed too.
377     service.testExpire = function() {
378
379         var expire = Date.parse(service.current.expire_date());
380         if (expire < new Date()) {
381             return $q.when(service.patronExpired = true);
382         }
383
384         var soon = egCore.env.aous['circ.patron_expires_soon_warning'];
385         if (Number(soon)) {
386             var preExpire = new Date();
387             preExpire.setDate(preExpire.getDate() + Number(soon));
388             if (expire < preExpire) 
389                 return $q.when(service.patronExpiresSoon = true);
390         }
391
392         return $q.when(false);
393     }
394
395     // resolves to true if the patron account has any invalid addresses.
396     service.testInvalidAddrs = function() {
397
398         if (service.invalidAddresses)
399             return $q.when(true);
400
401         var fail = false;
402
403         angular.forEach(
404             service.current.addresses(), 
405             function(addr) { if (addr.valid() == 'f') fail = true }
406         );
407
408         return $q.when(fail);
409     }
410
411     // resolves to true if there is any aspect of the patron account
412     // which should produce a message in the alerts panel
413     service.checkAlerts = function() {
414
415         if (service.hasAlerts) // already checked
416             return $q.when(true); 
417
418         var deferred = $q.defer();
419         var p = service.current;
420
421         if (service.alert_penalties.length ||
422             p.alert_message() ||
423             p.active() == 'f' ||
424             p.barred() == 't' ||
425             service.patron_stats.holds.ready) {
426
427             service.hasAlerts = true;
428         }
429
430         // see if the user was retrieved with an inactive card
431         if (bc = $location.search().card) {
432             var card = p.cards().filter(
433                 function(c) { return c.barcode() == bc })[0];
434
435             if (card && card.active() == 'f') {
436                 service.hasAlerts = true;
437                 service.retrievedWithInactive = true;
438             }
439         }
440
441         // regardless of whether we know of alerts, we still need 
442         // to test/fetch the expire data for display
443         service.testExpire().then(function(bool) {
444             if (bool) service.hasAlerts = true;
445             deferred.resolve(service.hasAlerts);
446         });
447
448         service.testInvalidAddrs().then(function(bool) {
449             if (bool) service.invalidAddresses = true;
450             deferred.resolve(service.invalidAddresses);
451         });
452
453         return deferred.promise;
454     }
455
456     service.fetchGroupFines = function() {
457         return egCore.net.request(
458             'open-ils.actor',
459             'open-ils.actor.usergroup.members.balance_owed',
460             egCore.auth.token(), service.current.usrgroup()
461         ).then(function(list) {
462             var total = 0;
463             angular.forEach(list, function(u) { 
464                 total += 100 * Number(u.balance_owed)
465             });
466             service.patron_stats.fines.group_balance_owed = total / 100;
467         });
468     }
469
470     service.getUserStats = function(id) {
471         return egCore.net.request(
472             'open-ils.actor',
473             'open-ils.actor.user.opac.vital_stats.authoritative', 
474             egCore.auth.token(), id
475         ).then(
476             function(stats) {
477                 // force numeric to ensure correct boolean handling in templates
478                 stats.fines.balance_owed = Number(stats.fines.balance_owed);
479                 stats.checkouts.overdue = Number(stats.checkouts.overdue);
480                 stats.checkouts.claims_returned = 
481                     Number(stats.checkouts.claims_returned);
482                 stats.checkouts.lost = Number(stats.checkouts.lost);
483                 stats.checkouts.out = Number(stats.checkouts.out);
484                 stats.checkouts.total_out = 
485                     stats.checkouts.out + stats.checkouts.overdue;
486                 return stats;
487             }
488         );
489     }
490
491     // Fetches the IDs of any active non-cat checkouts for the current
492     // user.  Also sets the patron_stats non_cat count value to match.
493     service.getUserNonCats = function(id) {
494         return egCore.net.request(
495             'open-ils.circ',
496             'open-ils.circ.open_non_cataloged_circulation.user.authoritative',
497             egCore.auth.token(), id
498         ).then(function(noncat_ids) {
499             service.noncat_ids = noncat_ids;
500             service.patron_stats.checkouts.noncat = noncat_ids.length;
501         });
502     }
503
504     // grab additional circ info
505     service.fetchUserStats = function() {
506         return service.getUserStats(service.current.id())
507         .then(function(stats) {
508             service.patron_stats = stats
509             service.alert_penalties = service.current.standing_penalties()
510                 .filter(function(pen) { 
511                 return pen.standing_penalty().staff_alert() == 't' 
512             });
513
514             service.summary_stat_cats = [];
515             angular.forEach(service.current.stat_cat_entries(), 
516                 function(map) {
517                     if (angular.isObject(map.stat_cat()) &&
518                         map.stat_cat().usr_summary() == 't') {
519                         service.summary_stat_cats.push(map);
520                     }
521                 }
522             );
523
524             // run these two in parallel
525             var p1 = service.getUserNonCats(service.current.id());
526             var p2 = service.fetchGroupFines();
527             return $q.all([p1, p2]);
528         });
529     }
530
531     // Avoid using parens [e.g. (1.23)] to indicate negative numbers, 
532     // which is the Angular default.
533     // http://stackoverflow.com/questions/17441254/why-angularjs-currency-filter-formats-negative-numbers-with-parenthesis
534     // FIXME: This change needs to be moved into a project-wide collection
535     // of locale overrides.
536     $locale.NUMBER_FORMATS.PATTERNS[1].negPre = '-';
537     $locale.NUMBER_FORMATS.PATTERNS[1].negSuf = '';
538
539     return service;
540 }])
541
542 /**
543  * Manages tabbed patron view.
544  * This is the parent scope of all patron tab scopes.
545  *
546  * */
547 .controller('PatronCtrl',
548        ['$scope','$q','$location','$filter','egCore','egUser','patronSvc',
549 function($scope,  $q,  $location , $filter,  egCore,  egUser,  patronSvc) {
550
551     // returns true if a redirect occurs
552     function redirectToAlertPanel() {
553
554         $scope.alert_penalties = 
555             function() {return patronSvc.alert_penalties}
556
557         if (patronSvc.alertsShown) return false;
558         patronSvc.alertsShown = true;
559
560         // if the patron has any unshown alerts, show them now
561         if (patronSvc.hasAlerts && 
562             !$location.path().match(/alerts$/)) {
563
564             $location
565                 .path('/circ/patron/' + patronSvc.current.id() + '/alerts')
566                 .search('card', null);
567             return true;
568         }
569
570         // no alert required.  If the patron has fines and the show-bills
571         // OUS is applied, direct to the bills page.
572         if ($scope.patron_stats().fines.balance_owed > 0 // TODO: != 0 ?
573             && egCore.env.aous['ui.circ.show_billing_tab_on_bills']
574             && !$location.path().match(/bills$/)) {
575
576             $scope.tab = 'bills';
577             $location
578                 .path('/circ/patron/' + patronSvc.current.id() + '/bills')
579                 .search('card', null);
580
581             return true;
582         }
583
584         return false;
585     }
586
587     // called after each route-specified controller is instantiated.
588     // this doubles as a way to inform the top-level controller that
589     // egStartup.go() has completed, which means we are clear to 
590     // fetch the patron, etc.
591     $scope.initTab = function(tab, patron_id) {
592         console.log('init tab ' + tab);
593         $scope.tab = tab;
594         $scope.aous = egCore.env.aous;
595
596         if (patron_id) {
597             $scope.patron_id = patron_id;
598             return patronSvc.setPrimary($scope.patron_id)
599             .then(function() {return patronSvc.checkAlerts()})
600             .then(redirectToAlertPanel);
601         }
602         return $q.when();
603     }
604
605     $scope.patron = function() { return patronSvc.current }
606     $scope.patron_stats = function() { return patronSvc.patron_stats }
607     $scope.summary_stat_cats = function() { return patronSvc.summary_stat_cats }
608
609     $scope.print_address = function(addr) {
610         egCore.print.print({
611             context : 'default', 
612             template : 'patron_address', 
613             scope : {
614                 patron : egCore.idl.toHash(patronSvc.current),
615                 address : egCore.idl.toHash(addr)
616             }
617         });
618     }
619
620     $scope.toggle_expand_summary = function() {
621         if ($scope.collapsePatronSummary) {
622             $scope.collapsePatronSummary = false;
623             egCore.hatch.removeItem('eg.circ.patron.summary.collapse');
624         } else {
625             $scope.collapsePatronSummary = true;
626             egCore.hatch.setItem('eg.circ.patron.summary.collapse', true);
627         }
628     }
629     
630     // always expand the patron summary in the search UI, regardless
631     // of stored preference.
632     $scope.collapse_summary = function() {
633         return $scope.tab != 'search' && $scope.collapsePatronSummary;
634     }
635
636     egCore.hatch.getItem('eg.circ.patron.summary.collapse')
637     .then(function(val) {$scope.collapsePatronSummary = Boolean(val)});
638 }])
639
640 .controller('PatronBarcodeSearchCtrl',
641        ['$scope','$location','egCore','egConfirmDialog','egUser','patronSvc',
642 function($scope , $location , egCore , egConfirmDialog , egUser , patronSvc) {
643     $scope.selectMe = true; // focus text input
644     patronSvc.clearPrimary(); // clear the default user
645
646     // jump to the patron checkout UI
647     function loadPatron(user_id) {
648         $location
649         .path('/circ/patron/' + user_id + '/checkout')
650         .search('card', $scope.args.barcode);
651     }
652
653     // create an opt-in=yes response for the loaded user
654     function createOptIn(user_id) {
655         egCore.net.request(
656             'open-ils.actor',
657             'open-ils.actor.user.org_unit_opt_in.create',
658             egCore.auth.token(), user_id).then(function(resp) {
659                 if (evt = egCore.evt.parse(resp)) return alert(evt);
660                 loadPatron(user_id);
661             }
662         );
663     }
664
665     $scope.submitBarcode = function(args) {
666         $scope.bcNotFound = null;
667         if (!args.barcode) return;
668
669         // blur so next time it's set to true it will re-apply select()
670         $scope.selectMe = false;
671
672         var user_id;
673
674         // lookup barcode
675         egCore.net.request(
676             'open-ils.actor',
677             'open-ils.actor.get_barcodes',
678             egCore.auth.token(), egCore.auth.user().ws_ou(), 
679             'actor', args.barcode)
680
681         .then(function(resp) { // get_barcodes
682
683             if (evt = egCore.evt.parse(resp)) {
684                 alert(evt); // FIXME
685                 return;
686             }
687
688             if (!resp || !resp[0]) {
689                 $scope.bcNotFound = args.barcode;
690                 $scope.selectMe = true;
691                 return;
692             }
693
694             // see if an opt-in request is needed
695             user_id = resp[0].id;
696             return egCore.net.request(
697                 'open-ils.actor',
698                 'open-ils.actor.user.org_unit_opt_in.check',
699                 egCore.auth.token(), user_id);
700
701         }).then(function(optInResp) { // opt_in_check
702
703             if (evt = egCore.evt.parse(optInResp)) {
704                 alert(evt); // FIXME
705                 return;
706             }
707            
708             if (optInResp == 1) {
709                 // opt-in handled or not needed
710                 return loadPatron(user_id);
711             }
712
713             // opt-in needed, show the opt-in dialog
714             egUser.get(user_id, {useFields : []})
715
716             .then(function(user) { // retrieve user
717                 egConfirmDialog.open(
718                     egCore.strings.OPT_IN_DIALOG, '',
719                     {   org : egCore.org.get(user.home_ou()),
720                         user : user,
721                         ok : function() { createOptIn(user.id()) },
722                         cancel : function() {}
723                     }
724                 );
725             })
726         });
727     }
728 }])
729
730
731 /**
732  * Manages patron search
733  */
734 .controller('PatronSearchCtrl',
735        ['$scope','$q','$routeParams','$timeout','$window','$location','egCore',
736        '$filter','egUser', 'patronSvc','egGridDataProvider','$document',
737 function($scope,  $q,  $routeParams,  $timeout,  $window,  $location,  egCore,
738         $filter,  egUser,  patronSvc , egGridDataProvider , $document) {
739
740     $scope.initTab('search');
741     $scope.focusMe = true;
742     $scope.searchArgs = {
743         // default to searching globally
744         home_ou : egCore.org.tree()
745     };
746
747     // last used patron search form element
748     var lastFormElement;
749
750     $scope.gridControls = {
751         activateItem : function(item) {
752             $location.path('/circ/patron/' + item.id() + '/checkout');
753         },
754         selectedItems : function() {return []}
755     }
756
757     // Handle URL-encoded searches
758     if ($location.search().search) {
759         patronSvc.urlSearch = {search : JSON2js($location.search().search)};
760
761         // why the double-JSON encoded sort?
762         patronSvc.urlSearch.sort = 
763             JSON2js(patronSvc.urlSearch.search.search_sort);
764         delete patronSvc.urlSearch.search.search_sort;
765     }
766
767     var propagate;
768     if (patronSvc.lastSearch) {
769         propagate = patronSvc.lastSearch.search;
770     } else if (patronSvc.urlSearch) {
771         propagate = patronSvc.urlSearch.search;
772     }
773
774     if (propagate) {
775         // populate the search form with our cached / preexisting search info
776         angular.forEach(propagate, function(val, key) {
777             $scope.searchArgs[key] = val.value;
778         });
779     }
780
781     var provider = egGridDataProvider.instance({});
782
783     $scope.$watch(
784         function() {return $scope.gridControls.selectedItems()},
785         function(list) {
786             if (list[0]) 
787                 patronSvc.setPrimary(null, list[0]);
788         },
789         true
790     );
791         
792     provider.get = function(offset, count) {
793         var deferred = $q.defer();
794
795         var fullSearch;
796         if (patronSvc.urlSearch) {
797             fullSearch = patronSvc.urlSearch;
798             // enusre the urlSearch only runs once.
799             delete patronSvc.urlSearch;
800
801         } else {
802
803             var search = compileSearch($scope.searchArgs);
804             if (Object.keys(search) == 0) return $q.when();
805
806             var home_ou = search.home_ou;
807             delete search.home_ou;
808             var inactive = search.inactive;
809             delete search.inactive;
810
811             fullSearch = {
812                 search : search,
813                 sort : compileSort(),
814                 inactive : inactive,
815                 home_ou : home_ou,
816             };
817         }
818
819         fullSearch.count = count;
820         fullSearch.offset = offset;
821
822         if (patronSvc.lastSearch) {
823             // search repeated, return the cached results
824             if (angular.equals(fullSearch, patronSvc.lastSearch)) {
825                 console.log('patron search returning ' + 
826                     patronSvc.patrons.length + ' cached results');
827                 
828                 // notify has to happen after returning the promise
829                 $timeout(
830                     function() {
831                         angular.forEach(patronSvc.patrons, function(user) {
832                             deferred.notify(user);
833                         });
834                         deferred.resolve();
835                     }
836                 );
837                 return deferred.promise;
838             }
839         }
840
841         patronSvc.lastSearch = fullSearch;
842
843         if (fullSearch.search.id) {
844             // search by user id performs a direct ID lookup
845             var userId = fullSearch.search.id.value;
846             $timeout(
847                 function() {
848                     egUser.get(userId).then(function(user) {
849                         patronSvc.localFlesh(user);
850                         patronSvc.patrons = [user];
851                         deferred.notify(user);
852                         deferred.resolve();
853                     });
854                 }
855             );
856             return deferred.promise;
857         }
858
859         patronSvc.patrons = [];
860         egCore.net.request(
861             'open-ils.actor',
862             'open-ils.actor.patron.search.advanced.fleshed',
863             egCore.auth.token(), 
864             fullSearch.search, 
865             fullSearch.count,
866             fullSearch.sort,
867             fullSearch.inactive,
868             fullSearch.home_ou,
869             egUser.defaultFleshFields,
870             fullSearch.offset
871
872         ).then(
873             function() { deferred.resolve() },
874             null, // onerror
875             function(user) {
876                 patronSvc.localFlesh(user); // inline
877                 patronSvc.patrons.push(user);
878                 deferred.notify(user);
879             }
880         );
881
882         return deferred.promise;
883     };
884
885     $scope.patronSearchGridProvider = provider;
886
887     if (egCore.env.pgt) {
888         $scope.profiles = egCore.env.pgt.list;
889     } else {
890         egCore.pcrud.search('pgt', {parent : null}, 
891             {flesh : -1, flesh_fields : {pgt : ['children']}}
892         ).then(
893             function(tree) {
894                 egCore.env.absorbTree(tree, 'pgt')
895                 $scope.profiles = egCore.env.pgt.list;
896             }
897         );
898     }
899
900     // determine the tree depth of the profile group
901     $scope.pgt_depth = function(grp) {
902         var d = 0;
903         while (grp = egCore.env.pgt.map[grp.parent()]) d++;
904         return d;
905     }
906
907     $scope.clearForm = function () {
908         $scope.searchArgs={};
909         if (lastFormElement) lastFormElement.focus();
910     }
911
912     $scope.applyShowExtras = function($event, bool) {
913         if (bool) {
914             $scope.showExtras = true;
915             egCore.hatch.setItem('eg.circ.patron.search.show_extras', true);
916         } else {
917             $scope.showExtras = false;
918             egCore.hatch.removeItem('eg.circ.patron.search.show_extras');
919         }
920         if (lastFormElement) lastFormElement.focus();
921         $event.preventDefault();
922     }
923
924     egCore.hatch.getItem('eg.circ.patron.search.show_extras')
925     .then(function(val) {$scope.showExtras = val});
926
927     // map form arguments into search params
928     function compileSearch(args) {
929         var search = {};
930         angular.forEach(args, function(val, key) {
931             if (!val) return;
932             if (key == 'profile' && args.profile) {
933                 search.profile = {value : args.profile.id(), group : 0};
934             } else if (key == 'home_ou' && args.home_ou) {
935                 search.home_ou = args.home_ou.id(); // passed separately
936             } else if (key == 'inactive') {
937                 search.inactive = val;
938             } else {
939                 search[key] = {value : val, group : 0};
940             }
941             if (key.match(/phone|ident/)) {
942                 search[key].group = 2;
943             } else {
944                 if (key.match(/street|city|state|post_code/)) {
945                     search[key].group = 1;
946                 } else if (key == 'card') {
947                     search[key].group = 3
948                 }
949             }
950         });
951
952         return search;
953     }
954
955     function compileSort() {
956
957         if (!provider.sort.length) {
958             return [ // default
959                 "family_name ASC",
960                 "first_given_name ASC",
961                 "second_given_name ASC",
962                 "dob DESC"
963             ];
964         }
965
966         var sort = [];
967         angular.forEach(
968             provider.sort,
969             function(sortdef) {
970                 if (angular.isObject(sortdef)) {
971                     var name = Object.keys(sortdef)[0];
972                     var dir = sortdef[name];
973                     sort.push(name + ' ' + dir);
974                 } else {
975                     sort.push(sortdef);
976                 }
977             }
978         );
979
980         return sort;
981     }
982
983     $scope.setLastFormElement = function() {
984         lastFormElement = $document[0].activeElement;
985     }
986
987     // search form submit action; tells the results grid to
988     // refresh itself.
989     $scope.search = function(args) { // args === $scope.searchArgs
990         if (args && Object.keys(args).length) 
991             $scope.gridControls.refresh();
992         if (lastFormElement) lastFormElement.focus();
993     }
994
995     // TODO: move this into the (forthcoming) grid row activate action
996     $scope.onPatronDblClick = function($event, user) {
997         $location.path('/circ/patron/' + user.id() + '/checkout');
998     }
999
1000     if (patronSvc.urlSearch) {
1001         // force the grid to load the url-based search on page load
1002         provider.refresh();
1003     }
1004    
1005 }])
1006
1007 /**
1008  * Manages messages
1009  */
1010 .controller('PatronMessagesCtrl',
1011        ['$scope','$q','$routeParams','egCore','$modal','patronSvc','egCirc',
1012 function($scope , $q , $routeParams,  egCore , $modal , patronSvc , egCirc) {
1013     $scope.initTab('messages', $routeParams.id);
1014     var usr_id = $routeParams.id;
1015
1016     // setup date filters
1017     var start = new Date(); // now - 1 year
1018     start.setFullYear(start.getFullYear() - 1),
1019     $scope.dates = {
1020         start_date : start,
1021         end_date : new Date()
1022     }
1023
1024     function date_range() {
1025         var start = $scope.dates.start_date.toISOString().replace(/T.*/,'');
1026         var end = $scope.dates.end_date.toISOString().replace(/T.*/,'');
1027         var today = new Date().toISOString().replace(/T.*/,'');
1028         if (end == today) end = 'now';
1029         return [start, end];
1030     }
1031
1032     // grid queries
1033    
1034     var activeGrid = $scope.activeGridControls = {
1035         setSort : function() {
1036             return ['set_date'];
1037         },
1038         setQuery : function() {
1039             return {
1040                 usr : usr_id,
1041                 '-or' : [
1042                     {stop_date : null},
1043                     {stop_date : {'>' : 'now'}}
1044                 ]
1045             }
1046         }
1047     }
1048
1049     var archiveGrid = $scope.archiveGridControls = {
1050         setSort : function() {
1051             return ['set_date'];
1052         },
1053         setQuery : function() {
1054             return {
1055                 usr : usr_id, 
1056                 stop_date : {'<=' : 'now'},
1057                 set_date : {between : date_range()}
1058             };
1059         }
1060     };
1061
1062     $scope.removePenalty = function(selected) {
1063         // the grid stores flattened penalties.  Fetch penalty objects first
1064
1065         var ids = selected.map(function(s){ return s.id });
1066         egCore.pcrud.search('ausp', 
1067             {id : ids}, {}, 
1068             {atomic : true, authoritative : true}
1069
1070         // then delete them
1071         ).then(function(penalties) {
1072             return egCore.pcrud.remove(penalties);
1073
1074         // then refresh the grid
1075         }).then(function() {
1076             activeGrid.refresh();
1077         });
1078     }
1079
1080     $scope.archivePenalty = function(selected) {
1081         // the grid stores flattened penalties.  Fetch penalty objects first
1082
1083         var ids = selected.map(function(s){ return s.id });
1084         egCore.pcrud.search('ausp', 
1085             {id : ids}, {}, 
1086             {atomic : true, authoritative : true}
1087
1088         // then delete them
1089         ).then(function(penalties) {
1090             angular.forEach(penalties, function(p){ p.stop_date('now') });
1091             return egCore.pcrud.update(penalties);
1092
1093         // then refresh the grid
1094         }).then(function() {
1095             activeGrid.refresh();
1096             archiveGrid.refresh();
1097         });
1098     }
1099
1100     // leverage egEnv for caching
1101     function fetchPenaltyTypes() {
1102         if (egCore.env.csp) 
1103             return $q.when(egCore.env.csp.list);
1104         return egCore.pcrud.search(
1105             // id <= 100 are reserved for system use
1106             'csp', {id : {'>': 100}}, {}, {atomic : true})
1107         .then(function(penalties) {
1108             egCore.env.absorbList(penalties, 'csp');
1109             return penalties;
1110         });
1111     }
1112
1113     $scope.createPenalty = function() {
1114         egCirc.create_penalty(usr_id).then(function() {
1115             activeGrid.refresh();
1116             // force a refresh of the user, since they may now
1117             // have blocking penalties, etc.
1118             patronSvc.setPrimary(patronSvc.current.id(), null, true);
1119         });
1120     }
1121
1122     $scope.editPenalty = function(selected) {
1123         if (selected.length == 0) return;
1124
1125         // grab the penalty from the user object
1126         var penalty = patronSvc.current.standing_penalties().filter(
1127             function(p) {return p.id() == selected[0].id})[0];
1128
1129         egCirc.edit_penalty(penalty).then(function() {
1130             activeGrid.refresh();
1131             // force a refresh of the user, since they may now
1132             // have blocking penalties, etc.
1133             patronSvc.setPrimary(patronSvc.current.id(), null, true);
1134         });
1135     }
1136 }])
1137
1138
1139 /**
1140  * Link to patron edit UI
1141  */
1142 .controller('PatronEditCtrl',
1143        ['$scope','$routeParams','$location','egCore','patronSvc',
1144 function($scope,  $routeParams,  $location , egCore , patronSvc) {
1145     $scope.initTab('edit', $routeParams.id);
1146
1147     var url = $location.absUrl().replace(/\/staff.*/, '/actor/user/register');
1148     url += '?usr=' + encodeURIComponent($routeParams.id);
1149
1150     $scope.funcs = {
1151         on_save : function() {
1152             patronSvc.refreshPrimary();
1153         }
1154     }
1155
1156     $scope.patron_edit_url = url;
1157 }])
1158
1159 /**
1160  * Credentials tester
1161  */
1162 .controller('PatronVerifyCredentialsCtrl',
1163        ['$scope','$routeParams','$location','egCore',
1164 function($scope,  $routeParams , $location , egCore) {
1165     $scope.verified = null;
1166     $scope.focusMe = true;
1167
1168     // called with a patron, pre-populate the form args
1169     $scope.initTab('other', $routeParams.id).then(
1170         function() {
1171             if ($routeParams.id && $scope.patron()) {
1172                 $scope.prepop = true;
1173                 $scope.username = $scope.patron().usrname();
1174                 $scope.barcode = $scope.patron().card().barcode();
1175             } else {
1176                 $scope.username = '';
1177                 $scope.barcode = '';
1178                 $scope.password = '';
1179             }
1180         }
1181     );
1182
1183     // verify login credentials
1184     $scope.verify = function() {
1185         $scope.verified = null;
1186         $scope.notFound = false;
1187
1188         egCore.net.request(
1189             'open-ils.actor',
1190             'open-ils.actor.verify_user_password',
1191             egCore.auth.token(), $scope.barcode,
1192             $scope.username, hex_md5($scope.password || '')
1193
1194         ).then(function(resp) {
1195             $scope.focusMe = true;
1196             if (evt = egCore.evt.parse(resp)) {
1197                 alert(evt);
1198             } else if (resp == 1) {
1199                 $scope.verified = true;
1200             } else {
1201                 $scope.verified = false;
1202             }
1203         });
1204     }
1205
1206     // load the main patron UI for the provided username or barcode
1207     $scope.load = function($event) {
1208         $scope.notFound = false;
1209         $scope.verified = null;
1210
1211         egCore.net.request(
1212             'open-ils.actor',
1213             'open-ils.actor.user.retrieve_id_by_barcode_or_username',
1214             egCore.auth.token(), $scope.barcode, $scope.username
1215
1216         ).then(function(resp) {
1217
1218             if (Number(resp)) {
1219                 $location.path('/circ/patron/' + resp + '/checkout');
1220                 return;
1221             }
1222
1223             // something went wrong...
1224             $scope.focusMe = true;
1225             if (evt = egCore.evt.parse(resp)) {
1226                 if (evt.textcode == 'ACTOR_USR_NOT_FOUND') {
1227                     $scope.notFound = true;
1228                     return;
1229                 }
1230                 return alert(evt);
1231             } else {
1232                 alert(resp);
1233             }
1234         });
1235
1236         // load() button sits within the verify form.  
1237         // avoid submitting the verify() form action on load()
1238         $event.preventDefault();
1239     }
1240 }])
1241
1242 .controller('PatronAlertsCtrl',
1243        ['$scope','$routeParams','$location','egCore','patronSvc',
1244 function($scope,  $routeParams , $location , egCore , patronSvc) {
1245
1246     $scope.initTab('other', $routeParams.id)
1247     .then(function() {
1248         $scope.patronExpired = patronSvc.patronExpired;
1249         $scope.patronExpiresSoon = patronSvc.patronExpiresSoon;
1250         $scope.retrievedWithInactive = patronSvc.retrievedWithInactive;
1251         $scope.invalidAddresses = patronSvc.invalidAddresses;
1252     });
1253
1254 }])
1255
1256 .controller('PatronNotesCtrl',
1257        ['$scope','$routeParams','$location','egCore','patronSvc','$modal',
1258 function($scope,  $routeParams , $location , egCore , patronSvc , $modal) {
1259     $scope.initTab('other', $routeParams.id);
1260     var usr_id = $routeParams.id;
1261
1262     // fetch the notes
1263     function refreshPage() {
1264         $scope.notes = [];
1265         egCore.pcrud.search('aun', 
1266             {usr : usr_id}, 
1267             {flesh : 1, flesh_fields : {aun : ['creator']}}, 
1268             {authoritative : true})
1269         .then(null, null, function(note) {
1270             $scope.notes.push(note);
1271         });
1272     }
1273
1274     // open the new-note dialog and create the note
1275     $scope.newNote = function() {
1276         $modal.open({
1277             templateUrl: './circ/patron/t_new_note_dialog',
1278             controller: 
1279                 ['$scope', '$modalInstance',
1280             function($scope, $modalInstance) {
1281                 $scope.focusNote = true;
1282                 $scope.args = {};
1283                 $scope.ok = function(count) { $modalInstance.close($scope.args) }
1284                 $scope.cancel = function () { $modalInstance.dismiss() }
1285             }],
1286         }).result.then(
1287             function(args) {
1288                 if (!args.value) return;
1289                 var note = new egCore.idl.aun();
1290                 note.usr(usr_id);
1291                 note.title(args.title);
1292                 note.value(args.value);
1293                 note.pub(args.pub ? 't' : 'f');
1294                 note.creator(egCore.auth.user().id());
1295                 egCore.pcrud.create(note).then(function() {refreshPage()});
1296             }
1297         );
1298     }
1299
1300     // delete the selected note
1301     $scope.deleteNote = function(note) {
1302         egCore.pcrud.remove(note).then(function() {refreshPage()});
1303     }
1304
1305     // print the selected note
1306     $scope.printNote = function(note) {
1307         var hash = egCore.idl.toHash(note);
1308         hash.usr = egCore.idl.toHash($scope.patron());
1309         egCore.print.print({
1310             context : 'default', 
1311             template : 'patron_note', 
1312             scope : {note : hash}
1313         });
1314     }
1315
1316     // perform the initial note fetch
1317     refreshPage();
1318 }])
1319
1320 .controller('PatronGroupCtrl',
1321        ['$scope','$routeParams','$q','$window','$location','egCore',
1322         'patronSvc','$modal','egPromptDialog','egConfirmDialog',
1323 function($scope,  $routeParams , $q , $window , $location , egCore ,
1324          patronSvc , $modal , egPromptDialog , egConfirmDialog) {
1325
1326     var usr_id = $routeParams.id;
1327
1328     $scope.totals = {owed : 0, total_out : 0, overdue : 0}
1329
1330     var grid = $scope.gridControls = {
1331         activateItem : function(item) {
1332             $location.path('/circ/patron/' + item.id + '/checkout');
1333         },
1334         itemRetrieved : function(item) {
1335
1336             if (item.id == patronSvc.current.id()) {
1337                 item.stats = patronSvc.patron_stats;
1338
1339             } else {
1340                 // flesh stats for other group members
1341                 patronSvc.getUserStats(item.id).then(function(stats) {
1342                     item.stats = stats;
1343                     $scope.totals.total_out += stats.checkouts.total_out; 
1344                     $scope.totals.overdue += stats.checkouts.overdue; 
1345                 });
1346             }
1347         },
1348         setSort : function() {
1349             return ['create_date'];
1350         }
1351     }
1352
1353     $scope.initTab('other', $routeParams.id)
1354     .then(function(redirect) {
1355         // if we are redirecting to the alerts page, avoid updating the
1356         // grid query.
1357         if (redirect) return;
1358         // let initTab() fetch the user first so we can know the usrgroup
1359
1360         grid.setQuery({
1361             usrgroup : patronSvc.current.usrgroup(),
1362             deleted : 'f'
1363         });
1364         $scope.totals.owed = patronSvc.patron_stats.fines.group_balance_owed;
1365     });
1366
1367     $scope.removeFromGroup = function(selected) {
1368         var promises = [];
1369         angular.forEach(selected, function(user) {
1370             console.debug('removing user ' + user.id + ' from group');
1371
1372             promises.push(
1373                 egCore.net.request(
1374                     'open-ils.actor',
1375                     'open-ils.actor.usergroup.new',
1376                     egCore.auth.token(), user.id, true
1377                 )
1378             );
1379         });
1380
1381         $q.all(promises).then(function() {grid.refresh()});
1382     }
1383
1384     function addUserToGroup(user) {
1385         user.usrgroup(patronSvc.current.usrgroup());
1386         user.ischanged(true);
1387         egCore.net.request(
1388             'open-ils.actor',
1389             'open-ils.actor.patron.update',
1390             egCore.auth.token(), user
1391
1392         ).then(function() {grid.refresh()});
1393     }
1394
1395     // fetch each user ("selected" has flattened users)
1396     // update the usrgroup, then update the user object
1397     // After all updates are complete, refresh the grid.
1398     function moveUsersToGroup(target_user, selected) {
1399         var promises = [];
1400
1401         angular.forEach(selected, function(user) {
1402             promises.push(
1403                 egCore.pcrud.retrieve('au', user.id)
1404                 .then(function(u) {
1405                     u.usrgroup(target_user.usrgroup());
1406                     u.ischanged(true);
1407                     return egCore.net.request(
1408                         'open-ils.actor',
1409                         'open-ils.actor.patron.update',
1410                         egCore.auth.token(), u
1411                     );
1412                 })
1413             );
1414         });
1415
1416         $q.all(promises).then(function() {grid.refresh()});
1417     }
1418
1419     function showMoveToGroupConfirm(barcode, selected, outbound) {
1420
1421         // find the user
1422         egCore.pcrud.search('ac', {barcode : barcode})
1423
1424         // fetch the fleshed user
1425         .then(function(card) {
1426
1427             if (!card) return; // TODO: warn user
1428
1429             egCore.pcrud.retrieve('au', card.usr())
1430             .then(function(user) {
1431                 user.card(card);
1432                 $modal.open({
1433                     templateUrl: './circ/patron/t_move_to_group_dialog',
1434                     controller: [
1435                                 '$scope','$modalInstance',
1436                         function($scope , $modalInstance) {
1437                             $scope.user = user;
1438                             $scope.selected = selected;
1439                             $scope.outbound = outbound;
1440                             $scope.ok = 
1441                                 function(count) { $modalInstance.close() }
1442                             $scope.cancel = 
1443                                 function () { $modalInstance.dismiss() }
1444                         }
1445                     ]
1446                 }).result.then(function() {
1447                     if (outbound) {
1448                         moveUsersToGroup(user, selected);
1449                     } else {
1450                         addUserToGroup(user);
1451                     }
1452                 });
1453             });
1454         });
1455     }
1456
1457     // selected == move selected patrons to another patron's group
1458     // !selected == patron from a different group moves into our group
1459     function moveToGroup(selected, outbound) {
1460         egPromptDialog.open(
1461             egCore.strings.GROUP_ADD_USER, '',
1462             {ok : function(value) {
1463                 if (value) 
1464                     showMoveToGroupConfirm(value, selected, outbound);
1465             }}
1466         );
1467     }
1468
1469     $scope.moveToGroup = function() { moveToGroup([], false) };
1470     $scope.moveToAnotherGroup = function(selected) { moveToGroup(selected, true) };
1471
1472     $scope.cloneUser = function(selected) {
1473         if (!selected.length) return;
1474         var url = $location.absUrl().replace(
1475             /\/patron\/.*/, 
1476             '/patron/register/clone/' + selected[0].id);
1477         $window.open(url, '_blank').focus();
1478     }
1479
1480     $scope.retrieveSelected = function(selected) {
1481         if (!selected.length) return;
1482         var url = $location.absUrl().replace(
1483             /\/patron\/.*/, 
1484             '/patron/' + selected[0].id + '/checkout');
1485         $window.open(url, '_blank').focus();
1486     }
1487
1488 }])
1489
1490 .controller('PatronStatCatsCtrl',
1491        ['$scope','$routeParams','$q','egCore','patronSvc',
1492 function($scope,  $routeParams , $q , egCore , patronSvc) {
1493     $scope.initTab('other', $routeParams.id)
1494     .then(function(redirect) {
1495         // Entries for org-visible stat cats are fleshed.  Any others
1496         // have to be fleshed within.
1497
1498         var to_flesh = {};
1499         angular.forEach(patronSvc.current.stat_cat_entries(), 
1500             function(entry) {
1501                 if (!angular.isObject(entry.stat_cat())) {
1502                     to_flesh[entry.stat_cat()] = entry;
1503                 }
1504             }
1505         );
1506
1507         if (!Object.keys(to_flesh).length) return;
1508
1509         egCore.pcrud.search('actsc', {id : Object.keys(to_flesh)})
1510         .then(null, null, function(cat) { // stream
1511             cat.owner(egCore.org.get(cat.owner())); // owner flesh
1512             to_flesh[cat.id()].stat_cat(cat);
1513         });
1514     });
1515 }])
1516
1517 .controller('PatronFetchLastCtrl',
1518        ['$scope','$location','egCore',
1519 function($scope , $location , egCore) {
1520
1521     var id = egCore.hatch.getLocalItem('eg.circ.last_patron');
1522     if (id) return $location.path('/circ/patron/' + id + '/checkout');
1523
1524     $scope.no_last = true;
1525 }])
1526
1527 .controller('PatronTriggeredEventsCtrl',
1528        ['$scope','$routeParams','$location','egCore','patronSvc',
1529 function($scope,  $routeParams,  $location , egCore , patronSvc) {
1530     $scope.initTab('other', $routeParams.id);
1531
1532     var url = $location.absUrl().replace(/\/staff.*/, '/actor/user/event_log');
1533     url += '?patron_id=' + encodeURIComponent($routeParams.id);
1534
1535     $scope.triggered_events_url = url;
1536     $scope.funcs = {};
1537 }])
1538
1539 .controller('PatronPermsCtrl',
1540        ['$scope','$routeParams','$window','$location','egCore',
1541 function($scope , $routeParams , $window , $location , egCore) {
1542     $scope.initTab('other', $routeParams.id);
1543
1544     var url = $location.absUrl().replace(
1545         /\/eg\/staff.*/, '/xul/server/patron/user_edit.xhtml');
1546
1547     url += '?usr=' + encodeURIComponent($routeParams.id);
1548
1549     // user_edit does not load the session via cookie.  It uses URL 
1550     // params or xulG instead.  Pass via xulG.
1551     $scope.funcs = {
1552         ses : egCore.auth.token(),
1553         on_patron_save : function() {
1554             $scope.funcs.reload();
1555         }
1556     }
1557
1558     $scope.user_perms_url = url;
1559 }])
1560
1561 .directive('aDisabled', function() {
1562     return {
1563         compile: function(tElement, tAttrs, transclude) {
1564             //Disable ngClick
1565             tAttrs["ngClick"] = ("ng-click", "!("+tAttrs["aDisabled"]+") && ("+tAttrs["ngClick"]+")");
1566
1567             //Toggle "disabled" to class when aDisabled becomes true
1568             return function (scope, iElement, iAttrs) {
1569                 scope.$watch(iAttrs["aDisabled"], function(newValue) {
1570                     if (newValue !== undefined) {
1571                         iElement.toggleClass("disabled", newValue);
1572                     }
1573                 });
1574
1575                 //Disable href on click
1576                 iElement.on("click", function(e) {
1577                     if (scope.$eval(iAttrs["aDisabled"])) {
1578                         e.preventDefault();
1579                     }
1580                 });
1581             };
1582         }
1583     };
1584 })
1585