-
Notifications
You must be signed in to change notification settings - Fork 0
/
Champlain Society - Collection.js
167 lines (142 loc) · 4.72 KB
/
Champlain Society - Collection.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
{
"translatorID":"50d3ca81-3c4c-406b-afb2-0fe8105b9b38",
"translatorType":4,
"label":"Champlain Society - Collection",
"creator":"Adam Crymble",
"target":"http://link.library.utoronto.ca",
"minVersion":"1.0.0b4.r5",
"maxVersion":"",
"priority":100,
"inRepository":true,
"lastUpdated":"2008-09-02 13:40:00"
}
function detectWeb(doc, url) {
if (doc.location.href.match("search_results")) {
return "multiple";
} else if (doc.location.href.match("item_record")) {
return "book";
}
}
//Champlain Collection translator. Code by Adam Crymble
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 tagsContent = new Array();
var fieldTitle;
var newItem = new Zotero.Item("book");
var headers = doc.evaluate('//table[1]/tbody/tr/td[1]/b/font', doc, nsResolver, XPathResult.ANY_TYPE, null);
var contents = doc.evaluate('//td/table[1]/tbody/tr/td[2]/font', doc, nsResolver, XPathResult.ANY_TYPE, null);
var xPathCount = doc.evaluate('count (//table[1]/tbody/tr/td[1]/b/font)', doc, nsResolver, XPathResult.ANY_TYPE, null);
for (i=0; i<xPathCount.numberValue; i++) {
fieldTitle = headers.iterateNext().textContent.replace(/\s+/g, '');
if (fieldTitle == "Auteur:" ) {
fieldTitle = "Author:";
} else if (fieldTitle == "Titre:") {
fieldTitle = "Title:";
} else if (fieldTitle == "Description:") {
fieldTitle = "Extent:";
} else if (fieldTitle == "Éditeur:") {
fieldTitle = "Published:";
} else if (fieldTitle == "Sujet:") {
fieldTitle = "Subjects:";
}
dataTags[fieldTitle] = (contents.iterateNext().textContent.replace(/^\s*|\s*$/g, ''));
}
//author
var multiAuthors = 0;
if (dataTags["Author:"]) {
var author = dataTags["Author:"];
if (author.match("; ")) {
var authors = author.split("; ");
multiAuthors = 1;
}
if (multiAuthors == 1) {
for (var i = 0; i < authors.length; i++) {
if (authors[i].match(", ")) {
var author1 = authors[i].split(", ");
author = author1[1] + " " + author1[0];
newItem.creators.push(Zotero.Utilities.cleanAuthor(author, "author"));
} else {
newItem.creators.push({lastName: author, creatorType: "creator"});
}
}
} else {
if (author.match(", ")) {
var author1 = author.split(", ");
author = author1[1] + " " + author1[0];
newItem.creators.push(Zotero.Utilities.cleanAuthor(author, "author"));
} else {
newItem.creators.push({lastName: author, creatorType: "creator"});
}
}
}
if (dataTags["Published:"]) {
if (dataTags["Published:"].match(": ")) {
var place1 = dataTags["Published:"].indexOf(": ");
newItem.place = dataTags["Published:"].substr(0, place1);
var publisher1 = dataTags["Published:"].substr(place1 + 2);
if (publisher1.match(", ")) {
var date1 = publisher1.lastIndexOf(", ");
newItem.date = publisher1.substr(date1 +2);
newItem.publisher = publisher1.substr(0, date1);
} else {
newItem.publisher = publisher1;
}
} else {
newItem.publisher = publisher1;
}
}
//for Tags
if (dataTags["Subjects:"]) {
tagsContent = dataTags["Subjects:"].split(/\n/);
}
var j = 0;
for (var i = 0; i < tagsContent.length; i++) {
if (tagsContent[i].match(/\w/)) {
newItem.tags[j] = tagsContent[i].replace(/^\s*|\s+$/g, '');
j++;
}
}
associateData (newItem, dataTags, "Extent:", "pages");
associateData (newItem, dataTags, "ID:", "callNumber");
associateData (newItem, dataTags, "Notes:", "abstractNote");
newItem.title = doc.title;
if (dataTags["Title:"]) {
associateData (newItem, dataTags, "Title:", "title");
} else {
newItem.title = "No Title Found: Champlain Collection";
}
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('//tr[1]/td[2]/font/a', doc, nsResolver, XPathResult.ANY_TYPE, null);
var next_title;
while (next_title = titles.iterateNext()) {
items[next_title.href] = next_title.textContent;
}
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();
}