]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/chrome/content/OpenILS/data.js
template tweaks
[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 have been examined:<hr/><ol>',
110                                         'line_item' : '<li>%title%<br/>\r\nBarcode: %barcode%\r\n',
111                                         'footer' : '</ol><hr />%PINES_CODE% %TODAY_TRIM%<br/>\r\n<br/>\r\n',
112                                 }, 
113                                 'items_out' : {
114                                         'type' : 'items',
115                                         'header' : 'Welcome %PATRON_FIRSTNAME%, to %LIBRARY%!<br/>\r\nYou have the following items:<hr/><ol>',
116                                         'line_item' : '<li>%title%<br/>\r\nBarcode: %barcode% Due: %due_date%\r\n',
117                                         'footer' : '</ol><hr />%PINES_CODE% %TODAY_TRIM%<br/>\r\nYou were helped by %STAFF_FIRSTNAME% %STAFF_LASTNAME%<br/>\r\n<br/>\r\n',
118                                 }, 
119                                 'checkout' : {
120                                         'type' : 'items',
121                                         'header' : 'Welcome %PATRON_FIRSTNAME%, to %LIBRARY%!<br/>\r\nYou checked out the following items:<hr/><ol>',
122                                         'line_item' : '<li>%title%<br/>\r\nBarcode: %barcode% Due: %due_date%\r\n',
123                                         'footer' : '</ol><hr />%PINES_CODE% %TODAY_TRIM%<br/>\r\nYou were helped by %STAFF_FIRSTNAME% %STAFF_LASTNAME%<br/>\r\n<br/>\r\n',
124                                 }, 
125                                 'offline_checkout' : {
126                                         'type' : 'offline_checkout',
127                                         'header' : 'Patron %patron_barcode%<br/>\r\nYou checked out the following items:<hr/><ol>',
128                                         'line_item' : '<li>Barcode: %barcode%<br/>\r\nDue: %due_date%\r\n',
129                                         'footer' : '</ol><hr />%TODAY_TRIM%<br/>\r\n<br/>\r\n',
130                                 },
131                                 'checkin' : {
132                                         'type' : 'items',
133                                         'header' : 'You checked in the following items:<hr/><ol>',
134                                         'line_item' : '<li>%title%<br/>\r\nBarcode: %barcode%  Call Number: %call_number%\r\n',
135                                         'footer' : '</ol><hr />%PINES_CODE% %TODAY_TRIM%<br/>\r\n<br/>\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_TRIM%<br/>\r\n<br/>\r\n',
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_TRIM%<br/>\r\n<br/>\r\n',
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_TRIM%<br/>\r\n<br/>\r\n',
154                                 },
155                                 'holds' : {
156                                         'type' : 'holds',
157                                         'header' : 'Welcome %PATRON_FIRSTNAME%, to %LIBRARY%!<br/>\r\nYou have the following titles on hold:<hr/><ol>',
158                                         'line_item' : '<li>%title%\r\n',
159                                         'footer' : '</ol><hr />%PINES_CODE% %TODAY_TRIM%<br/>\r\nYou were helped by %STAFF_FIRSTNAME% %STAFF_LASTNAME%<br/>\r\n<br/>\r\n',
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
172                 JSAN.use('util.file'); var file = new util.file('print_list_templates');
173                 obj.print_list_defaults();
174                 if (file._file.exists()) {
175                         try {
176                                 var x = file.get_object();
177                                 if (x) {
178                                         obj.print_list_templates = x;
179                                         obj.stash('print_list_templates');
180                                 }
181                         } catch(E) {
182                                 alert(E);
183                         }
184                 }
185                 file.close();
186
187                 JSAN.use('util.file');
188                 JSAN.use('util.functional');
189                 JSAN.use('util.fm_utils');
190
191                 function gen_fm_retrieval_func(classname,data) {
192                         var app = data[0]; var method = data[1]; var params = data[2]; var cacheable = data[3];
193                         return function () {
194                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
195
196                                 function convert() {
197                                         netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
198                                         try {
199                                                 if (obj.list[classname].constructor.name == 'Array') {
200                                                         obj.hash[classname] = 
201                                                                 util.functional.convert_object_list_to_hash(
202                                                                         obj.list[classname]
203                                                                 );
204                                                 }
205                                         } catch(E) {
206
207                                                 obj.error.sdump('D_ERROR',E + '\n');
208                                         }
209
210                                 }
211
212                                 try {
213                                         var level = obj.error.sdump_levels.D_SES_RESULT;
214                                         if (classname == 'aou' || classname == 'my_aou')
215                                                 obj.error.sdump_levels.D_SES_RESULT = false;
216                                         var robj = obj.network.request( app, method, params);
217                                         if (!robj || robj.ilsevent) {
218                                                 obj.error.standard_unexpected_error_alert('The staff client failed to retrieve expected data from this call, "' + method + '"',robj);
219                                                 throw(robj);
220                                         }
221                                         obj.list[classname] = robj;
222                                         obj.error.sdump_levels.D_SES_RESULT = level;
223                                         convert();
224                                         // if cacheable, store an offline copy
225                                         /* FIXME -- we're going to revisit caching and do it differently
226                                         if (cacheable) {
227                                                 var file = new util.file( classname );
228                                                 file.set_object( obj.list[classname] );
229                                         }
230                                         */
231
232                                 } catch(E) {
233                                         // if cacheable, try offline
234                                         if (cacheable) {
235                                                 /* FIXME -- we're going to revisit caching and do it differently
236                                                 try {
237                                                         var file = new util.file( classname );
238                                                         obj.list[classname] = file.get_object(); file.close();
239                                                         convert();
240                                                 } catch(E) {
241                                                         throw(E);
242                                                 }
243                                                 */
244                                                 throw(E); // for now
245                                         } else {
246                                                 throw(E); // for now
247                                         }
248                                 }
249                         }
250                 }
251
252                 this.chain = [];
253
254                 this.chain.push(
255                         function() {
256                                 var f = gen_fm_retrieval_func(
257                                         'au',
258                                         [
259                                                 api.FM_AU_RETRIEVE_VIA_SESSION.app,
260                                                 api.FM_AU_RETRIEVE_VIA_SESSION.method,
261                                                 [ obj.session.key ],
262                                                 false
263                                         ]
264                                 );
265                                 try {
266                                         f();
267                                 } catch(E) {
268                                         var error = 'Error: ' + js2JSON(E);
269                                         obj.error.sdump('D_ERROR',error);
270                                         throw(E);
271                                 }
272                                 obj.list.au = [ obj.list.au ];
273                         }
274                 );
275
276                 this.chain.push(
277                         function() {
278                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
279                                 var f = gen_fm_retrieval_func(
280                                         'my_asv',
281                                         [
282                                                 api.FM_ASV_RETRIEVE_REQUIRED.app,
283                                                 api.FM_ASV_RETRIEVE_REQUIRED.method,
284                                                 [ obj.session.key ],
285                                                 true
286                                         ]
287                                 );
288                                 try {
289                                         netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
290                                         f();
291                                 } catch(E) {
292                                         var error = 'Error: ' + js2JSON(E);
293                                         obj.error.sdump('D_ERROR',error);
294                                         throw(E);
295                                 }
296                         }
297                 );
298
299                 this.chain.push(
300                         function() {
301                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
302                                 var f = gen_fm_retrieval_func(
303                                         'asv',
304                                         [
305                                                 api.FM_ASV_RETRIEVE.app,
306                                                 api.FM_ASV_RETRIEVE.method,
307                                                 [ obj.session.key ],
308                                                 true
309                                         ]
310                                 );
311                                 try {
312                                         netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
313                                         f();
314                                 } catch(E) {
315                                         var error = 'Error: ' + js2JSON(E);
316                                         obj.error.sdump('D_ERROR',error);
317                                         throw(E);
318                                 }
319                         }
320                 );
321
322                 obj.error.sdump('D_DEBUG','_fm_objects = ' + js2JSON(this._fm_objects) + '\n');
323
324                 for (var i in this._fm_objects) {
325                         this.chain.push( gen_fm_retrieval_func(i,this._fm_objects[i]) );
326                 }
327
328                 // The previous org_tree call returned a tree, not a list or hash.
329                 this.chain.push(
330                         function () {
331                                 obj.tree.aou = obj.list.aou;
332                                 obj.list.aou = util.fm_utils.flatten_ou_branch( obj.tree.aou );
333                                 obj.hash.aou = util.functional.convert_object_list_to_hash( obj.list.aou );
334                         }
335                 );
336
337                 // Do this after we get the user object
338                 this.chain.push(
339
340                         function() {
341
342                                 gen_fm_retrieval_func('my_aou', 
343                                         [ 
344                                                 api.FM_AOU_RETRIEVE_RELATED_VIA_SESSION.app,
345                                                 api.FM_AOU_RETRIEVE_RELATED_VIA_SESSION.method,
346                                                 [ obj.session.key, obj.list.au[0].ws_ou() ], /* use ws_ou and not home_ou */
347                                                 true
348                                         ]
349                                 )();
350                         }
351                 );
352
353                 this.chain.push(
354
355                         function () {
356
357                                 gen_fm_retrieval_func( 'my_actsc', 
358                                         [ 
359                                                 api.FM_ACTSC_RETRIEVE_VIA_AOU.app,
360                                                 api.FM_ACTSC_RETRIEVE_VIA_AOU.method,
361                                                 [ obj.session.key, obj.list.au[0].ws_ou() ],
362                                                 true
363                                         ]
364                                 )();
365                         }
366                 );
367
368                 this.chain.push(
369
370                         function () {
371
372                                 gen_fm_retrieval_func( 'my_asc', 
373                                         [ 
374                                                 api.FM_ASC_RETRIEVE_VIA_AOU.app,
375                                                 api.FM_ASC_RETRIEVE_VIA_AOU.method,
376                                                 [ obj.session.key, obj.list.au[0].ws_ou() ],
377                                                 true
378                                         ]
379                                 )();
380                         }
381                 );
382
383
384                 this.chain.push(
385                         function() {
386                                 var f = gen_fm_retrieval_func(
387                                         'cnct',
388                                         [
389                                                 api.FM_CNCT_RETRIEVE.app,
390                                                 api.FM_CNCT_RETRIEVE.method,
391                                                 [ obj.list.au[0].ws_ou() ], 
392                                                 false
393                                         ]
394                                 );
395                                 try {
396                                         f();
397                                 } catch(E) {
398                                         var error = 'Error: ' + js2JSON(E);
399                                         obj.error.sdump('D_ERROR',error);
400                                         throw(E);
401                                 }
402                         }
403                 );
404
405
406                 if (typeof this.on_complete == 'function') {
407
408                         this.chain.push( this.on_complete );
409                 }
410                 JSAN.use('util.exec'); this.exec = new util.exec();
411                 this.exec.on_error = function(E) { 
412                 
413                         if (typeof obj.on_error == 'function') {
414                                 obj.on_error();
415                         } else {
416                                 alert('oops: ' + E ); 
417                         }
418
419                         return false; /* break chain */
420                 }
421
422                 this.exec.chain( this.chain );
423
424         }
425 }
426
427 dump('exiting OpenILS/data.js\n');