]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/chrome/content/OpenILS/data.js
fix
[working/Evergreen.git] / Open-ILS / xul / staff_client / chrome / content / OpenILS / data.js
1 dump('entering OpenILS/data.js\n');
2
3 if (typeof OpenILS == 'undefined') OpenILS = {};
4 OpenILS.data = function () {
5
6         JSAN.use('util.error'); this.error = new util.error();
7         JSAN.use('util.network'); this.network = new util.network();
8
9         return this;
10 }
11
12 OpenILS.data.prototype = {
13
14         'list' : {},
15         'hash' : {},
16         'tree' : {},
17
18         'temp' : '',
19
20         'init' : function (params) {
21
22                 try {
23                         if (params && params.via == 'stash') {  
24                                 this.stash_retrieve();
25                         } else {
26                                 this.network_retrieve();
27                         }
28                 
29                 } catch(E) {
30                         this.error.sdump('D_ERROR','Error in OpenILS.data.init('
31                                 +js2JSON(params)+'): ' + js2JSON(E) );
32                 }
33
34
35         },
36
37         'stash' : function () {
38                 try {
39                         netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
40                         const OpenILS=new Components.Constructor("@mozilla.org/openils_data_cache;1", "nsIOpenILS");
41                         var data_cache=new OpenILS( );
42                         for (var i = 0; i < arguments.length; i++) {
43                                 this.error.sdump('D_DATA','stashing ' + arguments[i] + ' : ' + this[arguments[i]] + '\n');
44                                 data_cache.wrappedJSObject.OpenILS.prototype.data[arguments[i]] = this[arguments[i]];
45                         }
46                 } catch(E) {
47                         this.error.sdump('D_ERROR','Error in OpenILS.data.stash(): ' + js2JSON(E) );
48                 }
49         },
50
51         '_debug_stash' : function() {
52                 try {
53                         netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
54                         const OpenILS=new Components.Constructor("@mozilla.org/openils_data_cache;1", "nsIOpenILS");
55                         var data_cache=new OpenILS( );
56                         for (var i in data_cache.wrappedJSObject.OpenILS.prototype.data) {
57                                 dump('_debug_stash ' + i + '\n');
58                         }
59                 } catch(E) {
60                         this.error.sdump('D_ERROR','Error in OpenILS.data._debug_stash(): ' + js2JSON(E) );
61                 }
62         },
63
64         '_fm_objects' : {
65
66                 'pgt' : [ api.FM_PGT_RETRIEVE.app, api.FM_PGT_RETRIEVE.method, [], true ],
67                 'cit' : [ api.FM_CIT_RETRIEVE.app, api.FM_CIT_RETRIEVE.method, [], true ],
68                 'cst' : [ api.FM_CST_RETRIEVE.app, api.FM_CST_RETRIEVE.method, [], true ],
69                 'acpl' : [ api.FM_ACPL_RETRIEVE.app, api.FM_ACPL_RETRIEVE.method, [], true ],
70                 'ccs' : [ api.FM_CCS_RETRIEVE.app, api.FM_CCS_RETRIEVE.method, [], true ],
71                 'aou' : [ api.FM_AOU_RETRIEVE.app, api.FM_AOU_RETRIEVE.method, [], true ],
72                 'aout' : [ api.FM_AOUT_RETRIEVE.app, api.FM_AOUT_RETRIEVE.method, [], true ]    
73         },
74
75         'stash_retrieve' : function() {
76                 try {
77                         netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
78                         const OpenILS=new Components.Constructor("@mozilla.org/openils_data_cache;1", "nsIOpenILS");
79                         var data_cache=new OpenILS( );
80                         var dc = data_cache.wrappedJSObject.OpenILS.prototype.data;
81                         for (var i in dc) {
82                                 this.error.sdump('D_DATA','Retrieving ' + i + ' : ' + dc[i] + '\n');
83                                 this[i] = dc[i];
84                         }
85                         if (typeof this.on_complete == 'function') {
86
87                                 this.on_complete();
88                         }
89                 } catch(E) {
90                         this.error.sdump('D_ERROR','Error in OpenILS.data._debug_stash(): ' + js2JSON(E) );
91                 }
92         },
93
94         'print_list_defaults' : function() {
95                 var obj = this;
96                 if (typeof obj.print_list_templates == 'undefined') {
97                         obj.print_list_types = [ 
98                                 'offline_checkout', 
99                                 'offline_checkin', 
100                                 'offline_renew', 
101                                 'offline_inhouse_use', 
102                                 'items', 
103                                 'holds', 
104                                 'patrons' 
105                         ];
106                         obj.print_list_templates = { 
107                                 'item_status' : {
108                                         'type' : 'items',
109                                         'header' : 'The following items are examined:<hr/><ol>',
110                                         'line_item' : '<li>%title%\r\nBarcode: %barcode%\r\n',
111                                         'footer' : '</ol><hr />%PINES_CODE% %TODAY%\r\n',
112                                 }, 
113                                 'items_out' : {
114                                         'type' : 'items',
115                                         'header' : 'Welcome %PATRON_FIRSTNAME%, to %LIBRARY%!\r\nYou have the following items:<hr/><ol>',
116                                         'line_item' : '<li>%title%\r\nBarcode: %barcode% Due: %due_date%\r\n',
117                                         'footer' : '</ol><hr />%PINES_CODE% %TODAY%\r\nYou were helped by %STAFF_FIRSTNAME% %STAFF_LASTNAME%',
118                                 }, 
119                                 'checkout' : {
120                                         'type' : 'items',
121                                         'header' : 'Welcome %PATRON_FIRSTNAME%, to %LIBRARY%!\r\nYou checked out the following items:<hr/><ol>',
122                                         'line_item' : '<li>%title%\r\nBarcode: %barcode% Due: %due_date%\r\n',
123                                         'footer' : '</ol><hr />%PINES_CODE% %TODAY%\r\nYou were helped by %STAFF_FIRSTNAME% %STAFF_LASTNAME%',
124                                 }, 
125                                 'offline_checkout' : {
126                                         'type' : 'offline_checkout',
127                                         'header' : 'Patron %patron_barcode%\r\nYou checked out the following items:<hr/><ol>',
128                                         'line_item' : '<li>Barcode: %barcode%\r\nDue: %due_date%\r\n',
129                                         'footer' : '</ol><hr />%TODAY%',
130                                 },
131                                 'checkin' : {
132                                         'type' : 'items',
133                                         'header' : 'You checked in the following items:<hr/><ol>',
134                                         'line_item' : '<li>%title%\r\nBarcode: %barcode%  Call Number: %call_number%\r\n',
135                                         'footer' : '</ol><hr />%PINES_CODE% %TODAY%\r\n',
136                                 }, 
137                                 'offline_checkin' : {
138                                         'type' : 'offline_checkin',
139                                         'header' : 'You checked in the following items:<hr/><ol>',
140                                         'line_item' : '<li>Barcode: %barcode%\r\n',
141                                         'footer' : '</ol><hr />%TODAY%',
142                                 },
143                                 'offline_renew' : {
144                                         'type' : 'offline_renew',
145                                         'header' : 'You renewed the following items:<hr/><ol>',
146                                         'line_item' : '<li>Barcode: %barcode%\r\n',
147                                         'footer' : '</ol><hr />%TODAY%',
148                                 },
149                                 'offline_inhouse_use' : {
150                                         'type' : 'offline_inhouse_use',
151                                         'header' : 'You marked the following in-house items used:<hr/><ol>',
152                                         'line_item' : '<li>Barcode: %barcode%\r\nUses: %count%',
153                                         'footer' : '</ol><hr />%TODAY%',
154                                 },
155                                 'holds' : {
156                                         'type' : 'holds',
157                                         'header' : 'Welcome %PATRON_FIRSTNAME%, to %LIBRARY%!\r\nYou have the following titles on hold:<hr/><ol>',
158                                         'line_item' : '<li>%title%\r\n',
159                                         'footer' : '</ol><hr />%PINES_CODE% %TODAY%\r\nYou were helped by %STAFF_FIRSTNAME% %STAFF_LASTNAME%',
160                                 } 
161                         }; 
162
163                         obj.stash( 'print_list_templates', 'print_list_types' );
164                 }
165         },
166
167         'network_retrieve' : function() {
168                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
169                 var obj = this;
170
171                 try { obj.print_list_defaults(); } catch(E) { alert(E); }
172
173                 JSAN.use('util.file');
174                 JSAN.use('util.functional');
175                 JSAN.use('util.fm_utils');
176
177                 function gen_fm_retrieval_func(classname,data) {
178                         var app = data[0]; var method = data[1]; var params = data[2]; var cacheable = data[3];
179                         return function () {
180                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
181
182                                 function convert() {
183                                         netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
184                                         try {
185                                                 if (obj.list[classname].constructor.name == 'Array') {
186                                                         obj.hash[classname] = 
187                                                                 util.functional.convert_object_list_to_hash(
188                                                                         obj.list[classname]
189                                                                 );
190                                                 }
191                                         } catch(E) {
192
193                                                 obj.error.sdump('D_ERROR',E + '\n');
194                                         }
195
196                                 }
197
198                                 try {
199                                         var level = obj.error.sdump_levels.D_SES_RESULT;
200                                         if (classname == 'aou' || classname == 'my_aou')
201                                                 obj.error.sdump_levels.D_SES_RESULT = false;
202                                         var robj = obj.network.request( app, method, params);
203                                         if (!robj || robj.ilsevent) {
204                                                 obj.error.standard_unexpected_error_alert('The staff client failed to retrieve expected data from this call, "' + method + '"',robj);
205                                                 throw(robj);
206                                         }
207                                         obj.list[classname] = robj;
208                                         obj.error.sdump_levels.D_SES_RESULT = level;
209                                         convert();
210                                         // if cacheable, store an offline copy
211                                         /* FIXME -- we're going to revisit caching and do it differently
212                                         if (cacheable) {
213                                                 var file = new util.file( classname );
214                                                 file.set_object( obj.list[classname] );
215                                         }
216                                         */
217
218                                 } catch(E) {
219                                         // if cacheable, try offline
220                                         if (cacheable) {
221                                                 /* FIXME -- we're going to revisit caching and do it differently
222                                                 try {
223                                                         var file = new util.file( classname );
224                                                         obj.list[classname] = file.get_object(); file.close();
225                                                         convert();
226                                                 } catch(E) {
227                                                         throw(E);
228                                                 }
229                                                 */
230                                                 throw(E); // for now
231                                         } else {
232                                                 throw(E); // for now
233                                         }
234                                 }
235                         }
236                 }
237
238                 this.chain = [];
239
240                 this.chain.push(
241                         function() {
242                                 var f = gen_fm_retrieval_func(
243                                         'au',
244                                         [
245                                                 api.FM_AU_RETRIEVE_VIA_SESSION.app,
246                                                 api.FM_AU_RETRIEVE_VIA_SESSION.method,
247                                                 [ obj.session.key ],
248                                                 false
249                                         ]
250                                 );
251                                 try {
252                                         f();
253                                 } catch(E) {
254                                         var error = 'Error: ' + js2JSON(E);
255                                         obj.error.sdump('D_ERROR',error);
256                                         throw(E);
257                                 }
258                                 obj.list.au = [ obj.list.au ];
259                         }
260                 );
261
262                 this.chain.push(
263                         function() {
264                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
265                                 var f = gen_fm_retrieval_func(
266                                         'my_asv',
267                                         [
268                                                 api.FM_ASV_RETRIEVE_REQUIRED.app,
269                                                 api.FM_ASV_RETRIEVE_REQUIRED.method,
270                                                 [ obj.session.key ],
271                                                 true
272                                         ]
273                                 );
274                                 try {
275                                         netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
276                                         f();
277                                 } catch(E) {
278                                         var error = 'Error: ' + js2JSON(E);
279                                         obj.error.sdump('D_ERROR',error);
280                                         throw(E);
281                                 }
282                         }
283                 );
284
285                 this.chain.push(
286                         function() {
287                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
288                                 var f = gen_fm_retrieval_func(
289                                         'asv',
290                                         [
291                                                 api.FM_ASV_RETRIEVE.app,
292                                                 api.FM_ASV_RETRIEVE.method,
293                                                 [ obj.session.key ],
294                                                 true
295                                         ]
296                                 );
297                                 try {
298                                         netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
299                                         f();
300                                 } catch(E) {
301                                         var error = 'Error: ' + js2JSON(E);
302                                         obj.error.sdump('D_ERROR',error);
303                                         throw(E);
304                                 }
305                         }
306                 );
307
308                 obj.error.sdump('D_DEBUG','_fm_objects = ' + js2JSON(this._fm_objects) + '\n');
309
310                 for (var i in this._fm_objects) {
311                         this.chain.push( gen_fm_retrieval_func(i,this._fm_objects[i]) );
312                 }
313
314                 // The previous org_tree call returned a tree, not a list or hash.
315                 this.chain.push(
316                         function () {
317                                 obj.tree.aou = obj.list.aou;
318                                 obj.list.aou = util.fm_utils.flatten_ou_branch( obj.tree.aou );
319                                 obj.hash.aou = util.functional.convert_object_list_to_hash( obj.list.aou );
320                         }
321                 );
322
323                 // Do this after we get the user object
324                 this.chain.push(
325
326                         function() {
327
328                                 gen_fm_retrieval_func('my_aou', 
329                                         [ 
330                                                 api.FM_AOU_RETRIEVE_RELATED_VIA_SESSION.app,
331                                                 api.FM_AOU_RETRIEVE_RELATED_VIA_SESSION.method,
332                                                 [ obj.session.key, obj.list.au[0].ws_ou() ], /* use ws_ou and not home_ou */
333                                                 true
334                                         ]
335                                 )();
336                         }
337                 );
338
339                 this.chain.push(
340
341                         function () {
342
343                                 gen_fm_retrieval_func( 'my_actsc', 
344                                         [ 
345                                                 api.FM_ACTSC_RETRIEVE_VIA_AOU.app,
346                                                 api.FM_ACTSC_RETRIEVE_VIA_AOU.method,
347                                                 [ obj.session.key, obj.list.au[0].ws_ou() ],
348                                                 true
349                                         ]
350                                 )();
351                         }
352                 );
353
354                 this.chain.push(
355
356                         function () {
357
358                                 gen_fm_retrieval_func( 'my_asc', 
359                                         [ 
360                                                 api.FM_ASC_RETRIEVE_VIA_AOU.app,
361                                                 api.FM_ASC_RETRIEVE_VIA_AOU.method,
362                                                 [ obj.session.key, obj.list.au[0].ws_ou() ],
363                                                 true
364                                         ]
365                                 )();
366                         }
367                 );
368
369
370                 this.chain.push(
371                         function() {
372                                 var f = gen_fm_retrieval_func(
373                                         'cnct',
374                                         [
375                                                 api.FM_CNCT_RETRIEVE.app,
376                                                 api.FM_CNCT_RETRIEVE.method,
377                                                 [ obj.list.au[0].ws_ou() ], 
378                                                 false
379                                         ]
380                                 );
381                                 try {
382                                         f();
383                                 } catch(E) {
384                                         var error = 'Error: ' + js2JSON(E);
385                                         obj.error.sdump('D_ERROR',error);
386                                         throw(E);
387                                 }
388                         }
389                 );
390
391
392                 if (typeof this.on_complete == 'function') {
393
394                         this.chain.push( this.on_complete );
395                 }
396                 JSAN.use('util.exec'); this.exec = new util.exec();
397                 this.exec.on_error = function(E) { 
398                 
399                         if (typeof obj.on_error == 'function') {
400                                 obj.on_error();
401                         } else {
402                                 alert('oops: ' + E ); 
403                         }
404
405                         return false; /* break chain */
406                 }
407
408                 this.exec.chain( this.chain );
409
410         }
411 }
412
413 dump('exiting OpenILS/data.js\n');