summaryrefslogtreecommitdiff
path: root/AMS MathSciNet.js
blob: 65a550af2e06ee3571ed7c5665deeffc882332cb (plain)
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
{
	"translatorID": "a354331-981b-43de-a61-bc26dd1be3a9",
	"label": "AMS MathSciNet",
	"creator": "Simon Kornblith",
	"target": "^https?://(www\\.)?ams\\.[^/]*/mathscinet(\\-getitem\\?|/search/(?:publications\\.html|publdoc\\.html))",
	"minVersion": "3.0",
	"maxVersion": "",
	"priority": 100,
	"inRepository": true,
	"translatorType": 4,
	"browserSupport": "gcsibv",
	"lastUpdated": "2014-06-06 18:23:10"
}

function detectWeb(doc, url) {
	
	var tableRows = doc.evaluate('//form/div[contains(@class,"headline")]', doc, null,
			XPathResult.ANY_TYPE, null);
	var itemType;
	if(tableRows.iterateNext()) {
		return "multiple"
	} else if(itemType = ZU.xpathText(doc, '//div[@class="headlineMenu"]/*[last()-1]')) {
		switch(itemType.trim().toLowerCase()) {
			case 'article':
				return "journalArticle";
			case 'book':
				return "book";
			case 'chapter':
				return "bookSection";
		}	
	}
}

function doWeb(doc, url) {
	//for some reason proxy redirection is sometimes "too slow" - so construct the initial part of the URL
	var host = url.match(/^(.+)\/mathscinet/)
	var pub = host[0] + "/search/publications.html?fmt=bibtex";
	var tableRows = doc.evaluate('//form/div[contains(@class,"headline")]', doc, null,
			XPathResult.ANY_TYPE, null);
	var tableRow = tableRows.iterateNext();
	var docLinks = new Array();
	if(tableRow) {
		// search page
		var items = new Object();
		var links = new Object();
		
		do {
			var id = doc.evaluate('.//input[@type="checkbox"]', tableRow, null,
				XPathResult.ANY_TYPE, null).iterateNext().value;
			items[id] = doc.evaluate('./div[@class="headlineText"]/span[@class="title"]', tableRow, null,
				XPathResult.ANY_TYPE, null).iterateNext().textContent;
			links[id] = tableRow.getElementsByTagName('a')[0].href;
		} while(tableRow = tableRows.iterateNext())
		
		
		Zotero.selectItems(items, function (items) {
			if (!items) {
				return true;
			}
			
			for(var id in items) {
				pub += "&b="+id;
				docLinks.push(links[id]);
			}
			scrape(pub, docLinks);
		});
		
	} else {
		var MR = ZU.xpathText(doc, '//div[@id="content"]/div[@class="doc"]/div[@class="headline"]/strong[1]');
		pub += "&b="+MR.replace(/^MR0*/, "");
		scrape(pub, docLinks, doc);
	}
}

