-
Notifications
You must be signed in to change notification settings - Fork 0
/
CARLABRC OAI Harvester.js
121 lines (91 loc) · 3.16 KB
/
CARLABRC OAI Harvester.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
{
"translatorID":"31649d9d-8f7e-4b87-8678-b3e68ee98f39",
"translatorType":4,
"label":"CARL/ABRC OAI Harvester",
"creator":"Adam Crymble",
"target":"http://carl-abrc-oai",
"minVersion":"1.0.0b4.r5",
"maxVersion":"",
"priority":100,
"inRepository":true,
"lastUpdated":"2008-09-02 13:40:00"
}
function detectWeb(doc, url) {
if (doc.title.match("Search")) {
return "multiple";
} else if (doc.title.match("Browse")) {
return "multiple";
} else if (doc.title.match("Record")) {
return "book";
}
}
function associateData (newItem, dataTags, field, zoteroField) {
if (dataTags[field]) {
newItem[zoteroField] = dataTags[field];
}
}
function scrape(doc, url) {
var namespace = doc.documentElement.namespaceURI;
var nsResolver = namespace ? function(prefix) {
if (prefix == 'x') return namespace; else return null;
} : null;
var dataTags = new Object();
var allAuthors = new Array();
var newItem = new Zotero.Item("book");
var metaTagHTML = doc.getElementsByTagName("meta");
for (var i = 0 ; i < metaTagHTML.length ; i++) {
dataTags[metaTagHTML[i].getAttribute("name")] = Zotero.Utilities.cleanTags(metaTagHTML[i].getAttribute("content"));
if (metaTagHTML[i].getAttribute("name") == "DC.Creator") {
allAuthors.push(dataTags["DC.Creator"]);
}
}
Zotero.debug(allAuthors);
for (var i = 0; i < allAuthors.length; i++) {
if (allAuthors[i].match(",")) {
var authorName = allAuthors[i].split(",");
allAuthors[i] = (authorName[1] + (" ") + authorName[0]);
if (allAuthors[i].match("; ; ")) {
allAuthors[i] = allAuthors[i].replace("; ;", '');
}
newItem.creators.push(Zotero.Utilities.cleanAuthor(allAuthors[i], "author"));
} else {
if (allAuthors[i].match("; ; ")) {
allAuthors[i] = allAuthors[i].replace("; ;", '');
}
newItem.creators.push({lastName: allAuthors[i], creatorType: "creator"});
}
}
associateData (newItem, dataTags, "DC.Title", "title");
associateData (newItem, dataTags, "DC.Description", "abstractNote");
associateData (newItem, dataTags, "DC.Publisher", "publisher");
associateData (newItem, dataTags, "DC.Contributor", "extra");
associateData (newItem, dataTags, "DC.Date", "date");
associateData (newItem, dataTags, "DC.Language", "language");
newItem.url = doc.location.href;
newItem.complete();
}
function doWeb(doc, url) {
var namespace = doc.documentElement.namespaceURI;
var nsResolver = namespace ? function(prefix) {
if (prefix == 'x') return namespace; else return null;
} : null;
var articles = new Array();
if (detectWeb(doc, url) == "multiple") {
var items = new Object();
var titles = doc.evaluate('//span[@class="title"]', doc, nsResolver, XPathResult.ANY_TYPE, null);
var links = doc.evaluate('//div[@class="main"]/div/div/a', doc, nsResolver, XPathResult.ANY_TYPE, null);
var next_title;
while (next_title = titles.iterateNext()) {
items[links.iterateNext().href] = next_title.textContent;
links.iterateNext();
}
items = Zotero.selectItems(items);
for (var i in items) {
articles.push(i);
}
} else {
articles = [url];
}
Zotero.Utilities.processDocuments(articles, scrape, function() {Zotero.done();});
Zotero.wait();
}