summaryrefslogtreecommitdiff
path: root/Archeion.js
blob: 591e9b9d1884140c6506a62f6566e2c2c9891de4 (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
{
	"translatorID": "f6717cbb-2771-4043-bde9-dbae19129bb3",
	"label": "Archeion - MemoryBC - Aberta on Record",
	"creator": "Sebastian Karcher",
	"target": "^https?://www\\.(archeion|memorybc|albertaonrecord)\\.ca",
	"minVersion": "2.1.9",
	"maxVersion": "",
	"priority": 100,
	"inRepository": true,
	"translatorType": 4,
	"browserSupport": "gcsibv",
	"lastUpdated": "2014-02-27 22:58:40"
}

/*
	***** BEGIN LICENSE BLOCK *****
	
	Copyright © 2012 Sebastian Karcher 
	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(/;search\?/)) {
		return "multiple";
	} else if (url.match(/;rad$/)|| ZU.xpathText(doc, '//section[@id="action-icons"]//a[contains(@href, ";dc?sf_format=xml")]/@href')) {
		return "book";
	}
}

function scrape(doc, url) {
	var dcUrl = url.replace(/;rad$/, "") + ";dc?sf_format=xml";
	Zotero.Utilities.doGet(dcUrl, function (text) {
		//Z.debug(text)
		text = text.replace(/\&([^a])/, "&amp;$1")
		text = text.replace(/xsi:type=\"dcterms:ISO639-3\"/, "")
		var translator = Zotero.loadTranslator("import");
		translator.setTranslator("5e3ad958-ac79-463d-812b-a86a9235c28f");
		translator.setString(text);
		translator.setHandler("itemDone", function (obj, item) {
			//the DC doesn't distinguish between personal and institutional authors - get them from the page and parse
			var authors = ZU.xpath(doc, '//div[@id="archivalDescriptionArea"]//div[@class="field"]/h3[contains(text(), "Name of creator")]/following-sibling::div/a');
			for (var i in authors) {
				//remove location (in parentheses) from creators, since it often contains a comma that messes with author parsing
				item.creators[i] = ZU.cleanAuthor(authors[i].textContent.replace(/\(.+\)\s*$/, ""), "author", true);
				if (!item.creators[i].firstName) item.creators[i].fieldMode = 1;
			}
			//The Archive gets mapped to the relations tag - we want its name, not the description in archeion
			for (var i in item.seeAlso) {
				if (item.seeAlso[i].indexOf("http://") == -1) {
					item.archive = item.seeAlso[i];
				}
			}
			item.seeAlso = [];
			//the RDF translator doesn't get the full identifier - get it from the page
			var loc = ZU.xpathText(doc, '//section[@id="titleAndStatementOfResponsibilityArea"]//div[@class="field"]/h3[contains(text(), "Reference code")]/following-sibling::div');
			Z.debug(loc)
			item.archiveLocation = loc;
			if (item.extra) item.notes.push(item.extra);
			item.extra = "";
			item.itemID = "";
			item.complete();
		});
		translator.getTranslatorObject(function(trans) {
			trans.defaultUnknownType = 'book';
			trans.doImport();
	});
	});
}

function doWeb(doc, url) {
	if (detectWeb(doc, url) == "multiple") {
		var articles = new Array();
		var items = new Object();
		var titles = ZU.xpath(doc, '//div[contains(@class, "search-results")]/h2/a|//div[contains(@class, "search-result")]/p[@class="title"]/a');
		for (var i in titles) {
			items[titles[i].href] = titles[i].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();
			});
			Zotero.wait();
		});
	} else {
		scrape(doc, url);
	}
}
/** BEGIN TEST CASES **/
var testCases = [
	{
		"type": "web",
		"url": "http://www.archeion.ca/;search?query=montreal",
		"items": "multiple"
	},
	{
		"type": "web",
		"url": "http://www.archeion.ca/kydd-memorial-presbyterian-church-montreal-quebec-fonds;rad",
		"items": [
			{
				"itemType": "book",
				"creators": [
					{
						"firstName": "Quebec)",
						"lastName": "Kydd Memorial Presbyterian Church (Montreal",
						"creatorType": "author"
					},
					{
						"firstName": "Quebec)",
						"lastName": "Rosemount Presbyterian Church (Montreal",
						"creatorType": "author"
					},
					{
						"firstName": "Quebec)",
						"lastName": "Fairmount-Taylor Presbyterian Church (Montreal",
						"creatorType": "author"
					},
					{
						"firstName": "Quebec)",
						"lastName": "Fairmount Presbyterian Church (Montreal",
						"creatorType": "author"
					},
					{
						"firstName": "Quebec)",
						"lastName": "Taylor Presbyterian Church (Montreal",
						"creatorType": "author"
					},
					{
						"firstName": "Quebec)",
						"lastName": "Mount Royal Presbyterian Church (Montreal",
						"creatorType": "author"
					},
					{
						"firstName": "Quebec)",
						"lastName": "Outremont Presbyterian Church (Montreal",
						"creatorType": "author"
					},
					{
						"firstName": "Quebec)",
						"lastName": "Outremont-Mount Royal Presbyterian Church (Montreal",
						"creatorType": "author"
					}
				],
				"notes": [
					"Fonds consists of registers, minutes and other records of Kydd Memorial Presbyterian Church (Montreal, Quebec) and of the records of the amalgamated Fairmount-Taylor Presbyterian Church (Montreal, Quebec) and of Outremont-Mount Royal Presbyterian Church (Montreal, Quebec). Records of Kydd Presbyterian Church consist of: Registers including Baptisms, Marriages and Burials (1927-1982); Court Orders (1982-1990); Session minutes (1928-1982); Congregational meetings (1948-1975); Communion Rolls (1927-1942, 1946-1978); Orders of Service (1928-1982); Annual Reports (1963-1981); Board of Managers Meeting minutes (1944-1978); a history (1975) and other records. Records of Fairmount Presbyterian Church consist of: Registers of Baptisms, Marriages and Burials (1910-1925); Session minutes (1910-1925); Communion Rolls (1910-1923) and Board of Managers Meeting minutes (1908-1922). Records of Fairmount-Taylor Presbyterian Church consist of: Registers of Baptisms, Marriages and Burials (1925-1969); Session minutes (1934-1962); Session Reports (1965-1968); Session Correspondence (1948-1970); Communion Rolls (1923-1966); Membership Lists (1967); Orders of Service (1967); Congregational minutes (1909-1969); Annual reports (1939); Board of Managers Reports (1964-1969); Auditor&#039;s Reports and Financial Statements (1932, 1950, 1966, 1969) and other records."
				],
				"tags": [],
				"seeAlso": [],
				"attachments": [],
				"title": "Kydd Memorial Presbyterian Church (Montreal, Quebec) fonds",
				"rights": "Notes Session minutes are restricted for a period of 50 years from the date they were written.",
				"date": "1908-1990",
				"archive": "The Presbyterian Church in Canada",
				"archiveLocation": "CA ON00313 CONG-147",
				"libraryCatalog": "Archeion - MemoryBC - Aberta on Record"
			}
		]
	},
	{
		"type": "web",
		"url": "http://www.albertaonrecord.ca/;search?query=alphabet",
		"items": "multiple"
	},
	{
		"type": "web",
		"url": "http://www.albertaonrecord.ca/northwest-mennonite-conference-fonds;rad",
		"items": [
			{
				"itemType": "book",
				"creators": [
					{
						"firstName": "Northwest Mennonite",
						"lastName": "Conference",
						"creatorType": "author"
					},
					{
						"firstName": "Mennonite Church Northwest",
						"lastName": "Conference",
						"creatorType": "author"
					},
					{
						"firstName": "Alberta-Saskatchewan Mennonite",
						"lastName": "Conference",
						"creatorType": "author"
					}
				],
				"notes": [
					"The fonds consists of four series: A) Alphabet Files, B) Congregations, C) Conferences, and D) Northwest Mennonite Conference Centennial Anniversary"
				],
				"tags": [
					"Religions",
					"Northwest Mennonite Conference",
					"Alberta-Saskatchewan Mennonite Conference",
					"Mennonite Church. Northwest Conference"
				],
				"seeAlso": [],
				"attachments": [],
				"title": "Northwest Mennonite Conference fonds",
				"rights": "Access to personal information in financial or medical records is subject to relevant legislation and MHSA privacy policy",
				"date": "1949-2003",
				"language": "the material is in english.",
				"archive": "Mennonite Historical Society of Alberta",
				"archiveLocation": "MENN menn-22",
				"libraryCatalog": "Archeion - MemoryBC - Aberta on Record"
			}
		]
	}
]
/** END TEST CASES **/