summaryrefslogtreecommitdiff
path: root/PEP Web.js
blob: faf5bef7f9122820ca3ab57cb19b2b2350ace51b (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
{
	"translatorID": "32ad4782-b106-4ccb-8ae1-ff102ba93eef",
	"label": "PEP Web",
	"creator": "Akilesh Ayyar",
	"target": "^https?://www\\.pep-web\\.org",
	"minVersion": "1.0.0b3.r1",
	"maxVersion": "",
	"priority": 100,
	"inRepository": true,
	"translatorType": 4,
	"browserSupport": "gcsibv",
	"lastUpdated": "2012-03-12 01:22:21"
}

//Only works for journal articles, and only for single entries.
//Author names sometimes omit periods after the first initials.

function detectWeb(doc, url) {

	var namespace = doc.documentElement.namespaceURI;
	var nsResolver = namespace ? function(prefix) {
		if (prefix == 'x') return namespace; else return null;
	} : null;
	

	if (url.match(/document/))
		return "journalArticle";
}


function scrape(doc, url) {
	var namespace = doc.documentElement.namespaceURI;
	var nsResolver = namespace ? function(prefix) {
	if (prefix == 'x') return namespace; else return null;
	} : null;
	
	var newItem = new Zotero.Item("journalArticle");
	newItem.url = doc.location.href;
		
	var xPathString = "//span[@id='maincite']";

	var xPathString2 = '//p[@class="title"]/a';
	
	var myXPathObject = doc.evaluate(xPathString, doc, nsResolver, XPathResult.ANY_TYPE, null); 
	var myXPathObject2 = doc.evaluate(xPathString2, doc, nsResolver, XPathResult.ANY_TYPE, null);
	
	var citeString = myXPathObject.iterateNext().textContent;
	var titleString = myXPathObject2.iterateNext().textContent;
	
	//authors
	var authors = citeString.match(/(^.*)\(/)[1].toString();
	if (authors == ' ') {
	 authors = "Unknown";
   } 

	var currentauthor;
	
	//grab all but last author, if there are more than one
	while (authors.match(/^(.*?)(\,)(\s)([A-Z]\.)*\,\s/)) {
		currentauthor = authors.match(/^(.*?)(\,)(\s)([A-Z]\.)*/)[0].toString();
		newItem.creators.push(Zotero.Utilities.cleanAuthor(currentauthor, "author", true));
		authors = authors.replace(/^(.*?)(\,)(\s)([A-Z]\.)*\,\s/, '');
	}
	
	//grab remaining author, or sole author if there's only one
	if (authors != null) {
		currentauthor = authors;
		newItem.creators.push(Zotero.Utilities.cleanAuthor(currentauthor, "author", true));
	}
	
	//title
	newItem.title = titleString;
	
	//year
	var year = citeString.match(/\([0-9][0-9][0-9][0-9]\)/).toString();
	year = year.replace(/\(/, '');
	year = year.replace(/\)/, '');
	newItem.date = year;
	
	//publication name
	var pubname = citeString.match(/(\)\.\s)(.*)(\,)/)[0].toString();
	var pubminus = citeString.match(/(\)\.\s)(.*?)(\.)/)[0].toString();
	pubname = pubname.replace(pubminus, '');
	pubname = pubname.replace(/\,/, '');
	pubname = pubname.replace(/\.*/, '');
	pubname = pubname.replace(/^\s*/, '');
	pubname = pubname.replace(/\s*$/, '')
	newItem.publicationTitle = pubname;

	//volume
	var volumeandpages = citeString.match(/[0-9]*\:([0-9]*(\-?)[0-9]*)\.$/)[0].toString();
	var volume = volumeandpages.match(/[0-9]*\:/)[0].toString();
	volume = volume.replace(":", '');
	newItem.volume = volume;

	//pages
	var pages = volumeandpages.match(/\:([0-9]*)(\-?)([0-9]*)/)[0].toString();
	pages = pages.replace(":", '');
	pages = pages.replace(".", '');
	newItem.pages = pages;

	newItem.attachments.push({url:doc.location.href, title:"PEP Web Snapshot", mimeType:"text/html"});

	newItem.complete();	
}


function doWeb(doc, url) {

	var articles = new Array();

	articles = [url];

	Zotero.Utilities.processDocuments(articles, scrape, function(){Zotero.done();});
	Zotero.wait();
}
/** BEGIN TEST CASES **/
var testCases = [
	{
		"type": "web",
		"url": "http://www.pep-web.org/document.php?id=ajp.068.0024a",
		"items": [
			{
				"itemType": "journalArticle",
				"creators": [
					{
						"firstName": "P. J.",
						"lastName": "Boschan",
						"creatorType": "author"
					}
				],
				"notes": [],
				"tags": [],
				"seeAlso": [],
				"attachments": [
					{
						"title": "PEP Web Snapshot",
						"mimeType": "text/html"
					}
				],
				"url": "http://www.pep-web.org/document.php?id=ajp.068.0024a",
				"title": "Childhood and Trauma",
				"date": "2008",
				"publicationTitle": "Am. J. Psychoanal.",
				"volume": "68",
				"pages": "24-32",
				"libraryCatalog": "PEP Web",
				"accessDate": "CURRENT_TIMESTAMP"
			}
		]
	}
]
/** END TEST CASES **/