]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/parts/misc_util.tt2
Merge branch 'master' of git.evergreen-ils.org:Evergreen into dbs/tpac-non-fixed...
[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             vol.id = volume.getAttribute('id');
100             NEXT IF volume.getAttribute('opac_visible') == 'false';
101             NEXT IF volume.getAttribute('deleted') == 'true';
102
103             IF vol.label == '##URI##';
104                 FOR uri IN volume.findnodes('./*[local-name()="uris"]/*[local-name()="uri"]');
105                     res.href = uri.getAttribute('href');
106                     res.link = uri.getAttribute('label');
107                     res.note = uri.getAttribute('use_restriction');
108                     args.uris.push(res);
109                 END;
110                 NEXT;
111             ELSE;
112                 copies = volume.findnodes('./*[local-name()="copies"]/*[local-name()="copy"]');
113                 FOR copy IN copies;
114                     # Check copy visibility
115                     cp.deleted = copy.getAttribute('deleted');    
116                     cp.visible = copy.getAttribute('opac_visible');
117                     NEXT IF (cp.deleted == 'true' OR cp.visible == 'false');
118
119                     # Iterate through all of the children to determine visibility
120                     FOR node IN cp.childNodes;
121                         NEXT IF cp.visible == 'false';
122                         vis = node.getAttribute('opac_visible');
123                         del = node.getAttribute('deleted');
124                         IF vis == 'false' or del == 'true';
125                             cp.visible = 'false';
126                         END;
127                     END;
128
129                     NEXT IF cp.visible == 'false';
130                     
131                     loc = copy.findnodes('./*[local-name()="location"]');
132                     circlib = copy.findnodes('./*[local-name()="circlib"]');
133                     status = copy.findnodes('./*[local-name()="status"]');
134
135                     holding = {
136                         label => vol.label,
137                         location => loc.textContent,
138                         library => circlib.textContent,
139                         status => status.textContent
140                         barcode => copy.getAttribute('barcode')
141                     };
142                     args.holdings.push(holding);
143                 END;
144             END;
145         END;
146
147         # Extract the copy count summary
148         count_type = (ctx.is_staff) ? 'staff' : 'public';
149         xpath = '//*[local-name()="counts"]/*[local-name()="count"][@type="' _ count_type _ '"]';
150         FOR node IN xml.findnodes(xpath);
151             args.copy_counts = {};
152             FOR attr IN ['count', 'available', 'unshadow', 'transcendant']; 
153                 args.copy_counts.$attr = node.getAttribute(attr);
154             END;
155         END;
156
157         # "mattype" == "custom marc format specifier"
158         FOR icon_style IN ['mattype', 'item_type']; 
159             node = xml.findnodes(
160                 '//*[local-name()="attributes"]/*[local-name()="field"][@name="' _ icon_style _ '"]');
161             IF node AND node.textContent;
162                 args.format_label = node.getAttribute('coded-value')
163                 args.format_icon = ctx.media_prefix _ '/images/format_icons/' _ icon_style _ '/' _ node.textContent _ '.png';
164                 LAST;
165             END;
166         END;
167     END;
168 %]