]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/parts/misc_util.tt2
LP#1744385: Parallelize highlight gathering with XML feed retrieval
[working/Evergreen.git] / Open-ILS / src / templates / opac / parts / misc_util.tt2
1 [%- 
2     # Support multiscript records via alternate graphic 880 fields
3     # get_graphic_880s(target_field='100')
4     # See "Model A" in http://www.loc.gov/marc/bibliographic/ecbdmulti.html
5     # and $6 description in http://www.loc.gov/marc/bibliographic/ecbdcntf.html
6     MACRO get_graphic_880s BLOCK;
7         FOR node IN xml.findnodes('//*[@tag="' _ target_field _ '"]');
8             raw_vals = [];
9             core_val = '';
10             FOR subnode IN node.findnodes('./*[not(contains("e w 0 4 5 6 7 8 9", @code))]');
11                 raw_vals.push(subnode.textContent());
12             END;
13             core_val = raw_vals.join(" ");
14             raw_vals = [];
15
16             linked_fields = [];
17             FOR sub IN node.findnodes('./*[@code="6"]');
18                 linked_fields.push(sub.textContent);
19             END;
20             graphics = [];
21             get_linked_880s;
22             graphic_880s.push({
23                 primary => {"occur" => occurrence, "value" => core_val},
24                 graphic => graphics
25             });
26         END;
27     END;
28
29     MACRO get_linked_880s BLOCK;
30         FOR link_field IN linked_fields;
31             target = target_field _ link_field.substr(3);
32             # Get the linked 880 value
33             raw_val = '';
34             dir = '';
35             occurrence = '';
36             script = '';
37             FOR node IN xml.findnodes('//*[@tag="880"]');
38                 # Operate only on the target linked fields
39                 FOR linknode IN node.findnodes('./*[@code="6"]');
40                     lf = linknode.textContent();
41                     IF lf.substr(0, target.length) == target;
42                         occurrence = lf.substr(4, 2);
43                         rawscript = lf.substr(7, 2);
44                         SWITCH rawscript;
45                         CASE '(3';
46                             script = 'Arabic';
47                         CASE '(B';
48                             script = 'Latin';
49                         CASE '$1';
50                             script = 'CJK';
51                         CASE '(N';
52                             script = 'Cyrillic';
53                         CASE '(S';
54                             script = 'Greek';
55                         CASE '(2';
56                             script = 'Hebrew';
57                         END;
58
59                         rawdir = lf.substr(9, 1);
60                         SWITCH rawdir;
61                         CASE 'r';
62                             dir = 'rtl';
63                         END;
64
65                         raw_vals = [];
66                         FOR subnode IN node.findnodes('./*[not(contains("w 0 5 6 8 9", @code))]');
67                             raw_vals.push(subnode.textContent());
68                         END;
69                         raw_val = raw_vals.join(" ");
70                     END;
71                 END;
72             END;
73             graphics.push({
74                 occur => occurrence,
75                 value => raw_val,
76                 script => script,
77                 dir => dir
78             });
79         END;
80     END;
81
82     BLOCK get_ccvm_icon;
83         ctx.media_prefix _ '/images/format_icons/' _ ccvm.ctype _ '/' _ ccvm.code _ '.png' _ ctx.cache_key;
84     END;
85
86     # Extract MARC fields from XML
87     #   get_marc_attrs( args = { marc_xml => doc } )
88     BLOCK get_marc_attrs;
89         USE Dumper;
90         xml = args.marc_xml;
91
92         args.bibid = [];
93         FOR bibid IN xml.findnodes('//*[@tag="901"]/*[@code="c"]');
94             args.bibid.push(bibid.textContent);
95         END;
96
97         args.df_bib_list = args.bibid;
98         args.bibid = args.bibid.0; 
99
100         IF args.mr_constituent_ids.size && !args.df_bib_list.size;
101             args.df_bib_list = args.mr_constituent_ids;
102         END;
103
104
105         # Gather display field data for this record and map it
106         # to a display field map.  Hopefully, one day, this can
107         # replace the XPath below entirely.
108
109         args.display_fields = {};
110         args.hl = {};
111         IF !CGI.param('no_highlight') && !search.no_highlight;
112
113             args.display_field_list = ctx.fetch_display_fields(args.df_bib_list.list);
114
115             junk = ctx.timelog('Mapping highlighted display fields for bib(s) ' _ args.df_bib_list.list.join(', ')); 
116             FOR df IN args.display_field_list;
117                 df_map = ctx.search_cdfm('field', df.field).0;
118                 df_name = df_map.name();
119                 IF df_map.multi() == 't';
120                     IF NOT args.hl_display_fields.$df_name;
121                         args.hl_display_fields.$df_name = [];
122                         args.hl.$df_name = [];
123                     END;
124                     args.hl_display_fields.$df_name.push(df);
125                     args.hl.$df_name.push(df.highlight || df.value);
126                 ELSIF !args.hl_display_fields.$df_name.defined;
127                     args.hl_display_fields.$df_name = df;
128                     args.hl.$df_name = df.highlight || df.value;
129                 END;
130             END;
131             junk = ctx.timelog('Finished mapping highlighted display fields for bib(s) ' _ args.df_bib_list.list.join(', ')); 
132         END;
133
134         # Map item types to schema.org types; impedance mismatch :(
135         args.schema.itemtype = {};
136         schema_typemap = {};
137
138         schema_typemap.bluray = 'Movie'; # Movie could also be TVSeries
139         schema_typemap.book = 'Book';
140         schema_typemap.braille = 'Book';
141         schema_typemap.casaudiobook = 'Book AudioObject';
142         schema_typemap.casmusic = 'MusicAlbum';
143         schema_typemap.cdaudiobook = 'Book AudioObject';
144         schema_typemap.cdmusic = 'MusicAlbum';
145         schema_typemap.dvd = 'Movie';
146         schema_typemap.eaudio = 'AudioObject';
147         schema_typemap.ebook = 'Book';
148         # schema_typemap.equip = '';
149         schema_typemap.evideo = 'Movie';
150         # schema_typemap.kit = '';
151         schema_typemap.lpbook = 'Book';
152         schema_typemap.map = 'Map';
153         # schema_typemap.microform = '';
154         schema_typemap.music = 'MusicAlbum';
155         schema_typemap.phonomusic = 'MusicAlbum';
156         # schema_typemap.phonospoken = '';
157         # schema_typemap.picture = ''; Painting or Photograph?
158         schema_typemap.score = 'Book'; # schema.org has no generic Music type
159         schema_typemap.serial = 'Periodical';
160         schema_typemap.software = 'SoftwareApplication';
161         schema_typemap.vhs = 'Movie';
162
163         schema_typemap.a = 'Book';
164         schema_typemap.e = 'Map';
165         schema_typemap.j = 'MusicAlbum';
166
167         # Hard-coded to match defaults in config.copy_status for all OPAC-visible statuses
168         schema_copy_status = {};
169         schema_copy_status.0 = '<link property="availability" href="http://schema.org/InStock" />'; # Available
170         schema_copy_status.1 = '<link property="availability" href="http://schema.org/OutOfStock" />'; # Checked out
171         schema_copy_status.5 = '<link property="availability" href="http://schema.org/PreOrder" />'; # In process
172         schema_copy_status.6 = '<link property="availability" href="http://schema.org/PreOrder" />'; # In transit
173         schema_copy_status.7 = '<link property="availability" href="http://schema.org/InStock" />'; # Reshelving
174         schema_copy_status.8 = '<link property="availability" href="http://schema.org/OutOfStock" />'; # On holds shelf
175         schema_copy_status.9 = '<link property="availability" href="http://schema.org/PreOrder" />'; # On order
176         schema_copy_status.12 = '<link property="availability" href="http://schema.org/InStoreOnly" />'; # Reserves
177
178         args.isbns = [];
179         FOR isbn IN xml.findnodes('//*[@tag="020"]/*[@code="a"]');
180             args.isbns.push(isbn.textContent);
181         END;
182
183         # UPCs can be identified either by ind1="1" or subfield 2 of "upc"
184         args.upcs = [];
185         FOR upc IN xml.findnodes('//*[@tag="024" and @ind="1"]/*[@code="a"]');
186             args.upcs.push(upc.textContent);
187         END;
188         FOR upcfield IN xml.findnodes('//*[@tag="024"]/*[@code="2" and text()="upc"]');
189             my_parent = upcfield.parentNode();
190             FOR upc IN my_parent.findnodes('./*[@code="a"]');
191                 args.upcs.push(upc.textContent);
192             END;
193         END;
194         args.upc = args.upcs.0; # use first UPC as the default
195
196         # These are URIs that link out to related works for linked data purposes,
197         # such as OCLC Work Entities like http://worldcat.org/entity/work/id/415491
198
199         # We differentiate between http://schema.org/sameAs relations, which
200         # are roughly the same as the work we're describing here, and
201         # http://schema.org/exampleOfWork which point to a broader work, of which
202         # this is a more specific edition or manifestation.
203         args.links.sameAs = [];
204         args.links.exampleOfWork = [];
205         FOR link_node IN xml.findnodes('//*[@tag="024"]/*[@code="2" and text()="uri"]');
206             my_parent = link_node.parentNode();
207             FOR link IN my_parent.findnodes('./*[@code="a"]');
208                 link_uri = link.textContent | trim;
209                 IF link_uri.search('worldcat.org/entity/work');
210                     args.links.exampleOfWork.push(link_uri);
211                 ELSE;
212                     args.links.sameAs.push(link_uri);
213                 END;
214             END;
215         END;
216         FOR lccn IN xml.findnodes('//*[@tag="010"]/*[@code="a"]');
217             lccn_num = lccn.textContent | trim;
218             args.links.sameAs.push('http://lccn.loc.gov/' _ lccn_num);
219         END;
220         FOR oclcnum IN xml.findnodes('//*[@tag="035"]/*[@code="a"]');
221             oclcnum = oclcnum.textContent | trim;
222             NEXT UNLESS oclcnum.search('^\(OCoLC\)');
223             oclcnum = oclcnum | remove('\(OCoLC\)');
224             # These prefixes are often included in the 035, even though they should not be
225             oclcnum = oclcnum | remove('ocm');
226             oclcnum = oclcnum | remove('ocn');
227             oclcnum = oclcnum | remove('on') | trim;
228             args.links.sameAs.push('http://www.worldcat.org/oclc/' _ oclcnum);
229         END;
230         args.links.sameAs = args.links.sameAs.unique;
231
232         args.issns = [];
233         FOR sub IN xml.findnodes('//*[@tag="022"]/*[@code="a"]');
234             args.issns.push(sub.textContent);
235         END;
236         args.issn = (args.issns.size) ? args.issn.0 : '';
237
238         graphic_880s = [];
239         get_graphic_880s(target_field='100');
240         get_graphic_880s(target_field='110');
241         get_graphic_880s(target_field='111');
242         args.graphic_authors = graphic_880s;
243         args.authors = [];
244         FOR author IN args.graphic_authors;
245             args.authors.push(author.primary.value);
246         END;
247         args.author = (args.authors.size) ? args.authors.0 : '';
248
249         # Include subfields 'abnp' to generate a more comprehensive title display in search results
250         titresults = xml.findnodes('//*[@tag="245"]/*[@code="a" or @code="b" or @code="n" or @code="p"]');
251         titresults_content = [];
252             FOR sub IN titresults; titresults_content.push(sub.textContent); END;
253
254         args.title = titresults_content.join(" ");
255         # Avoid ugly trailing syntax on brief titles
256         args.title = args.title | replace('[:;/]$', '');
257
258         graphic_880s = [];
259         get_graphic_880s(target_field='245');
260         args.graphic_titles = graphic_880s;
261         args.titles = [];
262         FOR title IN args.graphic_titles;
263             args.titles.push(title.primary.value);
264         END;
265         args.title_extended = (args.titles.size) ? args.titles.0 : '';
266
267         # Create a version of the title designed for sorted displays.
268         args.sort_title = args.title | upper;
269
270         # If the title has a "non-filing chaaracters" 
271         # (to logically remove leading "The " for example)
272         # chop the title. Otherwise, chop until the first alphanumeric.
273         # BTW: Template Toolkit folds 1-element arrays to scalars!
274         title_node = xml.findnodes('//*[@tag="245"]');
275
276         args.nonfiling_characters = title_node.findvalue('@ind2');
277       
278         IF (args.nonfiling_characters > 0);
279              args.sort_title = args.sort_title.substr(args.nonfiling_characters); 
280         ELSE;
281              args.sort_title = args.sort_title.replace('^[^A-Z0-9]*','');
282         END;
283       
284         args.pubplaces = [];
285         pubplace_hunt = xml.findnodes('//*[@tag="260"]/*[@code="a"]') ||
286             xml.findnodes('//*[@tag="264" and @ind2="1"]/*[@code="a"]');
287         FOR sub IN pubplace_hunt;
288             args.pubplaces.push(sub.textContent);
289         END;
290         args.pubplace = (args.pubplaces.size) ? args.pubplaces.0 : '';
291
292         args.publishers = [];
293         publishers_hunt = xml.findnodes('//*[@tag="260"]/*[@code="b"]') ||
294             xml.findnodes('//*[@tag="264" and @ind2="1"]/*[@code="b"]');
295         FOR sub IN publishers_hunt;
296             args.publishers.push(sub.textContent);
297         END;
298         args.publisher = (args.publishers.size) ? args.publishers.0 : '';
299
300         args.pubdates = [];
301         pubdates_hunt = xml.findnodes('//*[@tag="260"]/*[@code="c"]') || 
302             xml.findnodes('//*[@tag="264" and @ind2="1"]/*[@code="c"]');
303         FOR sub IN pubdates_hunt;
304             args.pubdates.push(sub.textContent);
305         END;
306         args.pubdate = (args.pubdates.size) ? args.pubdates.0 : '';
307
308         # Get RDA Copyright Info.
309         args.copyrights = [];
310         FOR sub IN xml.findnodes('//*[@tag="264" and @ind2="4"]/*[@code="c"]');
311             args.copyrights.push(sub.textContent);
312         END;
313         args.copyright = (args.copyrights.size) ? args.copyrights.0 : '';
314
315         IF args.copyright.length >= 4;
316             args.copyrightYear = args.copyright.match('(\d{4})');
317             IF args.copyrightYear;
318                 args.copyrightYear = args.copyrightYear.0;
319             END;
320         END;
321
322         # Get the RDA Production info.
323         args.producers = [];
324         FOR sub IN xml.findnodes('//*[@tag="264" and @ind2="0"]/*[@code="b"]');
325             args.producers.push(sub.textContent);
326         END;
327         args.producer = (args.producers.size) ? args.producers.0 : '';
328
329         args.prodplaces = [];
330         FOR sub IN xml.findnodes('//*[@tag="264" and @ind2="0"]/*[@code="a"]');
331             args.prodplaces.push(sub.textContent);
332         END;
333         args.prodplace = (args.prodplaces.size) ? args.prodplaces.0 : '';
334
335         args.proddates = [];
336         FOR sub IN xml.findnodes('//*[@tag="264" and @ind2="0"]/*[@code="c"]');
337             args.proddates.push(sub.textContent);
338         END;
339         args.proddate = (args.proddates.size) ? args.proddates.0 : '';
340
341         # Get the RDA Distribution args.
342         args.distributors = [];
343         FOR sub IN xml.findnodes('//*[@tag="264" and @ind2="2"]/*[@code="b"]');
344             args.distributors.push(sub.textContent);
345         END;
346         args.distributor = (args.distributors.size) ? args.distributors.0 : '';
347
348         args.distplaces = [];
349         FOR sub IN xml.findnodes('//*[@tag="264" and @ind2="2"]/*[@code="a"]');
350             args.distplaces.push(sub.textContent);
351         END;
352         args.distplace = (args.distplaces.size) ? args.distplaces.0 : '';
353
354         args.distdates = [];
355         FOR sub IN xml.findnodes('//*[@tag="264" and @ind2="2"]/*[@code="c"]');
356             args.distdates.push(sub.textContent);
357         END;
358         args.distdate = (args.distdates.size) ? args.distdates.0 : '';
359
360         # Get the RDA Manufacture args.
361         args.manufacturers = [];
362         FOR sub IN xml.findnodes('//*[@tag="264" and @ind2="3"]/*[@code="b"]');
363             args.manufacturers.push(sub.textContent);
364         END;
365         args.manufacturer = (args.manufacturers.size) ? args.manufacturers.0 : '';
366
367         args.manplaces = [];
368         FOR sub IN xml.findnodes('//*[@tag="264" and @ind2="3"]/*[@code="a"]');
369             args.manplaces.push(sub.textContent);
370         END;
371         args.manplace = (args.manplaces.size) ? args.manplaces.0 : '';
372
373         args.mandates = [];
374         FOR sub IN xml.findnodes('//*[@tag="264" and @ind2="3"]/*[@code="c"]');
375             args.mandates.push(sub.textContent);
376         END;
377         args.mandate = (args.mandates.size) ? args.mandates.0 : '';
378
379         # RDA adds 264 to the pubinfo 880 consideration mix
380         graphic_880s = [];
381         get_graphic_880s(target_field='260');
382         get_graphic_880s(target_field='264');
383         args.graphic_pubinfos = graphic_880s;
384         args.pubinfos = [];
385         FOR pubinfo IN args.graphic_pubinfos;
386             args.pubinfos.push(pubinfo.primary.value);
387         END;
388         args.pubinfo = (args.pubinfos.size) ? args.pubinfos.0 : '';
389
390         args.summaries = [];
391         FOR sub IN xml.findnodes('//*[@tag="520"]/*[@code="a"]');
392             args.summaries.push(sub.textContent);
393         END;
394         args.summary = (args.summaries.size) ? args.summaries.0 : '';
395
396         # 250 gets pride of place for edition statement, and is the
397         # only logical choice for 880 graphic fields
398         graphic_880s = [];
399         get_graphic_880s(target_field='250');
400         args.graphic_editions = graphic_880s;
401         args.editions = [];
402         FOR edition IN args.graphic_editions;
403             args.editions.push(edition.primary.value);
404         END;
405
406         ed_hunt = xml.findnodes('//*[@tag="250"]/*[@code="a"]');
407         FOR sub IN ed_hunt;
408             args.editions.push(sub.textContent);
409         END;
410         args.edition = (args.editions.size) ? args.editions.0 : '';
411
412         phys_content = [];
413         FOR sub IN xml.findnodes(
414             '//*[@tag="300"]/*[@code="a" or @code="b" or @code="c" or @code="e"]'
415         );
416             phys_content.push(sub.textContent);
417         END;
418         args.phys_desc = phys_content.join(" ");
419
420         graphic_880s = [];
421         get_graphic_880s(target_field='505');
422         args.graphic_contents = graphic_880s;
423         FOR content IN args.graphic_contents;
424             args.contents.push(content.primary.value);
425         END;
426         args.content = (args.contents.size) ? args.contents.0 : '';
427
428         # Maintain contents_list in case any custom use was made of it
429         args.contents_list = [];
430         FOR sub IN xml.findnodes('//*[@tag="505"]');
431             args.contents_list.push(sub.textContent);
432         END;
433
434         # MARC Callnumber
435         args.marc_cns = [];
436         FOR sub IN xml.findnodes('//*[@tag="092" or @tag="099"]/*');
437             args.marc_cns.push(sub.textContent);
438         END;
439         args.marc_cn = (args.marc_cns.size ) ? args.marc_cns.0 : '';
440             
441
442         # clean up the ISBN
443         args.isbn_clean = args.isbns.0.replace('\ .*', '');
444         FOR isbn IN args.isbns;
445             clean_isbn = isbn.replace('\ .*', '');
446             clean_isbn = clean_isbn.replace('-', '');
447             IF clean_isbn.length == 13;
448                 args.gtin13 = clean_isbn;
449                 LAST;
450             END;
451         END;
452
453         IF ebook_api.overdrive.enabled == 'true';
454             FOR marc037 IN xml.findnodes('//*[@tag="037"]');
455                 marc037_id = marc037.findnodes('./*[@code="a"]').textContent;
456                 marc037_source = marc037.findnodes('./*[@code="b"]').textContent;
457                 IF marc037_source.match('OverDrive') AND marc037_id;
458                     args.overdrive_id = marc037_id;
459                     LAST;
460                 END;
461             END;
462         END;
463
464         # Extract the 856 URLs that are not otherwise represented by asset.uri's
465         args.online_res = [];
466         FOR node IN xml.findnodes('//*[@tag="856" and @ind1="4" and (@ind2="0" or @ind2="1")]');
467             IF node.findnodes('./*[@code="9" or @code="w" or @code="n"]'); NEXT; END; # asset.uri's
468             label = node.findnodes('./*[@code="y"]');
469             notes = node.findnodes('./*[@code="z" or @code="3"]');
470             FOR href IN node.findnodes('./*[@code="u"]');
471                 NEXT UNLESS href;
472                 # it's possible for multiple $u's to exist within 1 856 tag.
473                 # in that case, honor the label/notes data for the first $u, but
474                 # leave any subsequent $u's as unadorned href's. 
475                 # use href/link/note keys to be consistent with args.uri's
476                 args.online_res.push({
477                     href => href.textContent, 
478                     link => (loop.first AND label) ? label.textContent : href.textContent,
479                     note => (loop.first) ? notes.textContent : ''
480                 });
481             END;
482         END;
483  
484         args.holdings = [];
485         args.uris = [];
486         args.issns = [];
487         args.resolver_isbns = [];
488         args.resolver_issns = [];
489
490         # we use $9 of ISBN and ISSN as a flag for e-version
491         FOR resolver_isbn IN xml.findnodes('//*[@tag="020"]/*[@code="9"]');
492             IF resolver_isbn.textContent == "SFX" || resolver_isbn.textContent == "CUFTS";
493                 my_parent = resolver_isbn.parentNode();
494                 FOR resolver_isbn_val IN my_parent.findnodes('./*[@code="a"]');
495                     args.resolver_isbns.push(
496                         resolver_isbn_val.textContent.replace('-', '').replace('\ .*', '')
497                     );
498                 END;
499             END;
500         END;
501
502         FOR resolver_issn IN xml.findnodes('//*[@tag="022"]/*[@code="9"]');
503             IF resolver_issn.textContent == "SFX" || resolver_issn.textContent == "CUFTS";
504                 my_parent = resolver_issn.parentNode();
505                 FOR resolver_issn_val IN my_parent.findnodes('./*[@code="a"]');
506                     args.resolver_issns.push(
507                         resolver_issn_val.textContent.replace('[^\d\-X]', '')
508                     );
509                 END;
510             END;
511         END;
512
513         # now snag all issns 
514         FOR rawissn IN xml.findnodes('//*[@tag="022"]/*[@code="a"]');
515             args.issns.push(
516                 rawissn.textContent.replace('[^\d\-X]', '')
517             );
518         END;
519
520         ou_hiding_disabled = ctx.org_hiding_disabled();
521
522         # explicitly grabbing the first bib_source node, though there should be only one anyway
523         bib_source = xml.findnodes('//*[local-name()="bib_source"][1]');
524         args.bib_source.id = bib_source.getAttribute('ident');
525         args.bib_source.source = bib_source.textContent;
526
527         FOR volume IN xml.findnodes('//*[local-name()="volumes"]/*[local-name()="volume"]');
528
529             # Check volume visibility - could push this into XPath
530             vol.label = volume.getAttribute('label');
531
532             # Prepend prefix, if any
533             prefix = volume.findnodes('./*[local-name()="call_number_prefix"][@ident!="-1"]');
534             IF prefix.getAttribute('label') != '';
535                 vol.label = prefix.getAttribute('label') _ " " _ vol.label;
536             END;
537
538             # Append prefix, if any
539             suffix = volume.findnodes('./*[local-name()="call_number_suffix"][@ident!="-1"]');
540             IF suffix.getAttribute('label') != '';
541                 vol.label = vol.label _ " " _ suffix.getAttribute('label');
542             END;
543
544             vol.id = volume.getAttribute('id');
545             NEXT IF volume.getAttribute('opac_visible') == 'false';
546             NEXT IF volume.getAttribute('deleted') == 'true';
547
548             IF vol.label == '##URI##';
549                 FOR uri IN volume.findnodes('./*[local-name()="uris"]/*[local-name()="uri"]');
550                     res = {};
551                     res.href = uri.getAttribute('href');
552                     res.link = uri.getAttribute('label');
553                     res.note = uri.getAttribute('use_restriction');
554                     # Avoid displaying the href as the link text if we can display the note instead
555                     IF res.link == res.href AND res.note;
556                         res.link = res.note;
557                         res.note = '';
558                     END;
559                     args.uris.push(res);
560
561                     IF ebook_api.ebook_test.enabled == 'true';
562                         IF !args.ebook_test_id;
563                             FOR base_uri IN ebook_api.ebook_test.base_uris;
564                                 IF res.href.match(base_uri);
565                                     args.ebook_test_id = res.href.remove(base_uri);
566                                     LAST;
567                                 END;
568                             END;
569                         END;
570                     END;
571
572                     IF ebook_api.oneclickdigital.enabled == 'true';
573                         # A record might conceivably have multiple OneClickdigital URIs,
574                         # but we use (the same) ISBN as the ebook ID in each case.
575                         IF !args.oneclickdigital_id;
576                             FOR base_uri IN ebook_api.oneclickdigital.base_uris;
577                                 IF res.href.match(base_uri);
578                                     # found a OneClickdigital URI, let's grab our ID and move on
579                                     args.oneclickdigital_id = clean_isbn;
580                                     LAST;
581                                 END;
582                             END;
583                         END;
584                     END;
585
586                     IF ebook_api.overdrive.enabled == 'true';
587                         # Ideally we already have an OverDrive record ID from MARC 037 (see above).
588                         # But for older records, it will be embedded in the URI in MARC 856.
589                         IF !args.overdrive_id;
590                             FOR base_uri IN ebook_api.overdrive.base_uris;
591                                 IF res.href.match(base_uri);
592                                     args.overdrive_id = res.href.remove('^.*/ContentDetails.htm\?ID=');
593                                     LAST;
594                                 END;
595                             END;
596                         END;
597                     END;
598                 END;
599
600                 NEXT;
601             ELSE;
602                 copies = volume.findnodes('./*[local-name()="copies"]/*[local-name()="copy"]');
603                 FOR copy IN copies;
604                     parts = copy.findnodes('./*[local-name()="monograph_parts"]/*[local-name()="monograph_part"]');
605                     part_label = '';
606                     FOREACH part IN parts;
607                         part_label = part.getAttribute('label');
608                         LAST IF part_label != '';
609                     END;
610                     # Check copy visibility
611                     cp.deleted = copy.getAttribute('deleted');    
612                     cp.visible = copy.getAttribute('opac_visible');
613                     NEXT IF (cp.deleted == 'true' OR cp.visible == 'false');
614
615                     # Iterate through all of the children to determine visibility
616                     FOR node IN cp.childNodes;
617                         NEXT IF cp.visible == 'false';
618                         vis = node.getAttribute('opac_visible');
619                         del = node.getAttribute('deleted');
620                         IF vis == 'false' or del == 'true';
621                             cp.visible = 'false';
622                         END;
623                     END;
624
625                     NEXT IF cp.visible == 'false';
626                     
627                     loc = copy.findnodes('./*[local-name()="location"]');
628                     NEXT IF loc.getAttribute('opac_visible') == 'false';
629
630                     circlib = copy.findnodes('./*[local-name()="circlib"]');
631                     NEXT IF circlib.getAttribute('opac_visible') == 'false';
632
633                     status = copy.findnodes('./*[local-name()="status"]');
634                     NEXT IF status.getAttribute('opac_visible') == 'false';
635
636                     # extract the circ_lib id from the circ_lib node
637                     circ_lib = copy.findnodes('./*[local-name()="circ_lib"]');
638                     circ_lib_id = circ_lib.getAttribute('id').replace('.*/', '');
639
640                     UNLESS ou_hiding_disabled;
641                         NEXT UNLESS ctx.org_within_hiding_scope(circ_lib_id);
642                     END;
643
644                     holding = {
645                         circ_lib => circ_lib_id,
646                         label => vol.label,
647                         part_label => part_label,
648                         location => loc.textContent,
649                         library => circlib.textContent,
650                         status => status.textContent,
651                         status_code => status.getAttribute('ident'),
652                         barcode => copy.getAttribute('barcode'),
653                         owner => volume.getAttribute('lib')
654                     };
655                     args.holdings.push(holding);
656                     part_label = '';
657                 END;
658             END;
659         END;
660
661         # Extract the copy count summary
662         count_type = (ctx.is_staff) ? 'staff' : 'public';
663
664         # Consortial copy count summary first
665         xpath = '//*[local-name()="counts"]/*[local-name()="count"][@type="' _ count_type _ '"]';
666         args.copy_counts = {};
667         FOR node IN xml.findnodes(xpath);
668             FOR attr IN ['count', 'available', 'unshadow', 'transcendant', 'org_unit']; 
669                 depth = node.getAttribute('depth');
670                 count_org_unit = node.getAttribute('org_unit');
671                 args.copy_counts.$depth.$attr = node.getAttribute(attr);
672                 args.org_copy_counts.$count_org_unit.$attr = node.getAttribute(attr);
673             END;
674         END;
675
676         # Get preferred library copy count
677         args.plib_copy_counts = {};
678         count_type = 'pref_lib';
679         xpath = '//*[local-name()="counts"]/*[local-name()="count"][@type="' _ count_type _ '"]';
680         FOR node IN xml.findnodes(xpath);
681             FOR attr IN ['count', 'available', 'unshadow', 'transcendant', 'org_unit']; 
682                 depth = node.getAttribute('depth');
683                 args.plib_copy_counts.$depth.$attr = node.getAttribute(attr);
684             END;
685         END;
686
687         mmr_unique_bib = [];
688         # "mattype" == "custom marc format specifier"
689         icon_style = ctx.get_cgf('opac.icon_attr').value || 'item_type';
690         formats_xpath = '//*[local-name()="attributes"]/*[local-name()="field"][@name="' _ icon_style _ '"]';
691
692         args.all_formats = [];
693         FOR node IN xml.findnodes(formats_xpath);
694             IF node AND node.textContent;
695                 ccvm = ctx.get_ccvm(node.getAttribute('cvmid'));
696                 NEXT IF ccvm.opac_visible == 'f';
697
698                 format = {};
699                 this_icon_source = node.getAttribute('source_list');
700                 including = 'F';
701                 # Just display everything if we don't have the data
702                 IF NOT args.mr_constituent_ids OR NOT this_icon_source;
703                     including = 'T';
704                 # We have an array of search-included bib IDs and we have the bib ID that this icon belongs to
705                 ELSE;
706                     FOR mr_constituent_id IN args.mr_constituent_ids;
707                         IF this_icon_source.split(',').grep('^' _ mr_constituent_id _ '$' ).size;
708                             # This bib appears to be in the array of filtered bibs
709                             including = 'T';
710                         END;
711                     END;
712                 END;
713                 IF including == 'T';
714                     type = ccvm.code.remove('-'); # blu-ray to bluray
715                     format.label = ccvm.search_label || ccvm.value;
716                     format.icon = PROCESS get_ccvm_icon ccvm=ccvm;
717                     format.itemtype = schema_typemap.$type || 'CreativeWork';
718                     format.search_format = ccvm.code;
719                     format.source_bibs = this_icon_source.split(',');
720                     FOR bib_source IN format.source_bibs;
721                         IF NOT mmr_unique_bib.grep(bib_source).size; mmr_unique_bib.push(bib_source); END;
722                     END;
723                     args.all_formats.push(format); # metarecords want all formats
724
725                     IF !args.format_label;
726                         # use the first format as the default
727                         args.format_label = format.label;
728                         args.schema.itemtype = format.itemtype;
729                         args.format_icon = format.icon;
730                     END;
731                 END;
732             END;
733         END;
734
735         formats_xpath = '//*[local-name()="attributes"]/*[local-name()="field"][@name="item_lang"]';
736         args.all_lang = [];
737         FOR node IN xml.findnodes(formats_xpath);
738             IF node AND node.textContent;
739                 ccvm = ctx.get_ccvm(node.getAttribute('cvmid'));
740                 NEXT IF ccvm.opac_visible == 'f';
741
742                 lang = {};
743                 this_source = node.getAttribute('source_list');
744                 including = 'F';
745                 # Just display everything if we don't have the data
746                 IF NOT args.mr_constituent_ids OR NOT this_source;
747                     including = 'T';
748                 # We have an array of search-included bib IDs and we have the bib ID that this lang belongs to
749                 ELSE;
750                     FOR mr_constituent_id IN args.mr_constituent_ids;
751                         IF this_source.split(',').grep('^' _ mr_constituent_id _ '$' ).size;
752                             # This bib appears to be in the array of filtered bibs
753                             including = 'T';
754                         END;
755                     END;
756                 END;
757                 IF including == 'T';
758                     lang.label = ccvm.search_label || ccvm.value;
759                     lang.itemtype = schema_typemap.$type || 'CreativeWork';
760                     lang.search_format = node.textContent;
761                     lang.source_bibs = this_source.split(',');
762                     FOR bib_source IN lang.source_bibs;
763                         IF NOT mmr_unique_bib.grep(bib_source).size; mmr_unique_bib.push(bib_source); END;
764                     END;
765
766                     args.all_lang.push(lang); # metarecords want all
767                 END;
768             END;
769         END;
770         args.mmr_unique_bib = mmr_unique_bib;
771
772         IF args.ebook_test_id;
773             args.ebook.ebook_id = args.ebook_test_id;
774             args.ebook.vendor = 'ebook_test';
775         ELSIF args.oneclickdigital_id;
776             args.ebook.ebook_id = args.oneclickdigital_id;
777             args.ebook.vendor = 'oneclickdigital';
778         ELSIF args.overdrive_id;
779             args.ebook.ebook_id = args.overdrive_id;
780             args.ebook.vendor = 'overdrive';
781         END;
782
783     END;
784
785     # Get the library or location group
786     # get_library()
787     # magically upgrades any use of 'loc' to 'locg', 
788     # which is a superset of 'loc'.
789     BLOCK get_library;
790         loc_name = 'locg';
791
792         # Location groups don't have shortnames, so they'll take priority
793         # (_org doesn't contain the group and breaks the selector).
794         loc_value = ctx.copy_location_group ? CGI.param(loc_name)
795                   : ctx.copy_location_group_org # resolved locg
796                     || CGI.param(loc_name) || CGI.param('loc') || ctx.search_ou;
797     END;
798
799 -%]