This repository has been archived by the owner on Jan 3, 2020. It is now read-only.
forked from zotero/translators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHathi Trust.js
162 lines (147 loc) · 4.66 KB
/
Hathi Trust.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
{
"translatorID": "31da33ad-b4d9-4e99-b9ea-3e1ddad284d8",
"label": "Hathi Trust",
"creator": "Sebastian Karcher",
"target": "^https?://(catalog|babel)\\.hathitrust\\.org",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2014-02-24 00:03:36"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2011 Sebastian Karcher and the Center for History and New Media
George Mason University, Fairfax, Virginia, USA
http://zotero.org
This file is part of Zotero.
Zotero is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Zotero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
***** END LICENSE BLOCK *****
*/
function detectWeb(doc, url) {
if (url.match(/\/Record\/\d+/)) return "book";
if ((url.indexOf("/Search/") != -1 || url.indexOf("a=listis;"))
&& getSearchResults(doc).length) {
return "multiple";
}
}
function getSearchResults(doc) {
//search results
var res = ZU.xpath(doc, '//div[@class="resultitem"]\
[.//a[@class="cataloglinkhref"][1]/@href]');
//collections
if(!res.length) res = ZU.xpath(doc, '//div[contains(@class,"row")]/div[.//div[contains(@class, "result")]//a[contains(@class, "cataloglinkhref")][1]/@href]');
return res;
}
function doWeb(doc, url){
if(detectWeb(doc, url) == "multiple") {
var items = {};
var rows = getSearchResults(doc);
var c=0;
for (var i in rows) {
var title = ZU.xpathText(rows[i], './/span[@class="title"]') || //search result
ZU.xpathText(rows[i], './h4[@class="Title"]/text()[last()]'); //collection item
var id = ZU.xpathText(rows[i], './/a[contains(@class, "cataloglinkhref")][1]/@href');
//Z.debug(id + ": " + title)
if(id) {
id = (id.match(/\/(\d+)/) || [])[1];
//lists can display the same record, but with different titles
//(for different PDF versions), so we add a unique number to each
//record so they don't override each other. We strip it off later
if(id) id = c++ + '-' + id;
}
if(title && id) items[id] = title;
}
Zotero.selectItems(items, function (items) {
if (!items) {
return true;
}
var articles = new Array();
for (var i in items) {
articles.push(i.replace(/^\d+-/,''));
}
scrape(articles);
});
} else {
var itemid = url.match(/\/([0-9]+)/)[1];
scrape([itemid]);
}
}
// help function
function scrape(ids){
//RIS Link
var risurl = "http://catalog.hathitrust.org/Search/SearchExport?handpicked="
+ ids.join(',') + "&method=ris";
Zotero.Utilities.HTTP.doGet(risurl, function (text) {
text = text.replace(/M1 - .+/, ""); //M1 has only garbage like repeated page number info
var translator = Zotero.loadTranslator("import");
translator.setTranslator("32d59d2d-b65a-4da4-b0a3-bdd3cfb979e7");
translator.setString(text);
translator.setHandler("itemDone", function(obj, item) {
item.extra="";
if (item.place) item.place = item.place.replace(/[\[\]]/g, "");
if (item.tags.length) item.tags = item.tags.join("/").split("/");
item.attachments = [{url:item.url, title: "Hathi Trust Record", mimeType: "text/html"}];
item.complete();
});
translator.translate();
});
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://catalog.hathitrust.org/Search/Home?checkspelling=true&lookfor=Cervantes&type=all&sethtftonly=true&submit=Find",
"items": "multiple"
},
{
"type": "web",
"url": "http://catalog.hathitrust.org/Record/001050654",
"items": [
{
"itemType": "book",
"creators": [
{
"lastName": "Entwistle",
"firstName": "William J.",
"creatorType": "author"
}
],
"notes": [],
"tags": [],
"seeAlso": [],
"attachments": [
{
"title": "Hathi Trust Record",
"mimeType": "text/html"
}
],
"title": "Cervantes",
"numPages": "3 p.l., 192 p.",
"place": "Oxford",
"publisher": "The Clarendon press",
"url": "http://catalog.hathitrust.org/Record/001050654",
"date": "1940",
"libraryCatalog": "Hathi Trust",
"accessDate": "CURRENT_TIMESTAMP"
}
]
},
{
"type": "web",
"url": "http://babel.hathitrust.org/cgi/mb?a=listis;c=421846824",
"items": "multiple"
}
]
/** END TEST CASES **/