-
Notifications
You must be signed in to change notification settings - Fork 787
/
Copy pathfishpond.co.nz.js
224 lines (210 loc) · 7.87 KB
/
fishpond.co.nz.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
{
"translatorID": "c436f3c7-4246-4ed3-a227-a538c8113a0e",
"label": "fishpond.co.nz",
"creator": "Sopheak Hean, Sebastian Karcher",
"target": "^https?://www\\.fishpond\\.co\\.nz/",
"minVersion": "1.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2017-06-07 17:26:42"
}
/*
Fishpond.co.nz Translator- Parses Fishpond.co.nz articles and creates Zotero-based metadata
Copyright (C) 2011 Sopheak Hean, University of Waikato, Faculty of Education
Contact: [email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
function detectWeb(doc, url) {
var definePath = '//td[contains(@class, "product_info")]//h1';
var XpathObject = doc.evaluate(definePath, doc, null, XPathResult.ANY_TYPE, null).iterateNext();
if (XpathObject) {
return "book";
} else {
var definePath = '//td[@id="page_title"]/h1';
var XpathObject = doc.evaluate(definePath, doc, null, XPathResult.ANY_TYPE, null).iterateNext();
if (XpathObject) {
return "multiple";
}
}
}
function scrape(doc, url) {
var newItem = new Zotero.Item("book");
var title = '//span[@class="fn"]';
var titleObject = doc.evaluate(title, doc, null, XPathResult.ANY_TYPE, null).iterateNext();
if (titleObject){
newItem.title = titleObject.textContent;
}
var authorObject = ZU.xpathText(doc, '//p[@id="product_author"]');
if (authorObject){
//Z.debug(authorObject)
//e.g. By Astrid Lindgren, Lauren Child (Illustrated by), Tina Nunally (Translated by)
authorObject = authorObject.replace(/By\s/, '').split(",");
for (var i=0; i<authorObject.length; i++) {
var indexParenthesis = authorObject[i].indexOf('(');
if (indexParenthesis == -1) {
indexParenthesis = authorObject[i].length;
}
var authorString = authorObject[i].substr(0, indexParenthesis);
var stringParenthesis = authorObject[i].substr(indexParenthesis);
var func = "author";
if (stringParenthesis.toLowerCase().indexOf('illustrated by')>-1) {
func = "illustrator";
}
if (stringParenthesis.toLowerCase().indexOf('translated by')>-1) {
func = "translator";
}
newItem.creators.push(Zotero.Utilities.cleanAuthor(authorString, func));
}
}
var date = '//table[@class="product_info_text"]/tbody/tr[3]';
var dateObject = doc.evaluate(date, doc, null, XPathResult.ANY_TYPE, null).iterateNext();
if (dateObject){
dateObject = dateObject.textContent;
if (dateObject.match(/Release Date:\s/)){
newItem.date = dateObject.replace(/Release Date:\s/, '');
} else {
var d = new Date();
date ='//span[@class="arrival_time"]';
dateObject = doc.evaluate(date, doc, null, XPathResult.ANY_TYPE, null).iterateNext();
if (dateObject){
newItem.date = dateObject.textContent.replace(/Available\s/, '')+ " " +d.getFullYear()
;
}
}
}
var abstract = '//div[@itemprop="description"]';
var abstractObject = doc.evaluate(abstract, doc, null, XPathResult.ANY_TYPE, null).iterateNext();
if (abstractObject){
abstractObject = abstractObject.textContent;
newItem.abstractNote = abstractObject;
}
var isbn = "//table/tbody/tr/td[2]/table[4]/tbody/tr[2]/td[2]";
var isbnObject = doc.evaluate(isbn, doc, null, XPathResult.ANY_TYPE, null).iterateNext();
if (isbnObject){
newItem.ISBN = isbnObject.textContent;
}
var publisher = "//table/tbody/tr/td[2]/table[4]/tbody/tr[1]/td[2]/a";
var publisherObject = doc.evaluate(publisher, doc, null, XPathResult.ANY_TYPE, null).iterateNext();
if (publisherObject) {
newItem.publisher= publisherObject.textContent;
}
newItem.attachments.push({title:"FishPond Record", mimeType:"text/html", url:doc.location.href});
newItem.complete();
}
function doWeb(doc, url) {
var articles = new Array();
if (detectWeb(doc, url) == "multiple") {
var items = new Object();
var titles = '//td[contains(@class, "productSearch-data")]//a[contains(@class, "fn")]';
var titleObject = doc.evaluate(titles, doc, null, XPathResult.ANY_TYPE, null);
var next_title;
while ( next_title = titleObject.iterateNext()) {
items[next_title.href] = next_title.textContent;
}
Zotero.selectItems(items, function (items) {
if (!items) {
return true;
}
for (var i in items) {
articles.push(i);
}
Zotero.Utilities.processDocuments(articles, scrape, function () {
Zotero.done();
});
});
} else {
scrape(doc, url);
}
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://www.fishpond.co.nz/Books/Pippi-Longstocking-Astrid-Lindgren-Lauren-Child-Illustrated-by/9780670014040?cf=3&rid=2103878406&i=3&keywords=lindgren",
"items": [
{
"itemType": "book",
"title": "Pippi Longstocking",
"creators": [
{
"firstName": "Astrid",
"lastName": "Lindgren",
"creatorType": "author"
},
{
"firstName": "Lauren",
"lastName": "Child",
"creatorType": "illustrator"
},
{
"firstName": "Tina",
"lastName": "Nunally",
"creatorType": "translator"
}
],
"abstractNote": "The definitive Pippi Longstocking, in paperback for the first time! For over sixty years, Astrid Lindgren's irrepressible red-haired, freckle-faced Pippi Longstocking has been a favorite of children all over the world. This enchanting edition features an all-new translation by award-winning Tiina Nunnally and full-color illustrations throughout by Lauren Child, creator of Charlie and Lola. Child's pictures are the perfect match for Lindgren's text. \"I discovered Pippi Longstocking when I was eight years old and found her completely inspiring . . . . an entirely free spirit,\" Lauren Child says. With a free-wheeling, playful design, this captivating new edition captures the essence of its beloved heroine.",
"libraryCatalog": "fishpond.co.nz",
"attachments": [
{
"title": "FishPond Record",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://www.fishpond.co.nz/Books/Best-of-Pippi-Longstocking-Astrid-Lindgren-Tony-Ross-Illustrated-by/9780192753373",
"items": [
{
"itemType": "book",
"title": "The Best of Pippi Longstocking",
"creators": [
{
"firstName": "Astrid",
"lastName": "Lindgren",
"creatorType": "author"
},
{
"firstName": "Tony",
"lastName": "Ross",
"creatorType": "illustrator"
}
],
"abstractNote": "Pippi Longstocking is as popular as ever, with dedicated fans all over the world. She's funny, feisty, and incredibly strong and has the most amazing adventures ever! Here's a chance to read three books about Pippi in one volume - Pippi Longstocking, Pippi Goes Aboard, and Pippi in the South Seas. * Pippi Longstocking has phenomenal sales and has been in print continuously for over forty years * Illustrated throughout by best-selling artist, Tony Ross, who has illustrated a new cover for this edition * Astrid Lindgren has won numerous awards including the Hans Christian Andersen Award and the International Book Award.",
"libraryCatalog": "fishpond.co.nz",
"attachments": [
{
"title": "FishPond Record",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://www.fishpond.co.nz/c/Books/a/Astrid+Lindgren",
"items": "multiple"
}
]
/** END TEST CASES **/