]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/js/ui/default/staff/services/startup.js
LP#1706107: Offline mode
[Evergreen.git] / Open-ILS / web / js / ui / default / staff / services / startup.js
1 /**
2  * Core Service - egStartup
3  *
4  * Coordinates all startup routines and consolidates them into
5  * a single startup promise.  Startup can be launched from multiple
6  * controllers, etc., but only one startup routine will be run.
7  *
8  * If no valid authtoken is found, startup will exit early and 
9  * change the page href to the login page.  Otherwise, the global
10  * promise returned by startup.go() will be resolved after all
11  * async data is arrived.
12  */
13
14 angular.module('egCoreMod')
15
16 .config(['$locationProvider','$compileProvider',
17  function($locationProvider , $compileProvider) {
18     $locationProvider.html5Mode(true);
19     $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|blob):/);
20 }])
21
22 .factory('egStartup', 
23        ['$q','$rootScope','$location','$window','egIDL','egAuth','egEnv','egOrg',
24 function($q,  $rootScope,  $location,  $window,  egIDL,  egAuth,  egEnv , egOrg ) {
25
26     var service = { promise : null }
27
28     // Load date/time format settings on all pages.  Add more .push(...)
29     // calls to add more universal data-loading functions. 
30     // egEnv.loaders functions must return a promise.
31     egEnv.loaders.push(
32         function() {
33             return egOrg.settings([
34                 'webstaff.format.dates',
35                 'webstaff.format.date_and_time',
36                 'lib.timezone'
37             ]).then(
38                 function(set) {
39                     $rootScope.egDateFormat = 
40                         set['webstaff.format.dates'] || 'shortDate';
41                     $rootScope.egDateAndTimeFormat = 
42                         set['webstaff.format.date_and_time'] || 'short';
43                 }
44             );
45         }
46     );
47
48     // returns true if we are staying on the current page
49     // false if we are redirecting to login
50     service.expiredAuthHandler = function() {
51         if (lf.isOffline) return true; // Only set by the offline UI
52
53         console.debug('egStartup.expiredAuthHandler()');
54         egAuth.logout(); // clean up
55
56         // no need to redirect if we're on the /login page
57         if ($location.path() == '/login') return true;
58
59         // change locations to the login page, using the current page
60         // as the 'route_to' destination on /login
61         $window.location.href = $location
62             .path('/login')
63             .search({route_to : 
64                 $window.location.pathname + $window.location.search})
65             .absUrl();
66
67         return false;
68     }
69
70     // if during startup or any time in the future we encounter an expired
71     // authtoken, call our epired token handler
72     // we handle this here instead egAuth, since it affects the flow
73     // of the startup routines when no valid token exists during startup.
74     $rootScope.$on('egAuthExpired', function() {service.expiredAuthHandler()});
75
76     service.go = function () {
77         if (service.promise) {
78             // startup already started, return our existing promise
79             return service.promise;
80         } 
81
82         // create a new promise and fire off startup
83         var deferred = $q.defer();
84         service.promise = deferred.promise;
85
86         // IDL parsing is sync.  No promises required
87         egIDL.parseIDL();
88         egAuth.testAuthToken().then(
89
90             // testAuthToken resolved
91             function() { 
92                 egEnv.load().then(
93                     function() { deferred.resolve() }, 
94                     function() { 
95                         deferred.reject('egEnv did not resolve')
96                     }
97                 );
98             },
99
100             // testAuthToken rejected
101             function() { 
102                 console.log('egAuth found no valid authtoken');
103                 if (service.expiredAuthHandler()) deferred.resolve();
104             }
105         );
106
107         return service.promise;
108     }
109     
110     return service;
111 }]);
112