summaryrefslogtreecommitdiff
path: root/Probing the Past.js
blob: 68bfe7e53317ea22374644e9c74cc2d92ebf4132 (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
{
	"translatorID": "095239e7-c18c-4f45-a932-bcf4a9e48c08",
	"label": "Probing the Past",
	"creator": "Adam Crymble",
	"target": "^https?://chnm\\.gmu\\.edu/probateinventory/",
	"minVersion": "1.0.0b4.r5",
	"maxVersion": "",
	"priority": 100,
	"inRepository": true,
	"translatorType": 4,
	"browserSupport": "gcsibv",
	"lastUpdated": "2012-01-30 22:43:59"
}

function detectWeb(doc, url) {
	
	if (doc.evaluate('//td/a', doc, null, XPathResult.ANY_TYPE, null).iterateNext()) {
		return "multiple";
	} else if (doc.location.href.match("document")) {
		return "book";
	}
	
}

//Probing the Past translator; Code by Adam Crymble

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 newItem = new Zotero.Item("book");

	var title = doc.evaluate('//h2', doc, nsResolver, XPathResult.ANY_TYPE, null).iterateNext().textContent;
	
	var author = title.split(", ");
	author = author[1] + " " + author[0];
	newItem.creators.push(Zotero.Utilities.cleanAuthor(author, "author"));

	newItem.title = "Probate of " + author;

	var citation = doc.evaluate('//table[@id="browseinfo"]', doc,  nsResolver, XPathResult.ANY_TYPE, null).iterateNext().textContent;
	
	var citation = citation.split(": ");
	citation[1] = citation[1].replace("County/City", '');
	
	
	citation[2] = citation[2].replace("State", '');
	for (var i = 0; i < citation.length; i++) {
		citation[i] = citation[i].replace(/^\s*|\s*$/g, '');
	}
	Zotero.debug(citation);

	newItem.date = citation[1];
	newItem.place = citation[2] + ", " + citation[3];

	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('//td/a', doc, nsResolver, XPathResult.ANY_TYPE, null);
		var titlesCount = doc.evaluate('count (//td/a)', doc, nsResolver, XPathResult.ANY_TYPE, null);
		
		var next_date;
		var next_title;
		var next_town;
		
		for (var i = 0; i < titlesCount.numberValue/3; i++) {
		
			next_date = titles.iterateNext();
			next_title = titles.iterateNext();

			items[next_title.href] = next_title.textContent;
			
			next_town = titles.iterateNext();
		}
		
		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();
}/** BEGIN TEST CASES **/
var testCases = [
	{
		"type": "web",
		"url": "http://chnm.gmu.edu/probateinventory/document.php?estateID=76",
		"items": [
			{
				"itemType": "book",
				"creators": [
					{
						"firstName": "William",
						"lastName": "Cumming",
						"creatorType": "author"
					}
				],
				"notes": [],
				"tags": [],
				"seeAlso": [],
				"attachments": [],
				"title": "Probate of William Cumming",
				"date": "7/2/1752",
				"place": "Annapolis, MD",
				"url": "http://chnm.gmu.edu/probateinventory/document.php?estateID=76",
				"libraryCatalog": "Probing the Past",
				"accessDate": "CURRENT_TIMESTAMP"
			}
		]
	},
	{
		"type": "web",
		"url": "http://chnm.gmu.edu/probateinventory/browse.php?type=time&years=1740",
		"items": "multiple"
	}
]
/** END TEST CASES **/