]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/javascript/backend/circ/circ_lib.js
added hold retrieval method for copies, needs more testing
[Evergreen.git] / Open-ILS / src / javascript / backend / circ / circ_lib.js
1 load_lib('catalog/record_type.js');
2 load_lib('circ/circ_groups.js');
3
4
5 try {
6         if( environment.copy ) {
7                 environment.copy.fetchHolds = function() {
8                         var key = scratchKey();
9                         environment.copy.__OILS_FUNC_fetch_hold(scratchPad(key));
10                         var val = getScratch(key);
11                         return (val) ? val : null;
12                 }
13         }
14 } catch(e) {}
15
16
17 /* ----------------------------------------------------------------------------- 
18         Collect all of the global variables
19         ----------------------------------------------------------------------------- */
20
21 /* the global result object.  Any data returned to the 
22         caller must be put into this object.  */
23 var result                              = environment.result = {};
24 result.event                    = 'SUCCESS';
25 result.events                   = [];
26 result.fatalEvents      = [];
27 result.infoEvents               = [];
28
29
30 /* Pull in any variables passed in from the calling process */
31 var copy                                        = environment.copy;
32 var volume                              = environment.volume;
33 var title                               = environment.title;
34 var recDescriptor               = environment.titleDescriptor;
35 var patron                              = environment.patron;
36 var patronItemsOut      = environment.patronItemsOut;
37 var patronOverdueCount  = environment.patronOverdueCount;
38 var patronFines         = environment.patronFines;
39 var isRenewal                   = environment.isRenewal;
40 var isPrecat                    = environment.isPrecat;
41
42
43
44 /* create some new vars based on the data we have wherever possible */
45 var patronProfile;
46 var copyStatus;
47 var marcXMLDoc;
48
49 if( patron && patron.profile ) 
50         patronProfile = patron.profile.name;
51 if( copy && copy.status ) 
52         copyStatus = copy.status.name;
53 if( title && title.marc )
54         marcXMLDoc = new XML(title.marc);
55
56
57
58
59 /* copy the group tree into some other useful data structures */
60 var groupTree           = environment.groupTree;
61 var groupList           = {};
62 var groupIDList = {};
63 flattenGroupTree(groupTree);
64
65
66
67
68
69
70 /* ----------------------------------------------------------------------------- 
71         Define all of the utility functions
72         ----------------------------------------------------------------------------- */
73
74
75
76 /* useful functions for creating wrappers around system functions */
77 var __scratchKey = 0;
78 var __SCRATCH = {};
79 function scratchKey()           { return '_' + __scratchKey++; };
80 function scratchPad(key)        { return '__SCRATCH.'+ key; }
81 function getScratch(key)        { return __SCRATCH[ key ]; }
82 function scratchClear()         { for( var o in __SCRATCH ) __SCRATCH[o] = null; }
83
84
85 /* note: returns false if the value is 'f' or 'F' ... */
86 function isTrue(d) {
87         if(     d && 
88                         d != "0" && 
89                         d != "f" &&
90                         d != "F" )
91                         return true;
92         return false;
93 }
94
95 /* Utility function for iterating over array */
96 function iterate( arr, callback ) {
97         for( var i = 0; i < arr.length; i++ ) 
98                 callback(arr[i]);
99 }
100
101
102 /**
103   * returns a list of items that when passed to the callback 
104   * 'func' returned true returns null if none were found
105   */
106 function grep( arr, func ) {
107         var results = [];
108         iterate( arr, 
109                 function(d) {
110                         if( func(d) ) 
111                                 results.push(d);
112                 }
113         );
114         if(results.length > 0)  
115                 return results;
116         return null;
117 }
118
119
120
121 function flattenGroupTree(node) {
122         if(!node) return null;
123         groupList[node.name] = node;
124         groupIDList[node.id] = node;
125         iterate( node.children,
126                 function(n) {
127                         flattenGroupTree(n);
128                 }
129         );
130 }
131
132
133
134 /**
135   * Returns true if 'child' is equal or descends from 'parent'
136   * @param parent The name of the parent group
137   * @param child The name of the child group
138   */
139 function isGroupDescendant( parent, child ) {
140         return __isGroupDescendant(
141                 groupList[parent],
142                 groupList[child]);
143 }
144
145
146
147 /**
148   * Returns true if 'child' is equal or descends from 'parent'
149   * @param parent The node of the parent group
150   * @param child The node of the child group
151   */
152 function __isGroupDescendant( parent, child ) {
153         if (parent.id == child.id) return true;
154         var node = child;
155         while( (node = groupIDList[node.parent]) ) {
156                 if( node.id == parent.id ) 
157                         return true;
158         }
159         return false;
160 }
161
162
163 function getMARCItemType() {
164
165         if(     copy &&
166                         copy.circ_as_type &&
167                         copy.circ_as_type != 'undef' )
168                 return copy.circ_as_type;
169         
170         return (marcXMLDoc) ? extractFixedField(marcXMLDoc, 'Type') : "";
171 }
172
173
174 function isOrgDescendent( parentName, childId ) {
175         var key = scratchKey();
176         __OILS_FUNC_isOrgDescendent(scratchPad(key), parentName, childId);
177         var val = getScratch(key);
178         if( val == '1' ) return true;
179         return false;
180 }
181         
182
183
184
185 /*
186 - at some point we should add a library of objects that map 
187 codes to names (item_form, item_type, etc.)
188 load_lib('item_form_map.js');
189 var form_name = item_form_map[env.record_descriptor.item_form];
190 */
191
192
193
194 /* logs a load of info */
195 function log_vars( prefix ) {
196         var str = prefix + ' : ';
197
198         if(patron) {
199                 str += ' Patron=' + patron.id;
200                 str += ', Patron Username='+ patron.usrname;
201                 str += ', Patron Profile Group='+ patronProfile;
202                 str += ', Patron Fines='        + patronFines;
203                 str += ', Patron OverdueCount=' + patronOverdueCount;
204                 str += ', Patron Items Out=' + patronItemsOut;
205
206                 try {
207                         str += ', Patron Barcode='      + patron.card.barcode;
208                         str += ', Patron Library='      + patron.home_ou.name;
209                 } catch(e) {}
210         }
211
212         if(copy)        {
213                 str += ', Copy=' + copy.id;
214                 str += ', Copy Barcode=' + copy.barcode;
215                 str += ', Copy status=' + copyStatus;
216
217                 try {
218                         str += ', Circ Lib=' + copy.circ_lib.shortname;
219                         str += ', Copy location=' + copy.location.name;
220                 } catch(e) {}
221         }
222
223         if(volume)                      str += ', Volume='      + volume.id;
224         if(title)                       str += ', Record='      + title.id;
225
226         if(recDescriptor)       {
227                 str += ', Record Descriptor=' + recDescriptor.id;
228                 str += ', Item Type='                   + recDescriptor.item_type;
229                 str += ', Item Form='                   + recDescriptor.item_form;
230                 str += ', Item Lang='                   + recDescriptor.item_lang;
231                 str += ', Item Audience='               + recDescriptor.audience;
232         }
233
234         str += ' Is Renewal: '  + ( (isTrue(isRenewal)) ? "yes" : "no" );
235
236         log_debug(str);
237 }
238
239