function scrape(pub, docLinks, doc) {
	Zotero.Utilities.HTTP.doGet(pub, function(text) {
		var preRE = /<pre>\s*([\s\S]*?)\s*<\/pre>/g;
		var bibTeXString = "";
		
		var m;
		while(m = preRE.exec(text)) {
			bibTeXString += m[1] + '\n';
		}
		
		// import using BibTeX
		var translator = Zotero.loadTranslator("import");
		translator.setTranslator("9cb70025-a888-4a29-a210-93ec52da40d4");
		translator.setString(bibTeXString);
		translator.setHandler("itemDone", function(obj, item) {
			// Fix/fetch MR number
			var mrnumber;
			if(item.extra) {
				item.extra = item.extra.replace(/^MR:\s*(?:MR)?(\d+).*/gm,
					function(m, mr) {
						mrnumber = mr;
						return 'MR: ' + mr;
					});
			}
			
			if(mrnumber) {
				url = 'http://www.ams.org/mathscinet-getitem?mr=' + mrnumber;
				docLinks.shift();
			} else {
				url = docLinks.shift();
			}
			
			item.url = url;
			
			if(doc) {
				item.attachments.push({title: "MathSciNet Snapshot", document: doc});
			} else {
				item.attachments.push({title: "MathSciNet Snapshot", url: url, mimeType: "text/html"});
			}
			
			item.complete();
		});
		translator.translate();
	});
}
/** BEGIN TEST CASES **/
var testCases = [
	{
		"type": "web",
		"url": "http://www.ams.org/mathscinet/search/publications.html?pg4=AUCN&s4=Karcher&co4=AND&pg5=TI&s5=&co5=AND&pg6=PC&s6=&co6=AND&pg7=ALLF&s7=&co7=AND&Submit=Search&dr=all&yrop=eq&arg3=&yearRangeFirst=&yearRangeSecond=&pg8=ET&s8=All&review_format=html",
		"items": "multiple"
	},
	{
		"type": "web",
		"url": "http://www.ams.org/mathscinet-getitem?mr=3004573",
		"items": [
			{
				"itemType": "journalArticle",
				"creators": [
					{
						"firstName": "Wolfgang",
						"lastName": "Karcher",
						"creatorType": "author"
					},
					{
						"firstName": "Elena",
						"lastName": "Shmileva",
						"creatorType": "author"
					},
					{
						"firstName": "Evgeny",
						"lastName": "Spodarev",
						"creatorType": "author"
					}
				],
				"notes": [],
				"tags": [],
				"seeAlso": [],
				"attachments": [
					{
						"title": "MathSciNet Snapshot"
					}
				],
				"itemID": "MR3004573",
				"journalAbbreviation": "J. Multivariate Anal.",
				"ISSN": "0047-259X",
				"DOI": "10.1016/j.jmva.2012.11.004",
				"url": "http://www.ams.org/mathscinet-getitem?mr=3004573",
				"extra": "MR: 3004573",
				"libraryCatalog": "AMS MathSciNet",
				"title": "Extrapolation of stable random fields",
				"publicationTitle": "Journal of Multivariate Analysis",
				"volume": "115",
				"date": "2013",
				"pages": "516–536"
			}
		]
	},
	{
		"type": "web",
		"url": "http://www.ams.org/mathscinet/search/publications.html?pg1=ISSI&s1=308850",
		"items": "multiple"
	},
	{
		"type": "web",
		"url": "http://www.ams.org/mathscinet-getitem?mr=2767535",
		"items": [
			{
				"itemType": "bookSection",
				"creators": [
					{
						"firstName": "Yihua",
						"lastName": "Jiang",
						"creatorType": "author"
					},
					{
						"firstName": "Peter",
						"lastName": "Karcher",
						"creatorType": "author"
					},
					{
						"firstName": "Yuedong",
						"lastName": "Wang",
						"creatorType": "author"
					}
				],
				"notes": [],
				"tags": [],
				"seeAlso": [],
				"attachments": [
					{
						"title": "MathSciNet Snapshot"
					}
				],
				"itemID": "MR2767535",
				"url": "http://www.ams.org/mathscinet-getitem?mr=2767535",
				"extra": "MR: 2767535",
				"libraryCatalog": "AMS MathSciNet",
				"title": "On implementation of the Markov chain Monte Carlo stochastic approximation algorithm",
				"bookTitle": "Advances in directional and linear statistics",
				"pages": "97–111",
				"publisher": "Physica-Verlag/Springer, Heidelberg",
				"date": "2011"
			}
		]
	},
	{
		"type": "web",
		"url": "http://www.ams.org/mathscinet-getitem?mr=2663710",
		"items": [
			{
				"itemType": "book",
				"creators": [
					{
						"firstName": "Martin T.",
						"lastName": "Wells",
						"creatorType": "editor"
					},
					{
						"firstName": "Ashis",
						"lastName": "SenGupta",
						"creatorType": "editor"
					}
				],
				"notes": [],
				"tags": [],
				"seeAlso": [],
				"attachments": [
					{
						"title": "MathSciNet Snapshot"
					}
				],
				"itemID": "MR2663710",
				"numPages": "xiv+321",
				"ISBN": "978-3-7908-2627-2",
				"url": "http://www.ams.org/mathscinet-getitem?mr=2663710",
				"extra": "A Festschrift for Sreenivasa Rao Jammalamadaka\nMR: 2663710",
				"libraryCatalog": "AMS MathSciNet",
				"title": "Advances in directional and linear statistics",
				"publisher": "Physica-Verlag/Springer, Heidelberg",
				"date": "2011"
			}
		]
	},
	{
		"type": "web",
		"url": "http://www.ams.org/mathscinet-getitem?mr=1346201",
		"items": [
			{
				"itemType": "journalArticle",
				"creators": [
					{
						"firstName": "Bernard",
						"lastName": "Malgrange",
						"creatorType": "author"
					}
				],
				"notes": [],
				"tags": [],
				"seeAlso": [],
				"attachments": [
					{
						"title": "MathSciNet Snapshot"
					}
				],
				"itemID": "MR1346201",
				"journalAbbreviation": "Exposition. Math.",
				"issue": "2-3",
				"ISSN": "0723-0869",
				"extra": "MR: 1346201",
				"url": "http://www.ams.org/mathscinet-getitem?mr=1346201",
				"libraryCatalog": "AMS MathSciNet",
				"title": "Sommation des séries divergentes",
				"publicationTitle": "Expositiones Mathematicae. International Journal",
				"volume": "13",
				"date": "1995",
				"pages": "163–222"
			}
		]
	}
]
/** END TEST CASES **/