-
Notifications
You must be signed in to change notification settings - Fork 787
/
Copy pathWikiLeaks PlusD.js
182 lines (170 loc) · 5.09 KB
/
WikiLeaks PlusD.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
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
{
"translatorID": "8b73dd9c-b873-4d13-b36a-45922b9f04a1",
"label": "WikiLeaks PlusD",
"creator": "Sebastian Karcher",
"target": "^https?://(search\\.|www\\.)?wikileaks\\.org/plusd/",
"minVersion": "2.1.9",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2017-06-17 20:49:34"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2017-2019 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.includes("/plusd/?") && getSearchResults(doc, url, true)) {
return "multiple";
}
else if (url.includes("/plusd/cables/")) {
return "report";
}
}
function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
var toc = doc.getElementById("doc_list");
var rows = ZU.xpath(toc, '//tr[@class="sclick"]/td[3]/a[contains(@href, "/cables/")]');
for (var i=0; i<rows.length; i++) {
var href = rows[i].href;
var title = ZU.trimInternal(rows[i].textContent);
if (!href || !title) continue;
if (checkOnly) return true;
found = true;
items[href] = title;
}
return found ? items : false;
}
function doWeb(doc, url) {
if (detectWeb(doc, url) == "multiple") {
Zotero.selectItems(getSearchResults(doc, false), function (items) {
if (!items) {
return true;
}
var articles = new Array();
for (var i in items) {
articles.push(i);
}
//Z.debug(articles)
ZU.processDocuments(articles, scrape);
});
} else {
scrape(doc, url);
}
}
var fieldMap = {
"canonical id": "reportNumber",
"from": "publisher", //not sure -- could also be place
"date": "date"
};
function scrape(doc, url) {
var item = new Zotero.Item('report');
item.url = url;
item.title = ZU.capitalizeTitle(ZU.xpathText(doc, '//table[@id="synopsis"]/tbody/tr[1]').trim().toLowerCase(), true);
var nodes = ZU.xpath(doc, '//table[@id="synopsis"]/tbody/tr/td');
for (var i = 0; i<nodes.length; i++) {
var key = ZU.xpathText(nodes[i], './div[@class="s_key"]');
var value = ZU.xpathText(nodes[i], './div[@class="s_val"]');
if (key) {
key = key.replace(/:/g, "").toLowerCase();
}
//Z.debug(key + ": " + value)
if (fieldMap[key] && value){
item[fieldMap[key]] = value;
}
else if (key == "tags") {
var tags = value.split(/\s*\|\s*/);
for (var j = 0; j<tags.length; j++){
item.tags.push(tags[j]);
}
}
}
//not sure here about mapping
item.reportType = "Wikileaks Public Library of US Diplomacy";
item.attachments.push({document: doc, title: "WikiLeaks PLUSD Snapshot"});
item.complete();
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "https://search.wikileaks.org/plusd/cables/10SHANGHAI60_a.html",
"items": [
{
"itemType": "report",
"title": "Deflating Zhejiang's Property Bubble",
"creators": [],
"date": "2010 February 26, 11:30 (Friday)",
"institution": "China Shanghai",
"libraryCatalog": "WikiLeaks PlusD",
"reportNumber": "10SHANGHAI60_a",
"reportType": "Wikileaks Public Library of US Diplomacy",
"url": "https://search.wikileaks.org/plusd/cables/10SHANGHAI60_a.html",
"attachments": [
{
"title": "WikiLeaks PLUSD Snapshot"
}
],
"tags": [
"AE - United Arab Emirates",
"CH - China (Mainland)",
"ECON - Economic Affairs--Economic Conditions, Trends and Potential",
"EFIN - Economic Affairs--Financial and Monetary Affairs",
"EINV - Economic Affairs--Investments; Foreign Investments",
"PGOV - Political Affairs--Government; Internal Governmental Affairs"
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://search.wikileaks.org/plusd/cables/1975DACCA00292_b.html",
"items": [
{
"itemType": "report",
"title": "Ecfmg Examination",
"creators": [],
"date": "1975 January 1, 00:00 (Wednesday)",
"institution": "Bangladesh Dhaka",
"libraryCatalog": "WikiLeaks PlusD",
"reportNumber": "1975DACCA00292_b",
"reportType": "Wikileaks Public Library of US Diplomacy",
"url": "https://search.wikileaks.org/plusd/cables/1975DACCA00292_b.html",
"attachments": [
{
"title": "WikiLeaks PLUSD Snapshot"
}
],
"tags": [
"AFSP - Administration--Post Administration",
"BG - Bangladesh"
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://search.wikileaks.org/plusd/?qproject[]=ps&qproject[]=cc&qproject[]=fp&qproject[]=cg&q=&qtfrom=1975-01-01#result",
"items": "multiple"
}
];
/** END TEST CASES **/