summaryrefslogtreecommitdiff
path: root/Nuclear Receptor Signaling.js
blob: a281a3ca2d472c428866cdff9050b96226624dfe (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
230
231
232
233
234
235
236
237
238
239
240
241
{
	"translatorID": "ba10b5bc-562f-11e1-b20d-a3084924019b",
	"label": "Nuclear Receptor Signaling",
	"creator": "Aurimas Vinckevicius",
	"target": "^https?://[^/]*nursa.org/(article|nrs|abstract)",
	"minVersion": "3.0",
	"maxVersion": "",
	"priority": 100,
	"inRepository": true,
	"translatorType": 4,
	"browserSupport": "gcsibv",
	"lastUpdated": "2014-03-03 22:02:54"
}

/*
   Nuclear Receptor Signaling Translator
   Copyright (C) 2012 Aurimas Vinckevicius

   This program 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.

   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 */


/*
 Translator for Nuclear Receptor Signaling journal. Example URLs:
 	Multiple:
 		http://www.nursa.org/nrs.cfm?detail=Perspectives&journalVolume=9
 		http://www.nursa.org/nrs.cfm?detail=Reviews&journalVolume=9
 		http://www.nursa.org/nrs.cfm?detail=Most%20Viewed&journalVolume=9
 		http://www.nursa.org/nrs.cfm?detail=Methods&journalVolume=9
 	Journal Article:
 		http://www.nursa.org/abstract.cfm?doi=10.1621/nrs.07008
 		http://www.nursa.org/article.cfm?doi=10.1621/nrs.09001
*/

function relativeToAbsolute(doc, url) {
	if( typeof(url) == 'undefined' || url.length < 1 ) {
		return doc.location.toString();
	}

	//check whether it's not already absolute
	if(url.match(/^\w+:\/\//)) {
		return url;
	}

	if(url.indexOf('/') == 0) {
	//relative to root
		return doc.location.protocol + '//' + doc.location.host +
			( (doc.location.port.length)?':' + doc.location.port:'' ) +
			url;
	} else {
	//relative to current directory
		var location = doc.location.toString();
		if( location.indexOf('?') > -1 ) {
			location = location.slice(0, location.indexOf('?'));
		}
		return location.replace(/([^\/]\/)[^\/]+$/,'$1') + url;
	}
}

function detectWeb(doc, url) {
	if( url.match('nrs.cfm') &&
		url.match(/detail=(perspectives|reviews|most%20viewed|methods)(&|$)/i) ) {
		return 'multiple';
	} else if( !doc.title.match(/^Error/i) &&
		   doc.title.trim().toLowerCase() != 'nursa |' ) {
		return 'journalArticle';
	}
}

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

	if( detectWeb(doc, url) == 'multiple' ) {
		var items = Zotero.Utilities.xpath(doc, '//div[@class="articleItemFull"]');
		var title, itemUrl;
		var selectFrom = new Object();
		for( var i in items ) {
			title = Zotero.Utilities.xpathText(items[i], './i[text()="Nucl Recept Signal"]/preceding-sibling::node()', null, ' ');
			itemUrl = Zotero.Utilities.xpath(items[i], './a[text()="Full Text"]').shift();
			if(title && itemUrl) {
				title = Zotero.Utilities.trimInternal( title.slice(title.indexOf(')')+1).trim() );
				selectFrom[relativeToAbsolute(doc, itemUrl.href)] = title;
			}
		}

		Zotero.selectItems(selectFrom,
			function(selectedItems) {
				if( selectedItems == null ) return true;

				var urls = new Array();
				for( var item in selectedItems ) {
					urls.push(item);
				}

				Zotero.Utilities.processDocuments(urls,
					function(newDoc) {
						doWeb(newDoc, newDoc.location.href)
					},
					function() { Zotero.done(); });
			});
	} else {
		//load full text instead of abstract to get the full auhor names
		if( url.match('abstract.cfm') ) {
			Zotero.Utilities.processDocuments(url.replace(/abstract.cfm/,'article.cfm'),
				function(newDoc) {
					doWeb(newDoc, newDoc.location.href)
				},
				function() { Zotero.done(); });
			return null;
		}

		var item = new Zotero.Item('journalArticle');

		item.title = Zotero.Utilities.xpathText(doc, '//div[contains(@class,"articleTitle")]').trim();

		var authors = doc.evaluate('//div[@class="topAuthors"]//span', doc, nsResolver, XPathResult.ANY_TYPE, null);
		var author;
		while( author = authors.iterateNext() ) {
			author = author.textContent.trim().replace(/\s+and$/,'');
			item.creators.push( Zotero.Utilities.cleanAuthor(author, 'author', false) );
		}

		item.publicationTitle = 'Nuclear Receptor Signaling';
		item.journalAbbreviation = 'Nucl. Recept. Signaling';

		var published = Zotero.Utilities.xpathText(doc, '//div[contains(@class,"bottomHeader")]/p[1]').trim();
		var pubDelim = 'Published:';
		if( published && published.indexOf(pubDelim) != -1 ) {
			item.date = published.slice( published.lastIndexOf(pubDelim) + pubDelim.length ).trim();
		}

		item.volume = Zotero.Utilities.xpathText(doc, '//div[contains(@class,"volumeCiteInfo")][2]/b');

		var page = Zotero.Utilities.xpathText(doc, '//div[contains(@class,"volumeCiteInfo")][2]/text()[2]');
		if(page) {
			item.pages = page.replace(/\W/g,'');
		}

		item.abstractNote = Zotero.Utilities.xpathText(doc, '//div[contains(@class,"abstract")]/p', null, "\n");

		var doi = Zotero.Utilities.xpathText(doc, '//div[contains(@class,"bottomHeader")]/p[3]/text()[normalize-space()]');
		if(doi) {
			item.DOI = doi.trim();
		}

		item.url = url;

		item.ISSN = "1550-7629";
		

		var rights = Zotero.Utilities.xpathText(doc, '//div[contains(@class,"bottomHeader")]/p[2]');
		if(rights) {
			item.rights = rights;
		}

		item.accessDate = 'CURRENT_TIMESTAMP';

		var pdfURL = Zotero.Utilities.xpath(doc, '//div[span/text() = "Download PDF"]/a').shift();
		if(pdfURL) {
			item.attachments = [{
				url: relativeToAbsolute(doc, pdfURL.href),
				title: 'Full Text PDF',
				mimeType: 'application/pdf'}];
		}

		item.complete();
	}
}

/** BEGIN TEST CASES **/
var testCases = [
	{
		"type": "web",
		"url": "http://www.nursa.org/article.cfm?doi=10.1621/nrs.09002",
		"items": [
			{
				"itemType": "journalArticle",
				"creators": [
					{
						"firstName": "Stephen",
						"lastName": "Safe",
						"creatorType": "author"
					},
					{
						"firstName": "Kyounghyun",
						"lastName": "Kim",
						"creatorType": "author"
					},
					{
						"firstName": "Xi",
						"lastName": "Li",
						"creatorType": "author"
					},
					{
						"firstName": "Syng-Ook",
						"lastName": "Lee",
						"creatorType": "author"
					}
				],
				"notes": [],
				"tags": [],
				"seeAlso": [],
				"attachments": [
					{
						"url": "http://www.nursa.org/retrieveFile.cfm?type=NRS&file=nrs09002.pdf",
						"title": "Full Text PDF",
						"mimeType": "application/pdf"
					}
				],
				"title": "NR4A orphan receptors and cancer",
				"publicationTitle": "Nuclear Receptor Signaling",
				"journalAbbreviation": "Nucl. Recept. Signaling",
				"date": "March 18, 2011",
				"volume": "9",
				"pages": "e002",
				"abstractNote": "NR4A orphan receptors are members of the nuclear receptor (NR) superfamily of transcription factors and include NR4A1 (Nur77, TR3, NGFI-B), NR4A2 (Nurr1), and NR4A3 (Nor1). NR4A receptors are immediate-early genes induced by multiple stimuli and modulate gene expression by interacting as monomers or homodimers to NGFI-B response elements (NBREs) and Nur-responsive elements (NuREs), respectively. NR4A1 and NR4A2 (but not NR4A3) also form heterodimers with the retinoic acid X receptor (RXR) that bind a DR5 motif, and there is evidence that NR4A1 can activate or deactivate gene expression in cancer cells through interactions with DNA-bound specificity protein 1(Sp1) transcription factor. NR4A receptors play important roles in cellular homeostasis and disease, and there is increasing evidence that they exhibit pro-oncogenic activity in most tumors and thereby represent novel targets for chemotherapeutic drugs. Many apoptosis-inducing drugs induce nuclear export of NR4A1 and activate apoptosis in cancer cell lines through formation of extranuclear complexes including a pro-apoptotic mitochondrial NR4A1-bcl-2 complex. 1,1-Bis(3'-indolyl)-1-(p-substituted phenyl)methane analogs exhibit structure-dependent activation or deactivation of nuclear NR4A1 to induce apoptosis, whereas cytosporone B and structural analogs activate both nuclear and extranuclear NR4A1-dependent pro-apoptotic pathways. The roles of NR4A2 and NR4A3 in carcinogenesis are less well-defined; however, there is evidence suggesting that NR4A receptors are important targets for development of new mechanism-based anticancer drugs.",
				"DOI": "10.1621/nrs.09002",
				"url": "http://www.nursa.org/article.cfm?doi=10.1621/nrs.09002",
				"ISSN": "1550-7629",
				"rights": "Copyright © 2011, Safe et al. This is an open-access article distributed under the terms of the Creative Commons Non-Commercial Attribution License, which permits unrestricted non-commercial use distribution and reproduction in any medium, provided the original work is properly cited.",
				"accessDate": "CURRENT_TIMESTAMP",
				"libraryCatalog": "Nuclear Receptor Signaling"
			}
		]
	}
]
/** END TEST CASES **/