summaryrefslogtreecommitdiff
path: root/Civilization.ca.js
blob: 92577e8b7259255027eddc6dc1fefe4f41af9bbf (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
{
	"translatorID": "8451431a-895f-4732-8339-79eb6756d2f9",
	"label": "Civilization.ca",
	"creator": "Adam Crymble",
	"target": "^https?://collections\\.civilization\\.ca",
	"minVersion": "1.0.0b4.r5",
	"maxVersion": "",
	"priority": 100,
	"inRepository": true,
	"translatorType": 4,
	"browserSupport": "gcsibv",
	"lastUpdated": "2012-07-13 07:33:49"
}

function detectWeb(doc, url) {
	if (doc.evaluate('//tr/td[2]/a/font', doc, null, XPathResult.ANY_TYPE, null).iterateNext()) {
		return "multiple";
	} else if (doc.location.href.match("Display.php")) {
		return "artwork";
	}
}

//Civilization.ca 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 tagsContent = new Array();
	var fieldTitle;
	
	var newItem = new Zotero.Item("artwork");
	
	var headers = doc.evaluate('//table[2]/tbody/tr/td[1]/span[@class="textb"]/b', doc, null, XPathResult.ANY_TYPE, null);
	var contents = doc.evaluate('//tr[2]/td/table[2]/tbody/tr/td[2]', doc, null, XPathResult.ANY_TYPE, null);
	var xPathCount = doc.evaluate('count (//table[2]/tbody/tr/td[1]/span[@class="textb"]/b)', doc, null, XPathResult.ANY_TYPE, null);

	newItem.title = contents.iterateNext().textContent.replace(/^\s*|\s+$/g, '');
	var dump = contents.iterateNext();

	for (i=0; i<xPathCount.numberValue; i++) {	 	
	 			
	 		fieldTitle = headers.iterateNext().textContent.replace(/\s+/g, '');
	 		if (fieldTitle == "Artist/Maker/Manufacturer") {
		 		fieldTitle = "	Artiste/Artisan/Fabricant";
	 		} else if (fieldTitle == "Autreaffiliationculturelle") {
		 		fieldTitle = "OtherCulturalAffiliation";
	 		}
	 		
	 		 dataTags[fieldTitle] = Zotero.Utilities.cleanTags(contents.iterateNext().textContent.replace(/^\s*|\s*$/g, ''));
	 	}

	if (dataTags["Artist/Maker/Manufacturer"]) {
		var author = dataTags["Artist/Maker/Manufacturer"];
		if (author.match(" and ")) {
			var authors = author.split(" and ");
			for (var i in authors) {
				newItem.creators.push(Zotero.Utilities.cleanAuthor(authors[i], "author"));	
			}
		} else {
			newItem.creators.push({lastName: author, creatorType: "creator"});				
		}
	}

	if (dataTags["OtherCulturalAffiliation"]) {
		tagsContent = dataTags["OtherCulturalAffiliation"].split(/\n/);

		for (var i = 0; i < tagsContent.length; i++) {
			 		newItem.tags[i] = tagsContent[i];
		 	}
	}
	
	if (dataTags["Collection"]) {
		newItem.extra = "Collection: " + dataTags['Collection'];
	}
	
	associateData (newItem, dataTags, "ArtifactNumber", "callNumber");
	associateData (newItem, dataTags, "Museum", "repository");
	associateData (newItem, dataTags, "Measurements", "artworkSize");
	associateData (newItem, dataTags, "BeginDate", "date");
	associateData (newItem, dataTags, "EndDate", "date");
	associateData (newItem, dataTags, "AdditionalInformation", "abstractNote");
	
	associateData (newItem, dataTags, "Numérod'artefact", "callNumber");
	associateData (newItem, dataTags, "Musée", "repository");
	associateData (newItem, dataTags, "Mesures", "artworkSize");
	associateData (newItem, dataTags, "Datededébut", "date");
	associateData (newItem, dataTags, "Datedefin", "date");
	associateData (newItem, dataTags, "Informationsupplémentaire", "abstractNote");
	
	newItem.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 = doc.evaluate('//tr/td[2]/a', doc, null, XPathResult.ANY_TYPE, null);
	
		var next_title;
		while (next_title = titles.iterateNext()) {
			if (next_title.textContent.match(/\w/)) {
				items[next_title.href] = next_title.textContent;
			}
		}
		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://collections.civilization.ca/public/pages/cmccpublic/emupublic/Display.php?irn=23462&QueryPage=%2Fpublic%2Fpages%2Fcmccpublic%2Femupublic%2FQuery.php&lang=0",
		"items": [
			{
				"itemType": "artwork",
				"creators": [],
				"notes": [],
				"tags": [
					"Central Eskimo",
					"Central Inuit"
				],
				"seeAlso": [],
				"attachments": [],
				"title": "dogsled flooring",
				"extra": "Collection: CCOP Gateway Ethnographic",
				"callNumber": "IV-C-1866",
				"artworkSize": "Height 0.9 cm, Length 14.8 cm, Width 3.4 cm",
				"url": "http://collections.civilization.ca/public/pages/cmccpublic/emupublic/Display.php?irn=23462&QueryPage=%2Fpublic%2Fpages%2Fcmccpublic%2Femupublic%2FQuery.php&lang=0",
				"libraryCatalog": "CMC",
				"accessDate": "CURRENT_TIMESTAMP"
			}
		]
	}
]
/** END TEST CASES **/