]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/chrome/content/util/print.js
modified patch from Steve Callender; exposes the patron 'alias' field in the Receipt...
[working/Evergreen.git] / Open-ILS / xul / staff_client / chrome / content / util / print.js
1 dump('entering util/print.js\n');
2
3 if (typeof util == 'undefined') util = {};
4 util.print = function () {
5
6     netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
7
8     JSAN.use('util.error'); this.error = new util.error();
9     JSAN.use('OpenILS.data'); this.data = new OpenILS.data(); this.data.init( { 'via':'stash' } );
10     JSAN.use('util.window'); this.win = new util.window();
11     JSAN.use('util.functional');
12     JSAN.use('util.file');
13
14     return this;
15 };
16
17 util.print.prototype = {
18
19     'reprint_last' : function() {
20         try {
21             var obj = this; obj.data.init({'via':'stash'});
22             if (!obj.data.last_print) {
23                 alert('Nothing to re-print');
24                 return;
25             }
26             var msg = obj.data.last_print.msg;
27             var params = obj.data.last_print.params; params.no_prompt = false;
28             obj.simple( msg, params );
29         } catch(E) {
30             this.error.standard_unexpected_error_alert('util.print.reprint_last',E);
31         }
32     },
33
34     'simple' : function(msg,params) {
35         try {
36             if (!params) params = {};
37
38             var obj = this;
39
40             obj.data.last_print = { 'msg' : msg, 'params' : params}; obj.data.stash('last_print');
41
42             var silent = false;
43             if ( params && params.no_prompt && (params.no_prompt == true || params.no_prompt == 'true') ) {
44                 silent = true;
45             }
46
47             var content_type;
48             if (params && params.content_type) {
49                 content_type = params.content_type;
50             } else {
51                 content_type = 'text/html';
52             }
53
54             var w;
55
56             netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
57             obj.data.init({'via':'stash'});
58
59             if (params.print_strategy || obj.data.print_strategy) {
60
61                 switch(params.print_strategy || obj.data.print_strategy) {
62                     case 'dos.print':
63                         /* FIXME - this it a kludge.. we're going to sidestep window-based html rendering for printing */
64                         /* I'm using regexps to mangle the html receipt templates; it'd be nice to use xsl but the */
65                         /* templates aren't guaranteed to be valid xml */
66                         if (content_type=='text/html') {
67                             w = msg.replace(/<br.*?>/gi,'\r\n').replace(/<table.*?>/gi,'\r\n').replace(/<tr.*?>/gi,'\r\n').replace(/<hr.*?>/gi,'\r\n').replace(/<p.*?>/gi,'\r\n').replace(/<block.*?>/gi,'\r\n').replace(/<li.*?>/gi,'\r\n * ').replace(/<.+?>/gi,'');
68                         } else {
69                             w = msg;
70                         }
71                         if (! params.no_form_feed) { w = w + '\r\n\r\n\r\n\r\n\r\n\r\n\f'; }
72                         obj.NSPrint(w, silent, params);
73                         return;
74                     break;
75                 }
76             }
77
78             switch(content_type) {
79                 case 'text/html' :
80                     var jsrc = 'data:text/javascript,' + window.escape('var params = { "data" : ' + js2JSON(params.data) + ', "list" : ' + js2JSON(params.list) + '}; function my_init() { if (typeof go_print == "function") { go_print(); } else { setTimeout( function() { if (typeof go_print == "function") { alert("Please tell the developers that the 2-second go_print workaround executed, and let them know whether this job printed successfully.  Thanks!"); go_print(); } else { alert("Please tell the developers that the 2-second go_print workaround did not work.  We will try to print one more time; there have been reports of wasted receipt paper at this point.  Please check the settings in the print dialog and/or prepare to power off your printer.  Thanks!"); window.print(); } }, 2000 ); } /* FIXME - mozilla bug#301560 - xpcom kills it too */ }');
81                     w = obj.win.open('data:text/html,<html id="top"><head><script src="/xul/server/main/JSAN.js"></script><script src="' + window.escape(jsrc) + '"></script></head><body onload="try{my_init();}catch(E){alert(E);}">' + window.escape(msg) + '</body></html>','receipt_temp','chrome,resizable');
82                     w.minimize();
83                     w.go_print = function() { 
84                         try {
85                             obj.NSPrint(w, silent, params);
86                         } catch(E) {
87                             obj.error.standard_unexpected_error_alert("Print Error in util.print.simple.  After this dialog we'll try a second print attempt. content_type = " + content_type,E);
88                             w.print();
89                         }
90                         w.minimize(); w.close();
91                     }
92                 break;
93                 default:
94                     w = obj.win.open('data:' + content_type + ',' + window.escape(msg),'receipt_temp','chrome,resizable');
95                     w.minimize();
96                     setTimeout(
97                         function() {
98                             try {
99                                 obj.NSPrint(w, silent, params);
100                             } catch(E) {
101                                 obj.error.standard_unexpected_error_alert("Print Error in util.print.simple.  After this dialog we'll try a second print attempt. content_type = " + content_type,E);
102                                 w.print();
103                             }
104                             w.minimize(); w.close();
105                         }, 1000
106                     );
107                 break;
108             }
109
110         } catch(E) {
111             this.error.standard_unexpected_error_alert('util.print.simple',E);
112         }
113     },
114     
115     'tree_list' : function (params) { 
116         try {
117             dump('print.tree_list.params.list = \n' + this.error.pretty_print(js2JSON(params.list)) + '\n');
118             dump('print.tree_list.params.data = \n' + this.error.pretty_print(js2JSON(params.data)) + '\n');
119         } catch(E) {
120             dump(E+'\n');
121         }
122         var cols = [];
123         var s = '';
124         if (params.header) s += this.template_sub( params.header, cols, params );
125         if (params.list) {
126             for (var i = 0; i < params.list.length; i++) {
127                 params.row = params.list[i];
128                 params.row_idx = i;
129                 s += this.template_sub( params.line_item, cols, params );
130             }
131         }
132         if (params.footer) s += this.template_sub( params.footer, cols, params );
133
134         if (params.sample_frame) {
135             var jsrc = 'data:text/javascript,' + window.escape('var params = { "data" : ' + js2JSON(params.data) + ', "list" : ' + js2JSON(params.list) + '};');
136             params.sample_frame.setAttribute('src','data:text/html,<html id="top"><head><script src="' + window.escape(jsrc) + '"></script></head><body>' + window.escape(s) + '</body></html>');
137         } else {
138             this.simple(s,params);
139         }
140     },
141
142     'template_sub' : function( msg, cols, params ) {
143         try {
144             if (!msg) { dump('template sub called with empty string\n'); return; }
145             JSAN.use('util.date');
146             var s = msg; var b;
147
148             try{b = s; s = s.replace(/%LINE_NO%/,Number(params.row_idx)+1);}
149                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
150
151             try{b = s; s = s.replace(/%patron_barcode%/,params.patron_barcode);}
152                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
153
154             try{b = s; s = s.replace(/%LIBRARY%/,params.lib.name());}
155                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
156             try{b = s; s = s.replace(/%PINES_CODE%/,params.lib.shortname());}
157                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
158             try{b = s; s = s.replace(/%SHORTNAME%/,params.lib.shortname());}
159                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
160             try{b = s; s = s.replace(/%STAFF_FIRSTNAME%/,params.staff.first_given_name());}
161                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
162             try{b = s; s = s.replace(/%STAFF_LASTNAME%/,params.staff.family_name());}
163                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
164             try{b = s; s = s.replace(/%STAFF_BARCODE%/,params.staff.barcode); }
165                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
166             try{b = s; s = s.replace(/%STAFF_PROFILE%/,obj.data.hash.pgt[ params.staff.profile() ].name() ); }
167                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
168             try{b = s; s = s.replace(/%PATRON_ALIAS_OR_FIRSTNAME%/,(params.patron.alias() == '' || params.patron.alias() == null) ? params.patron.first_given_name() : params.patron.alias());}
169                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
170             try{b = s; s = s.replace(/%PATRON_ALIAS%/,(params.patron.alias() == '' || params.patron.alias() == null) ? '' : params.patron.alias());}
171                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
172             try{b = s; s = s.replace(/%PATRON_FIRSTNAME%/,params.patron.first_given_name());}
173                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
174             try{b = s; s = s.replace(/%PATRON_LASTNAME%/,params.patron.family_name());}
175                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
176             try{b = s; s = s.replace(/%PATRON_BARCODE%/,typeof params.patron.card() == 'object' ? params.patron.card().barcode() : util.functional.find_id_object_in_list( params.patron.cards(), params.patron.card() ).barcode() ) ;}
177                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
178
179             try{b = s; s=s.replace(/%TODAY%/g,(new Date()));}
180                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
181             try{b = s; s=s.replace(/%TODAY_m%/g,(util.date.formatted_date(new Date(),'%m')));}
182                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
183             try{b = s; s=s.replace(/%TODAY_TRIM%/g,(util.date.formatted_date(new Date(),'')));}
184                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
185             try{b = s; s=s.replace(/%TODAY_d%/g,(util.date.formatted_date(new Date(),'%d')));}
186                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
187             try{b = s; s=s.replace(/%TODAY_Y%/g,(util.date.formatted_date(new Date(),'%Y')));}
188                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
189             try{b = s; s=s.replace(/%TODAY_H%/g,(util.date.formatted_date(new Date(),'%H')));}
190                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
191             try{b = s; s=s.replace(/%TODAY_I%/g,(util.date.formatted_date(new Date(),'%I')));}
192                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
193             try{b = s; s=s.replace(/%TODAY_M%/g,(util.date.formatted_date(new Date(),'%M')));}
194                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
195             try{b = s; s=s.replace(/%TODAY_D%/g,(util.date.formatted_date(new Date(),'%D')));}
196                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
197             try{b = s; s=s.replace(/%TODAY_F%/g,(util.date.formatted_date(new Date(),'%F')));}
198                 catch(E){s = b; this.error.sdump('D_WARN','string = <' + s + '> error = ' + js2JSON(E)+'\n');}
199
200             try {
201                 if (typeof params.row != 'undefined') {
202                     if (params.row.length >= 0) {
203                         alert('debug - please tell the developers that deprecated template code tried to execute');
204                         for (var i = 0; i < cols.length; i++) {
205                             var re = new RegExp(cols[i],"g");
206                             try{b = s; s=s.replace(re, params.row[i]);}
207                                 catch(E){s = b; this.error.standard_unexpected_error_alert('print.js, template_sub(): 1 string = <' + s + '>',E);}
208                         }
209                     } else { 
210                         /* for dump_with_keys */
211                         for (var i in params.row) {
212                             var re = new RegExp('%'+i+'%',"g");
213                             try{b = s; s=s.replace(re, params.row[i]);}
214                                 catch(E){s = b; this.error.standard_unexpected_error_alert('print.js, template_sub(): 2 string = <' + s + '>',E);}
215                         }
216                     }
217                 }
218
219                 if (typeof params.data != 'undefined') {
220                     for (var i in params.data) {
221                         var re = new RegExp('%'+i+'%',"g");
222                         if (typeof params.data[i] == 'string') {
223                             try{b = s; s=s.replace(re, params.data[i]);}
224                                 catch(E){s = b; this.error.standard_unexpected_error_alert('print.js, template_sub(): 3 string = <' + s + '>',E);}
225                         }
226                     }
227                 }
228             } catch(E) { dump(E+'\n'); }
229
230             return s;
231         } catch(E) {
232             alert('Error in print.js, template_sub(): ' + E);
233         }
234     },
235
236
237     'NSPrint' : function(w,silent,params) {
238         if (!w) w = window;
239         var obj = this;
240         try {
241             if (!params) params = {};
242
243             netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
244             obj.data.init({'via':'stash'});
245
246             if (params.print_strategy || obj.data.print_strategy) {
247
248                 switch(params.print_strategy || obj.data.print_strategy) {
249                     case 'dos.print':
250                         if (typeof w != 'string') {
251                             netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
252                             w.getSelection().selectAllChildren(w.document.firstChild);
253                             w = w.getSelection().toString();
254                         }
255                         obj._NSPrint_dos_print(w,silent,params);
256                     break;    
257                     case 'window.print':
258                         w.print();
259                     break;    
260                     case 'webBrowserPrint':
261                         obj._NSPrint_webBrowserPrint(w,silent,params);
262                     break;    
263                     default:
264                         //w.print();
265                         obj._NSPrint_webBrowserPrint(w,silent,params);
266                     break;    
267                 }
268
269             } else {
270                 //w.print();
271                 obj._NSPrint_webBrowserPrint(w,silent,params);
272             }
273
274         } catch (e) {
275             alert('Probably not printing: ' + e);
276             this.error.sdump('D_ERROR','PRINT EXCEPTION: ' + js2JSON(e) + '\n');
277         }
278
279     },
280
281     '_NSPrint_dos_print' : function(w,silent,params) {
282         var obj = this;
283         try {
284
285             /* OLD way: This is a kludge/workaround.  webBrowserPrint doesn't always work.  So we're going to let
286                 the html window handle our receipt template rendering, and then force a selection of all
287                 the text nodes and dump that to a file, for printing through a dos utility */
288
289             /* NEW way: we just pass in the text */
290
291             var text = w;
292
293             var file = new util.file('receipt.txt');
294             file.write_content('truncate',text); 
295             var path = file._file.path;
296             file.close();
297             
298             file = new util.file('receipt.bat');
299             file.write_content('truncate+exec','#!/bin/sh\ncopy "' + path + '" lpt1 /b\nlpr ' + path + '\n');
300             file.close();
301             file = new util.file('receipt.bat');
302
303             var process = Components.classes["@mozilla.org/process/util;1"].createInstance(Components.interfaces.nsIProcess);
304             process.init(file._file);
305
306             var args = [];
307
308             dump('process.run = ' + process.run(true, args, args.length) + '\n');
309
310             file.close();
311
312         } catch (e) {
313             //alert('Probably not printing: ' + e);
314             this.error.sdump('D_ERROR','_NSPrint_dos_print PRINT EXCEPTION: ' + js2JSON(e) + '\n');
315         }
316     },
317
318     '_NSPrint_webBrowserPrint' : function(w,silent,params) {
319         var obj = this;
320         try {
321             netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
322             var webBrowserPrint = w
323                 .QueryInterface(Components.interfaces.nsIInterfaceRequestor)
324                 .getInterface(Components.interfaces.nsIWebBrowserPrint);
325             this.error.sdump('D_PRINT','webBrowserPrint = ' + webBrowserPrint);
326             if (webBrowserPrint) {
327                 var gPrintSettings = obj.GetPrintSettings();
328                 if (silent) gPrintSettings.printSilent = true;
329                 else gPrintSettings.printSilent = false;
330                 if (params) {
331                     if (params.marginLeft) gPrintSettings.marginLeft = params.marginLeft;
332                 }
333                 webBrowserPrint.print(gPrintSettings, null);
334                 this.error.sdump('D_PRINT','Should be printing\n');
335             } else {
336                 this.error.sdump('D_ERROR','Should not be printing\n');
337             }
338         } catch (e) {
339             //alert('Probably not printing: ' + e);
340             // Pressing cancel is expressed as an NS_ERROR_ABORT return value,
341             // causing an exception to be thrown which we catch here.
342             // Unfortunately this will also consume helpful failures
343             this.error.sdump('D_ERROR','_NSPrint_webBrowserPrint PRINT EXCEPTION: ' + js2JSON(e) + '\n');
344         }
345     },
346
347     'GetPrintSettings' : function() {
348         try {
349             //alert('entering GetPrintSettings');
350             netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
351             var pref = Components.classes["@mozilla.org/preferences-service;1"]
352                 .getService(Components.interfaces.nsIPrefBranch);
353             //alert('pref = ' + pref);
354             if (pref) {
355                 this.gPrintSettingsAreGlobal = pref.getBoolPref("print.use_global_printsettings", false);
356                 this.gSavePrintSettings = pref.getBoolPref("print.save_print_settings", false);
357                 //alert('gPrintSettingsAreGlobal = ' + this.gPrintSettingsAreGlobal + '  gSavePrintSettings = ' + this.gSavePrintSettings);
358             }
359  
360             var printService = Components.classes["@mozilla.org/gfx/printsettings-service;1"]
361                 .getService(Components.interfaces.nsIPrintSettingsService);
362             if (this.gPrintSettingsAreGlobal) {
363                 this.gPrintSettings = printService.globalPrintSettings;
364                 //alert('called setPrinterDefaultsForSelectedPrinter');
365                 this.setPrinterDefaultsForSelectedPrinter(printService);
366             } else {
367                 this.gPrintSettings = printService.newPrintSettings;
368                 //alert('used printService.newPrintSettings');
369             }
370         } catch (e) {
371             this.error.sdump('D_ERROR',"GetPrintSettings() "+e+"\n");
372             //alert("GetPrintSettings() "+e+"\n");
373         }
374  
375         return this.gPrintSettings;
376     },
377
378     'setPrinterDefaultsForSelectedPrinter' : function (aPrintService) {
379         try {
380             netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
381             if (this.gPrintSettings.printerName == "") {
382                 this.gPrintSettings.printerName = aPrintService.defaultPrinterName;
383                 //alert('used .defaultPrinterName');
384             }
385             //alert('printerName = ' + this.gPrintSettings.printerName);
386      
387             // First get any defaults from the printer 
388             aPrintService.initPrintSettingsFromPrinter(this.gPrintSettings.printerName, this.gPrintSettings);
389      
390             // now augment them with any values from last time
391             aPrintService.initPrintSettingsFromPrefs(this.gPrintSettings, true, this.gPrintSettings.kInitSaveAll);
392
393             // now augment from our own saved settings if they exist
394             this.load_settings();
395
396         } catch(E) {
397             this.error.sdump('D_ERROR',"setPrinterDefaultsForSelectedPrinter() "+E+"\n");
398         }
399     },
400
401     'page_settings' : function() {
402         try {
403             netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
404             this.GetPrintSettings();
405             var PO = Components.classes["@mozilla.org/gfx/printsettings-service;1"].getService(Components.interfaces.nsIPrintOptions);
406             PO.ShowPrintSetupDialog(this.gPrintSettings);
407         } catch(E) {
408             this.error.standard_unexpected_error_alert("page_settings()",E);
409         }
410     },
411
412     'load_settings' : function() {
413         try {
414             netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
415             var file = new util.file('gPrintSettings');
416             if (file._file.exists()) {
417                 temp = file.get_object(); file.close();
418                 for (var i in temp) {
419                     this.gPrintSettings[i] = temp[i];
420                 }
421             } else {
422                 this.gPrintSettings.marginTop = 0;
423                 this.gPrintSettings.marginLeft = 0;
424                 this.gPrintSettings.marginBottom = 0;
425                 this.gPrintSettings.marginRight = 0;
426                 this.gPrintSettings.headerStrLeft = '';
427                 this.gPrintSettings.headerStrCenter = '';
428                 this.gPrintSettings.headerStrRight = '';
429                 this.gPrintSettings.footerStrLeft = '';
430                 this.gPrintSettings.footerStrCenter = '';
431                 this.gPrintSettings.footerStrRight = '';
432             }
433         } catch(E) {
434             this.error.standard_unexpected_error_alert("load_settings()",E);
435         }
436     },
437
438     'save_settings' : function() {
439         try {
440             var obj = this;
441             netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
442             var file = new util.file('gPrintSettings');
443             if (typeof obj.gPrintSettings == 'undefined') obj.GetPrintSettings();
444             if (obj.gPrintSettings) file.set_object(obj.gPrintSettings); 
445             file.close();
446         } catch(E) {
447             this.error.standard_unexpected_error_alert("save_settings()",E);
448         }
449     }
450 }
451
452 dump('exiting util/print.js\n');