forked from zotero/translators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Aluka.js
253 lines (243 loc) · 8.48 KB
/
Aluka.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
{
"translatorID": "e8fc7ebc-b63d-4eb3-a16c-91da232f7220",
"label": "Aluka",
"creator": "Sean Takats",
"target": "^https?://(?:www\\.)aluka\\.org/action/(?:showMetadata\\?doi=[^&]+|doSearch\\?|doBrowseResults\\?)",
"minVersion": "1.0.0b4.r5",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gb",
"lastUpdated": "2011-10-20 11:35:02"
}
function detectWeb(doc, url){
var namespace = doc.documentElement.namespaceURI;
var nsResolver = namespace ? function(prefix) {
if (prefix == 'x') return namespace; else return null;
} : null;
var xpath = '//a[@class="title"]';
if (url.match(/showMetadata\?doi=[^&]+/)){
return "document";
} else if(doc.evaluate(xpath, doc, nsResolver, XPathResult.ANY_TYPE, null).iterateNext()) {
return "multiple";
}
}
// Aluka types we can import
// TODO: Improve support for other Aluka item types?
// Correspondence, Circulars, Newsletters, Interviews, Pamphlets, Policy Documents, Posters, Press Releases, Reports, Testimonies, Transcripts
var typeMap = {
"Books":"book",
"Aluka Essays":"report",
"photograph":"artwork",
"Photographs":"artwork",
"Panoramas":"artwork",
"Journals (Periodicals)":"journalArticle",
"Articles":"journalArticle",
"Correspondence":"letter",
"Interviews":"interview",
"Reports":"report"
}
function doWeb(doc, url){
var urlString = "http://www.aluka.org/action/showPrimeXML?doi=" ;
var uris = new Array();
var m = url.match(/showMetadata\?doi=([^&]+)/);
if (m) { //single page
uris.push(urlString+ m[1]);
} else { //search results page
var namespace = doc.documentElement.namespaceURI;
var nsResolver = namespace ? function(prefix) {
if (prefix == 'x') return namespace; else return null;
} : null;
var xpath = '//a[@class="title"]';
var items = new Object();
var elmts = doc.evaluate(xpath, doc, nsResolver, XPathResult.ANY_TYPE, null);
var elmt;
while (elmt = elmts.iterateNext()) {
var title = elmt.textContent;
var link = elmt.href;
var m = link.match(/showMetadata\?doi=([^&]+)/);
if (title && m){
items[m[1]] = title;
}
}
var items = Zotero.selectItems(items);
if(!items) {
return true;
}
for(var i in items) {
uris.push(urlString + i);
}
}
// http://www.aluka.org/action/showPrimeXML?doi=10.5555/AL.SFF.DOCUMENT.cbp1008
Zotero.Utilities.HTTP.doGet(uris, function(text) {
text = text.replace(/<\?xml[^>]*\?>/, ""); // strip xml header
text = text.replace(/(<[^>\.]*)\.([^>]*>)/g, "$1_$2"); // replace dots in tags with underscores
var xml = new XML(text);
var metadata = xml..MetadataDC;
var itemType = "Unknown";
if (metadata.length()){
itemType = "document";
if (metadata[0].Type.length()){
var value = metadata[0].Type[0].text().toString();
if(typeMap[value]) {
itemType = typeMap[value];
} else {
Zotero.debug("Unmapped Aluka Type: " + value);
}
}
var newItem = new Zotero.Item(itemType);
var title = "";
if (metadata[0].Title.length()){
var title = Zotero.Utilities.trimInternal(metadata[0].Title[0].text().toString());
if (title == ""){
title = " ";
}
newItem.title = title;
}
if (metadata[0].Title_Alternative.length()){
newItem.extra = Zotero.Utilities.trimInternal(metadata[0].Title_Alternative[0].text().toString());
}
for(var i=0; i<metadata[0].Subject_Enriched.length(); i++) {
newItem.tags.push(Zotero.Utilities.trimInternal(metadata[0].Subject_Enriched[i].text().toString()));
}
for(var i=0; i<metadata[0].Coverage_Spatial.length(); i++) {
newItem.tags.push(Zotero.Utilities.trimInternal(metadata[0].Coverage_Spatial[i].text().toString()));
}
for(var i=0; i<metadata[0].Coverage_Temporal.length(); i++) {
newItem.tags.push(Zotero.Utilities.trimInternal(metadata[0].Coverage_Temporal[i].text().toString()));
}
// TODO: decide whether to uncomment below code to import species data as tags
// for(var i=0; i<xml..TopicName.length(); i++) {
// newItem.tags.push(Zotero.Utilities.trimInternal(xml..TopicName[i].text().toString()));
// }
if (metadata[0].Date.length()){
var date = metadata[0].Date[0].text().toString();
if (date.match(/^\d{8}$/)){
date = date.substr(0, 4) + "-" + date.substr(4, 2) + "-" + date.substr(6, 2);
}
newItem.date = date;
}
if (metadata[0].Creator.length()){
var authors = metadata[0].Creator;
var type = "author";
for(var j=0; j<authors.length(); j++) {
Zotero.debug("author: " + authors[j]);
newItem.creators.push(Zotero.Utilities.cleanAuthor(authors[j].text().toString(),type,true));
}
}
if (metadata[0].Contributor.length()){
var authors = metadata[0].Contributor;
var type = "contributor";
for(var j=0; j<authors.length(); j++) {
Zotero.debug("author: " + authors[j]);
newItem.creators.push(Zotero.Utilities.cleanAuthor(authors[j].text().toString(),type,true));
}
}
if (metadata[0].Publisher.length()){
newItem.publisher = Zotero.Utilities.trimInternal(metadata[0].Publisher[0].text().toString());
}
if (metadata[0].Format_Medium.length()){
newItem.medium = Zotero.Utilities.trimInternal(metadata[0].Format_Medium[0].text().toString());
}
if (metadata[0].Language.length()){
newItem.language = Zotero.Utilities.trimInternal(metadata[0].Language[0].text().toString());
}
if (metadata[0].Description.length()){
newItem.abstractNote = metadata[0].Description[0].text().toString();
}
if (metadata[0].Format_Extent.length()){
newItem.pages = Zotero.Utilities.trimInternal(metadata[0].Format_Extent[0].text().toString());
}
var doi = xml..DOI;
if (doi.length()){
newItem.DOI = doi[0];
var newUrl = "http://www.aluka.org/action/showMetadata?doi=" + doi[0];
newItem.attachments.push({title:"Aluka Link", snapshot:false, mimeType:"text/html", url:newUrl});
var pdfUrl = "http://ts-den.aluka.org/delivery/aluka-contentdelivery/pdf/" + doi[0] + "?type=img&q=high";
newItem.attachments.push({url:pdfUrl});
newItem.url = newUrl;
}
var rights = xml..Rights.Attribution;
if (rights.length()){
newItem.rights = rights[0];
}
if (metadata[0].Rights.length()){
newItem.rights = Zotero.Utilities.trimInternal(metadata[0].Rights[0].text().toString());
}
if (metadata[0].Source.length()){
newItem.repository = "Aluka: " + Zotero.Utilities.trimInternal(metadata[0].Source[0].text().toString());
}
if (metadata[0].Relation.length()){
newItem.callNumber = Zotero.Utilities.trimInternal(metadata[0].Relation[0].text().toString());
}
newItem.complete();
} else {
Zotero.debug("No Dublin Core XML data");
return false;
}
Zotero.done();
});
Zotero.wait();
}/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://www.aluka.org/action/doSearch?sa=4&sa=xst&sa=xhr&searchText=argentina&submit=Search",
"items": "multiple"
},
{
"type": "web",
"url": "http://www.aluka.org/action/showMetadata?doi=10.5555/AL.SFF.DOCUMENT.ydlwcc0342",
"items": [
{
"itemType": "document",
"creators": [
{
"firstName": "Programme to Combat Racism",
"lastName": "World Council of Churches",
"creatorType": "author"
},
{
"firstName": "Paul",
"lastName": "Abrecht",
"creatorType": "author"
}
],
"notes": [],
"tags": [
"Regional And International Contexts",
"Global",
"Brazil",
"Argentina",
"United Kingdom",
"Colombia",
"1969"
],
"seeAlso": [],
"attachments": [
{
"title": "Aluka Link",
"snapshot": false,
"mimeType": "text/html",
"url": "http://www.aluka.org/action/showMetadata?doi=10.5555/AL.SFF.DOCUMENT.ydlwcc0342"
},
{
"url": "http://ts-den.aluka.org/delivery/aluka-contentdelivery/pdf/10.5555/AL.SFF.DOCUMENT.ydlwcc0342?type=img&q=high"
}
],
"title": "[Letter from P. Abrecht (WCC, Geneva) to L. Nillus, Buenos Aires]",
"date": "1968-12-13",
"medium": "image/tiff",
"language": "English",
"pages": "1 page(s)",
"DOI": "10.5555/AL.SFF.DOCUMENT.ydlwcc0342",
"url": "http://www.aluka.org/action/showMetadata?doi=10.5555/AL.SFF.DOCUMENT.ydlwcc0342",
"rights": "By kind permission of the World Council of Churches (WCC).",
"libraryCatalog": "Aluka: World Council of Churches Library and Archives: Programme to Combat Racism; microfilm created by the Yale University Divinity Library with funding from the Kenneth Scott Latourette Initiative for the Documentation of World Christianity.",
"accessDate": "CURRENT_TIMESTAMP"
}
]
}
]
/** END TEST CASES **/