-
Notifications
You must be signed in to change notification settings - Fork 1
/
CiNii.js
136 lines (134 loc) · 3.97 KB
/
CiNii.js
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
{
"translatorID": "46291dc3-5cbd-47b7-8af4-d009078186f6",
"label": "CiNii",
"creator": "Michael Berkowitz and Mitsuo Yoshida",
"target": "^https?://ci\\.nii\\.ac\\.jp/",
"minVersion": "1.0.0b4.r5",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2012-11-24 13:12:41"
}
function detectWeb(doc, url) {
if (url.match(/naid/)) {
return "journalArticle";
} else if (doc.evaluate('//a[contains(@href, "/naid/")]', doc, null, XPathResult.ANY_TYPE, null).iterateNext()) {
return "multiple";
}
}
function doWeb(doc, url) {
var arts = new Array();
if (detectWeb(doc, url) == "multiple") {
var items = new Object();
var links = doc.evaluate('//a[contains(@href, "/naid/")]', doc, null, XPathResult.ANY_TYPE, null);
var link;
while (link = links.iterateNext()) {
items[link.href] = Zotero.Utilities.trimInternal(link.textContent);
}
Zotero.selectItems(items, function (items) {
if (!items) {
return true;
}
for (var i in items) {
arts.push(i);
}
Zotero.Utilities.processDocuments(arts, scrape, function () {
Zotero.done();
});
Zotero.wait();
});
} else {
scrape(doc, url)
}
}
function scrape(doc, url){
var newurl = doc.location.href;
var biblink = ZU.xpathText(doc, '//li/div/a[contains(text(), "BibTeX")]/@href');
//Z.debug(biblink)
var tags = new Array();
if (doc.evaluate('//a[@rel="tag"]', doc, null, XPathResult.ANY_TYPE, null).iterateNext()) {
var kws = doc.evaluate('//a[@rel="tag"]', doc, null, XPathResult.ANY_TYPE, null);
var kw;
while (kw = kws.iterateNext()) {
tags.push(Zotero.Utilities.trimInternal(kw.textContent));
}
}
var abstractNote;
if (doc.evaluate('//div[@class="abstract"]', doc, null, XPathResult.ANY_TYPE, null).iterateNext()) {
abstractNote = doc.evaluate('//div[@class="abstract"]', doc, null, XPathResult.ANY_TYPE, null).iterateNext().textContent;
}
Zotero.Utilities.HTTP.doGet(biblink, function(text) {
var trans = Zotero.loadTranslator("import");
trans.setTranslator("9cb70025-a888-4a29-a210-93ec52da40d4");
trans.setString(text);
trans.setHandler("itemDone", function(obj, item) {
item.url = newurl;
item.attachments = [{url:item.url, title:item.title + " Snapshot", mimeType:"text/html"}];
item.tags = tags;
item.abstractNote = abstractNote;
item.complete();
});
trans.translate();
});
}/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://ci.nii.ac.jp/search?q=test&range=0&count=20&sortorder=1&type=0",
"items": "multiple"
},
{
"type": "web",
"url": "http://ci.nii.ac.jp/naid/110000244188/ja/",
"items": [
{
"itemType": "journalArticle",
"title": "<研究速報>観測用既存鉄骨造モデル構造物を用いたオンライン応答実験=Pseudo-dynamic tests on existing steel model structure for seismic monitoring",
"creators": [
{
"firstName": "謙一=Kenichi Ohi",
"lastName": "大井",
"creatorType": "author"
},
{
"firstName": "輿助=Yosuke Shimawaki",
"lastName": "嶋脇",
"creatorType": "author"
},
{
"firstName": "拓海=Takumi Ito",
"lastName": "伊藤",
"creatorType": "author"
},
{
"firstName": "Li",
"lastName": "Yushun",
"creatorType": "author"
}
],
"date": "November 2002",
"DOI": "10.11188/seisankenkyu.54.384",
"ISSN": "0037105X",
"issue": "6",
"itemID": "110000244188",
"libraryCatalog": "CiNii",
"pages": "384-387",
"publicationTitle": "生産研究",
"url": "http://ci.nii.ac.jp/naid/110000244188/ja/",
"volume": "54",
"attachments": [
{
"title": "<研究速報>観測用既存鉄骨造モデル構造物を用いたオンライン応答実験=Pseudo-dynamic tests on existing steel model structure for seismic monitoring Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/