forked from zotero/translators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Biblio.com.js
154 lines (137 loc) · 4.27 KB
/
Biblio.com.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
{
"translatorID": "9932d1a7-cc6d-4d83-8462-8f6658b13dc0",
"label": "Biblio.com",
"creator": "Adam Crymble, Michael Berkowitz, and Sebastian Karcher",
"target": "^https?://www\\.biblio\\.com/",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2016-09-08 06:09:28"
}
function detectWeb(doc, url) {
if (doc.location.href.match("bookseller_search") || doc.location.href.match("bookstores") || doc.location.href.match("textbooks")) {
} else if (doc.location.href.search(/\/search\.php/)!=-1) {
return "multiple";
} else if (doc.location.href.search(/\/book/)!=-1) {
return "book";
}
}
//Biblio.com translator. Code by Adam Crymble.
function associateData (newItem, dataTags, field, zoteroField) {
if (dataTags[field]) {
newItem[zoteroField] = dataTags[field];
}
}
function scrape(doc, url) {
var dataTags = new Object();
var contents = new Array();
var multiAuthors = new Array();
var fieldTitle;
var author1;
var newItem = new Zotero.Item("book");
var content = doc.evaluate('//div[@id="description"]/ul/li', doc, null, XPathResult.ANY_TYPE, null);
var xPathCount = doc.evaluate('count (//div[@id="description"]/ul/li)', doc, null, XPathResult.ANY_TYPE, null);
for (var i=0; i<xPathCount.numberValue; i++) {
contents = content.iterateNext().textContent.split(": ");
if (contents.length>1) {
fieldTitle = contents[0].replace(/\s*/g, '');
dataTags[fieldTitle] = contents[1].replace(/^\s*|\s*$/g, '');
}
}
//Authors
if (doc.evaluate('//h2', doc, null, XPathResult.ANY_TYPE, null).iterateNext()) {
var authors = doc.evaluate('//h2', doc, null, XPathResult.ANY_TYPE, null).iterateNext().textContent;
if (authors.match(/\w/)) {
authors = authors.replace(/^\s*by/, "");
multiAuthors = authors.split(";");
for (var j=0; j<multiAuthors.length; j++) {
var aut = multiAuthors[j];
newItem.creators.push(Zotero.Utilities.cleanAuthor(aut, "author", aut.match(/,/)));
}
}
}
//extra
if (dataTags["Quantityavailable"]) {
newItem.extra = "Quantity Available: " + dataTags["Quantityavailable"];
}
associateData (newItem, dataTags, "Publisher", "publisher");
associateData (newItem, dataTags, "Place", "place");
associateData (newItem, dataTags, "Datepublished", "date");
associateData (newItem, dataTags, "ISBN10", "ISBN");
associateData (newItem, dataTags, "ISBN13", "ISBN");
associateData (newItem, dataTags, "Pages", "pages");
associateData (newItem, dataTags, "Edition", "edition");
newItem.title = ZU.xpathText(doc, '//h1').replace(/^\s*|\.\s*$/g, '');
newItem.url = doc.location.href;
newItem.complete();
}
function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
var rows = ZU.xpath(doc, '//div[@class="row"]//a[@class="sr-title-text"]');
for (var i=0; i<rows.length; i++) {
var href = rows[i].href;
var title = ZU.trimInternal(rows[i].textContent);
if (!href || !title) continue;
if (checkOnly) return true;
found = true;
items[href] = title;
}
return found ? items : false;
}
function doWeb(doc, url) {
if (detectWeb(doc, url) == "multiple") {
Zotero.selectItems(getSearchResults(doc, false), function (items) {
if (!items) {
return true;
}
var articles = [];
for (var i in items) {
articles.push(i);
}
ZU.processDocuments(articles, scrape);
});
} else {
scrape(doc, url);
}
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://www.biblio.com/search.php?keyisbn=dickens&stage=1",
"items": "multiple"
},
{
"type": "web",
"url": "http://www.biblio.com/book/through-year-dickens-compiled-his-eldest/d/29965287",
"items": [
{
"itemType": "book",
"creators": [
{
"firstName": "Charles",
"lastName": "Dickens",
"creatorType": "author"
}
],
"notes": [],
"tags": [],
"seeAlso": [],
"attachments": [],
"publisher": "DeWolfe, Fiske & Co",
"place": "Boston, USA",
"date": "1909",
"edition": "First American",
"title": "Through The Year With Dickens. Compiled by his Eldest Daughter",
"url": "http://www.biblio.com/book/through-year-dickens-compiled-his-eldest/d/29965287",
"libraryCatalog": "Biblio.com",
"accessDate": "CURRENT_TIMESTAMP"
}
]
}
]
/** END TEST CASES **/