summaryrefslogtreecommitdiff
path: root/ACLWeb.js
blob: 2e2321e4a440917841570b73a25a875855ac595a (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
{
	"translatorID": "f4a5876a-3e53-40e2-9032-d99a30d7a6fc",
	"label": "ACL",
	"creator": "Nathan Schneider",
	"target": "^https?://(www[.])?aclweb\\.org/anthology/[^#]+",
	"minVersion": "1.0.7",
	"maxVersion": "",
	"priority": 100,
	"inRepository": true,
	"translatorType": 4,
	"browserSupport": "gcsbv",
	"lastUpdated": "2013-09-16 00:20:13"
}

// based on ACM translator
function detectWeb(doc, url) {
  var namespace = doc.documentElement.namespaceURI;
	var nsResolver = namespace ? function(prefix) {
		if (prefix == 'x') return prefix; else return null;
	} : namespace;

	var bibXpath = "//a[./text() = 'bib']"
	if(doc.evaluate(bibXpath, doc, nsResolver, XPathResult.ANY_TYPE, null).iterateNext()) {
	  return "multiple"
	}
  //commenting out single stuff
  // if (url.indexOf("/anthology-new/J/")>-1)
  //  return "journalArticle";
  // else
  //  return "conferencePaper";
}


function scrapeIndex(doc, items) {
	var results;
	var doImport;

	if (items != null) {	// Import user-selected item(s)
		results = items;
		doImport = true;
	}
	else {
		bibFileNodes = doc.evaluate('//a[substring(@href, string-length(@href)-3, 4) = ".bib"]', doc, null, XPathResult.ANY_TYPE, null);

		results = [];
		doImport = false;

		var bibFileNode = bibFileNodes.iterateNext();

		while (bibFileNode) {
			var bibFileName = bibFileNode.getAttribute("href");
			var bibFile = bibFileName.substring(0, bibFileName.length-4);

			var bNodes = doc.evaluate('//a[@href="' + bibFileName + '"]/following-sibling::b[position()=1]', doc, null, XPathResult.ANY_TYPE, null);	// These nodes contain author information

			// Extract authors' last names
			var authorLasts = new Array();

			var bNode = bNodes.iterateNext();
			var authorsS = bNode.innerHTML;	// may include markup: potentially <author>, <first>, <von>, and/or <last> tags
			authorsS = authorsS.replace(/[<][/]?author[>]/g, "");
			var authors = authorsS.split("; ");
			for (var a in authors) {
				var authorS = authors[a];
				var m = authorS.match(/[<]von[>]([^<]+)[<][/]von[>]/);
				var last = "";
				if (m!=null)	// we expect there is a <last> tag if there is a <von> tag
					last = m[1] + " ";
				m = authorS.match(/[<]last[>]([^<]+)[<][/]last[>]/);
				if (m!=null)
					last += m[1];
				else {
					var name = authorS.replace(/[<][^>]+[>]/g, "");	// remove all markup
					if (name=="Entire volume")
						last = name;
					else {
						var parts = name.split(" ");
						last = parts[parts.length-1];
						if (parts.length>1) {
							var penultInitial = parts[parts.length-2].substr(0,1);
							if (penultInitial.toUpperCase()!=penultInitial)	// e.g. van Dyke
								last = name[parts.length-2] + " " + last;
						}
					}
				}
				authorLasts.push(last);
			}

			// Prepare result for this item, which consists of the relative path to the .bib file (minus the extension)
			// followed by a space and the authors' last names (abbreviated format)
			var result = bibFile + " ";

			if (authorLasts.length<3)
				result += authorLasts.join(" & ");
			else
				result += authorLasts[0] + "+";

			results.push(result);
			bibFileNode = bibFileNodes.iterateNext();
		}
	}


	if (!doImport)
		return results;

	for (var i in results) {
		var ii = results[i].indexOf(" ");
		var fileRelPath = results[i].substring(0, ii);
		var authorsShort = results[i].substring(ii+1);
		var fileName = fileRelPath.substring(fileRelPath.lastIndexOf("/")+1);
		var bibFile = fileRelPath + ".bib";

		var pageurl = doc.location.href;
		var lastSlash = pageurl.lastIndexOf("/");
		var dirInUrl = pageurl.substring(0, lastSlash+1);
		var fileInUrl = pageurl.substring(lastSlash+1, pageurl.indexOf("#", lastSlash));
		var bib = dirInUrl + fileRelPath + ".bib";
		var pdf = dirInUrl + fileRelPath + ".pdf";
		var j = fileRelPath.lastIndexOf("-");
		var yearShort = fileRelPath.substring(j-2, j);
		var year = "";
		if (new Number(yearShort) < 50)
			year = "20" + yearShort;
		else
			year = "19" + yearShort;

		var attachments = new Array();
		attachments.push({title:authorsShort + " " + year + ".pdf", mimeType:"application/pdf", url:pdf});

		var type = "";
		if (pageurl.indexOf("/anthology-new/J/")>-1)
			type = "journalArticle";
		else
			type = "conferencePaper";

		if (doImport)
			callTranslator(bib, type, attachments);

	}
}

function callTranslator(bibFileURL, type, attachments) {
	Zotero.Utilities.HTTP.doGet(bibFileURL, function(text) {

		// load BibTex translator
		var translator = Zotero.loadTranslator("import");
		translator.setTranslator("9cb70025-a888-4a29-a210-93ec52da40d4");
		translator.setString(text);
		translator.setHandler("itemDone", function(obj, item) {
			item.itemType = type;
			item.attachments = attachments;
			item.repository = "Association for Computational Linguistics"
			item.complete();
		});
		translator.translate();

	});
}

function doWeb(doc, url) {
	var searchResult = true;
	if(searchResult) {
		var possibleItems = scrapeIndex(doc, null);	// items to present to user
		Zotero.selectItems(possibleItems, function (items) {
			if (!items) {
				return true;
			}
			scrapeIndex(doc, items)	
		});
	} else {
	  //not implemented yet
		scrape(doc);
	}
}
/** BEGIN TEST CASES **/
var testCases = [
	{
		"type": "web",
		"url": "http://aclweb.org/anthology/P/P93/",
		"items": "multiple"
	}
]
/** END TEST CASES **/