]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/parts/misc_util.tt2
Merge remote-tracking branch 'eg-working/user/dbs/lp894052-version-upgrade'
[working/Evergreen.git] / Open-ILS / src / templates / opac / parts / misc_util.tt2
1 [% 
2     # Extract MARC fields from XML
3     #   get_marc_attrs( { marc_xml => doc } )
4     BLOCK get_marc_attrs;
5         xml = args.marc_xml;
6         args.isbns = [];
7         FOR isbn IN xml.findnodes('//*[@tag="020"]/*[@code="a"]');
8             args.isbns.push(isbn.textContent);
9         END;
10         args.upcs = [];
11         FOR upc IN xml.findnodes('//*[@tag="024"]/*[@code="a"]');
12             args.upcs.push(upc.textContent);
13         END;
14         args.upc = args.upcs.0; # use first UPC as the default
15         args.issn = xml.findnodes('//*[@tag="022"]/*[@code="a"]').textContent;
16         args.title = xml.findnodes('//*[@tag="245"]/*[@code="a"]').textContent;
17         args.title_extended = xml.findnodes('//*[@tag="245"]').textContent;
18         args.author = xml.findnodes('//*[@tag="100"]/*[@code="a"]').textContent;
19         args.publisher = xml.findnodes('//*[@tag="260"]/*[@code="b"]').textContent;
20         args.pubdate = xml.findnodes('//*[@tag="260"]/*[@code="c"]').textContent;
21         args.summary = xml.findnodes('//*[@tag="520"]/*[@code="a"]').textContent;
22         args.edition = xml.findnodes('//*[@tag="250"]/*[@code="a"]').textContent ||
23             xml.findnodes('//*[@tag="534"]/*[@code="b"]').textContent ||
24             xml.findnodes('//*[@tag="775"]/*[@code="b"]').textContent;
25         phys = xml.findnodes(
26             '//*[@tag="300"]/*[@code="a" or @code="b" or @code="c" or @code="e"]'
27         );
28         phys_content = [];
29         FOR p IN phys; phys_content.push(p.textContent); END;
30         args.phys_desc = phys_content.join("");
31
32         args.contents = xml.findnodes('//*[@tag="505"]').textContent;
33
34         # MARC Callnumber
35         args.marc_cn = xml.findnodes('//*[@tag="092" or @tag="099"]/*').textContent;
36
37         # clean up the ISBN
38         args.isbn_clean = args.isbns.0.replace('\ .*', '');
39
40         # Extract the 856 URLs that are not otherwise represented by asset.uri's
41         args.online_res = [];
42         FOR node IN xml.findnodes('//*[@tag="856" and @ind1="4" and (@ind2="0" or @ind2="1")]');
43             IF node.findnodes('./*[@code="9" or @code="w" or @code="n"]'); NEXT; END; # asset.uri's
44             label = node.findnodes('./*[@code="y"]');
45             notes = node.findnodes('./*[@code="z" or @code="3"]');
46             FOR href IN node.findnodes('./*[@code="u"]');
47                 NEXT UNLESS href;
48                 # it's possible for multiple $u's to exist within 1 856 tag.
49                 # in that case, honor the label/notes data for the first $u, but
50                 # leave any subsequent $u's as unadorned href's. 
51                 # use href/link/note keys to be consistent with args.uri's
52                 args.online_res.push({
53                     href => href.textContent, 
54                     link => (loop.first AND label) ? label.textContent : href.textContent,
55                     note => (loop.first) ? notes.textContent : ''
56                 });
57             END;
58         END;
59  
60         args.holdings = [];
61         args.uris = [];
62         args.issns = [];
63
64         # we use $9 of ISBN and ISSN as a flag for e-version
65         sfx_isbn = xml.findnodes('//*[@tag="020"]/*[@code="9"]');
66         IF sfx_isbn;
67             IF sfx_isbn.textContent == "SFX";
68                 my_parent = sfx_isbn.parentNode();
69                 sfx_isbn = my_parent.findnodes('./*[@code="a"]').textContent;
70                 sfx_isbn = sfx_isbn.replace('-', '');
71                 args.resolver_isbn = sfx_isbn.replace('\ .*', '');
72             END;
73         END;
74
75         sfx_issn = xml.findnodes('//*[@tag="022"]/*[@code="9"]');
76         IF sfx_issn;
77             IF sfx_issn.textContent == "SFX";
78                 my_parent = sfx_issn.parentNode();
79                 sfx_issn = my_parent.findnodes('./*[@code="a"]');
80                 args.issns.push(
81                     sfx_issn.textContent.replace('[^\d\-X]', '')
82                 );
83             END;
84         END;
85
86         # we snag all issns if no SFX available
87         IF args.issns.size == 0;
88             FOR rawissn IN xml.findnodes('//*[@tag="022"]/*[@code="a"]');
89                 args.issns.push(
90                     rawissn.textContent.replace('[^\d\-X]', '')
91                 );
92             END;
93         END;
94
95         FOR volume IN xml.findnodes('//*[local-name()="volumes"]/*[local-name()="volume"]');
96
97             # Check volume visibility - could push this into XPath
98             vol.label = volume.getAttribute('label');
99
100             # Prepend prefix, if any
101             prefix = volume.findnodes('./*[local-name()="call_number_prefix"][@ident!="-1"]');
102             IF prefix.getAttribute('label') != '';
103                 vol.label = prefix.getAttribute('label') _ " " _ vol.label;
104             END;
105
106             # Append prefix, if any
107             suffix = volume.findnodes('./*[local-name()="call_number_suffix"][@ident!="-1"]');
108             IF suffix.getAttribute('label') != '';
109                 vol.label = vol.label _ " " _ suffix.getAttribute('label');
110             END;
111
112             vol.id = volume.getAttribute('id');
113             NEXT IF volume.getAttribute('opac_visible') == 'false';
114             NEXT IF volume.getAttribute('deleted') == 'true';
115
116             IF vol.label == '##URI##';
117                 FOR uri IN volume.findnodes('./*[local-name()="uris"]/*[local-name()="uri"]');
118                     res.href = uri.getAttribute('href');
119                     res.link = uri.getAttribute('label');
120                     res.note = uri.getAttribute('use_restriction');
121                     args.uris.push(res);
122                 END;
123                 NEXT;
124             ELSE;
125                 copies = volume.findnodes('./*[local-name()="copies"]/*[local-name()="copy"]');
126                 FOR copy IN copies;
127                     parts = copy.findnodes('./*[local-name()="monograph_parts"]/*[local-name()="monograph_part"]');
128                     FOREACH part IN parts;
129                         part_label = part.getAttribute('label');
130                         LAST IF part_label != '';
131                     END;
132                     # Check copy visibility
133                     cp.deleted = copy.getAttribute('deleted');    
134                     cp.visible = copy.getAttribute('opac_visible');
135                     NEXT IF (cp.deleted == 'true' OR cp.visible == 'false');
136
137                     # Iterate through all of the children to determine visibility
138                     FOR node IN cp.childNodes;
139                         NEXT IF cp.visible == 'false';
140                         vis = node.getAttribute('opac_visible');
141                         del = node.getAttribute('deleted');
142                         IF vis == 'false' or del == 'true';
143                             cp.visible = 'false';
144                         END;
145                     END;
146
147                     NEXT IF cp.visible == 'false';
148                     
149                     loc = copy.findnodes('./*[local-name()="location"]');
150                     circlib = copy.findnodes('./*[local-name()="circlib"]');
151                     status = copy.findnodes('./*[local-name()="status"]');
152
153                     holding = {
154                         label => vol.label,
155                         part_label => part_label,
156                         location => loc.textContent,
157                         library => circlib.textContent,
158                         status => status.textContent
159                         barcode => copy.getAttribute('barcode')
160                     };
161                     args.holdings.push(holding);
162                     part_label = '';
163                 END;
164             END;
165         END;
166
167         # Extract the copy count summary
168         count_type = (ctx.is_staff) ? 'staff' : 'public';
169
170         # Consortial copy count summary first
171         xpath = '//*[local-name()="counts"]/*[local-name()="count"][@type="' _ count_type _ '"]';
172         args.copy_counts = {};
173         FOR node IN xml.findnodes(xpath);
174             FOR attr IN ['count', 'available', 'unshadow', 'transcendant', 'org_unit']; 
175                 depth = node.getAttribute('depth');
176                 args.copy_counts.$depth.$attr = node.getAttribute(attr);
177             END;
178         END;
179
180         # "mattype" == "custom marc format specifier"
181         FOR icon_style IN ['mattype', 'item_type']; 
182             node = xml.findnodes(
183                 '//*[local-name()="attributes"]/*[local-name()="field"][@name="' _ icon_style _ '"]');
184             IF node AND node.textContent;
185                 args.format_label = node.getAttribute('coded-value')
186                 args.format_icon = ctx.media_prefix _ '/images/format_icons/' _ icon_style _ '/' _ node.textContent _ '.png';
187                 LAST;
188             END;
189         END;
190     END;
191 %]