-
Notifications
You must be signed in to change notification settings - Fork 526
/
Wenjin.js
561 lines (543 loc) · 18.9 KB
/
Wenjin.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
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
{
"translatorID": "f306107f-dabb-41ac-8fa2-f7f858feb11f",
"label": "Wenjin",
"creator": "Xingzhong Lin, jiaojiaodubai",
"target": "https?://find\\.nlc\\.cn/search",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2024-06-20 16:34:51"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2020 Xingzhong Lin, https://github.com/Zotero-CN/translators_CN
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('/search/showDocDetails')) {
return detectType(doc);
}
else if (url.includes("search/doSearch?query") && getSearchResults(doc, true)) {
return 'multiple';
}
return false;
}
function detectType(doc) {
const typeMap = {
专著: 'book',
善本: 'book',
普通古籍: 'book',
特藏古籍: 'book',
学位论文: 'thesis',
期刊论文: 'journalArticle',
期刊: 'journalArticle',
报纸: 'newspaperArticle',
计算机文件: 'book',
报告: 'report'
};
return typeMap[text(doc, '.book_item:nth-child(2) span.book_val')];
}
function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
var rows = doc.querySelectorAll('div.article_item div.book_name > a');
for (let row of rows) {
let click = row.getAttribute('onclick').split("'");
// Z.debug(click);
let href = "http://find.nlc.cn/search/showDocDetails?docId="
+ click[3]
+ "&dataSource="
+ click[5]
+ "&query="
+ encodeURI(click[7]);
// Z.debug(href);
let title = ZU.trimInternal(row.textContent);
if (!href || !title) continue;
if (checkOnly) return true;
found = true;
items[href] = title;
}
return found ? items : false;
}
async function doWeb(doc, url) {
if (detectWeb(doc, url) == 'multiple') {
let items = await Zotero.selectItems(getSearchResults(doc, false));
if (!items) return;
for (let url of Object.keys(items)) {
await scrape(await requestDocument(url));
}
}
else {
await scrape(doc, url);
}
}
async function scrape(doc, url = doc.location.href) {
var newItem = new Z.Item(detectType(doc));
newItem.extra = '';
const labels = new Labels(doc, '.book_item');
Z.debug(labels.data.map(arr => [arr[0], ZU.trimInternal(arr[1].innerText)]));
newItem.title = text(doc, '.book_name');
newItem.abstractNote = text(doc, 'div.zy_pp_val') || labels.get('引文');
switch (newItem.itemType) {
case 'book': {
// http://find.nlc.cn/search/showDocDetails?docId=-5158343139126139955&dataSource=ucs01&query=%E5%B9%BF%E9%9F%B5
newItem.series = labels.get('丛编题名');
// newItem.seriesNumber = 系列编号;
// newItem.volume = 卷次;
// http://find.nlc.cn/search/showDocDetails?docId=-9108259640625243569&dataSource=ucs01&query=%E6%A2%A6%E6%BA%AA%E7%AC%94%E8%B0%88
newItem.numberOfVolumes = tryMatch(labels.get('载体形态'), /(\d+)册/, 1);
// http://find.nlc.cn/search/showDocDetails?docId=-5158343139126139955&dataSource=ucs01&query=%E5%B9%BF%E9%9F%B5
newItem.edition = labels.get('版本说明 ');
newItem.place = labels.get('出版、发行地');
newItem.publisher = labels.get('出版、发行者');
newItem.date = labels.get('出版发行时间');
// http://find.nlc.cn/search/showDocDetails?docId=-3372694795849761390&dataSource=mgwx&query=%E5%B9%BF%E9%9F%B5
newItem.numPages = tryMatch(labels.get('载体形态'), /(\d+)页$/, 1);
newItem.ISBN = labels.get('标识号');
// newItem.shortTitle = 短标题;
if (['善本', '普通古籍', '特藏古籍'].includes(text(doc, '.book_val'))) {
extra.add('Type', 'classic', true);
}
let creators = labels.get('所有责任者', true).innerText.trim().split(/\s{2}|,/).map((creator) => {
let creatorType = /译$/.test(creator)
? 'translator'
: 'author';
// http://find.nlc.cn/search/showDocDetails?docId=-9108259640625243569&dataSource=ucs01&query=%E6%A2%A6%E6%BA%AA%E7%AC%94%E8%B0%88
// http://find.nlc.cn/search/showDocDetails?docId=-4203196484494800823&dataSource=ucs01&query=%E6%B0%B4%E5%90%88%E7%89%A9
// http://find.nlc.cn/search/showDocDetails?docId=-4300747930403378569&dataSource=ucs01&query=%E6%9C%97%E6%96%87
creator = creator.replace(/等?\[?[主编著撰翻译演奏]*\]?$/, '');
let country = tryMatch(creator, /^[([(](.+?)[)\])]/, 1);
creator = creator.replace(/^[([(](.+?)[)\]) ]/, '');
let original = tryMatch(creator, /\((.+?)\)$/, 1);
creator = creator.replace(/\((.+?)\)$/, '');
creator = ZU.cleanAuthor(creator, creatorType);
if (/[\u4e00-\u9fa5]/.test(creator.lastName)) {
creator.lastName = creator.firstName + creator.lastName;
creator.firstName = '';
creator.fieldMode = 1;
}
creator.country = country;
creator.original = original;
return creator;
});
Z.debug(creators);
if (creators.some(creator => creator.country || creator.original)) {
extra.add('creatorsExt', JSON.stringify(creators));
}
creators.forEach((creator) => {
delete creator.country;
extra.add('original-author', creator.original, true);
delete creator.original;
newItem.creators.push(creator);
});
let medium = '';
// http://find.nlc.cn/search/showDocDetails?docId=5443092259449818292&dataSource=ucs01&query=%E7%BA%A2%E6%98%9F
// http://find.nlc.cn/search/showDocDetails?docId=7092562696966199047&dataSource=ucs01&query=%E7%90%86%E6%9F%A5%E5%BE%B7
// http://find.nlc.cn/search/showDocDetails?docId=-9193368633718699152&dataSource=ucs01&query=%E8%8B%B1%E8%AF%AD
if (['CD', 'DVD', 'VCD', '光盘'].some(keyword => labels.get('载体形态').includes(keyword))) {
medium = 'CD';
}
// http://find.nlc.cn/search/showDocDetails?docId=-3935743997161595407&dataSource=ucs01&query=%E8%8B%B1%E8%AF%AD
else if (labels.get('载体形态').includes('录音带')) {
medium = 'MT';
}
extra.add('medium', medium, true);
break;
}
case 'journalArticle':
newItem.publicationTitle = labels.get('刊名', true).innerText.trim().split(/\s{2}/)[0];
// newItem.volume = 卷次;
newItem.issue = tryMatch(labels.get('期'), /0*([1-9]\d*)/, 1);
newItem.pages = labels.get('页');
newItem.date = labels.get(['出版发行时间', '年']);
newItem.ISSN = tryMatch(labels.get('标识号'), /:(.+?)(\s|$)/, 1);
extra.add('original-title', tryMatch(labels.get('文章题名'), /英文篇名 : (.+)(?:\s{2}|$)/, 1), true);
extra.add('fund', labels.get('基金'));
new Labels(doc, '#detail-info > .book_item').get('作者', true).innerText.trim()
.split(/\s{2}|,/).forEach((creator) => {
Z.debug(creator);
creator = ZU.cleanAuthor(creator, 'author');
if (/[\u4e00-\u9fa5]/.test(creator.lastName)) {
creator.lastName = creator.firstName + creator.lastName;
creator.firstName = '';
creator.fieldMode = 1;
}
newItem.creators.push(creator);
});
break;
case 'thesis':
newItem.thesisType = labels.get('来源数据库').includes('博士')
? '博士学位论文'
: '硕士学位论文';
newItem.university = labels.get('论文授予机构');
newItem.date = labels.get(['出版发行时间', '论文授予时间']);
newItem.numPages = tryMatch(labels.get('载体形态'), /(\d+)页$/, 1);
labels.get('所有责任者', true).innerText.trim()
.split(/\s{2}|,/).forEach((creator) => {
let creatorType = /指导$/.test(creator)
? 'contributor'
: 'author';
creator = creator.replace(/等?[著指导]*$/, '');
creator = ZU.cleanAuthor(creator, creatorType);
if (/[\u4e00-\u9fa5]/.test(creator.lastName)) {
creator.lastName = creator.firstName + creator.lastName;
creator.firstName = '';
creator.fieldMode = 1;
}
newItem.creators.push(creator);
});
extra.add('major', labels.get('论文专业 '));
break;
case 'newspaperArticle':
// http://find.nlc.cn/search/showDocDetails?docId=-382233026126726134&dataSource=fzbzcnml&query=%E6%96%B0%E5%8F%91%E5%B1%95%E7%90%86%E5%BF%B5
// http://find.nlc.cn/search/showDocDetails?docId=-4758410971070022650&dataSource=ccnd&query=%E6%96%B0%E5%8F%91%E5%B1%95%E7%90%86%E5%BF%B5
// http://find.nlc.cn/search/showDocDetails?docId=-3912556877249539014&dataSource=rdfyzlqwsjk&query=%E6%9D%A8%E8%A5%BF%E5%85%89
newItem.publicationTitle = labels.get(['报纸中文名', '期刊名称']);
newItem.date = labels.get(['日期', '出版发行扇门']);
newItem.pages = tryMatch(labels.get('来源'), /(\d+)版/, 1) || labels.get('版号');
labels.get(['所有责任者', '作者']).split(/\s/)
.filter(creator => !creator.includes('记者'))
.forEach((creator) => {
Z.debug(creator);
creator = ZU.cleanAuthor(creator, 'author');
if (/[\u4e00-\u9fa5]/.test(creator.lastName)) {
creator.lastName = creator.firstName + creator.lastName;
creator.firstName = '';
creator.fieldMode = 1;
}
newItem.creators.push(creator);
});
break;
case 'report':
break;
default:
break;
}
newItem.url = url;
if (labels.get('语种').includes('Chinese')) {
newItem.language = 'zh-CN';
}
// ---见于图书
// ;见于期刊
labels.get('关键词', true).innerText.trim().split(/(?:---)|;|\s{2}/).forEach(tag => newItem.tags.push(tag));
newItem.extra = extra.toString();
newItem.complete();
}
class Labels {
constructor(doc, selector) {
this.data = [];
this.emptyElm = doc.createElement('div');
Array.from(doc.querySelectorAll(selector))
// avoid nesting
.filter(element => !element.querySelector(selector))
// avoid empty
.filter(element => !/^\s*$/.test(element.textContent))
.forEach((element) => {
const elmCopy = element.cloneNode(true);
// avoid empty text
while (/^\s*$/.test(elmCopy.firstChild.textContent)) {
// Z.debug(elementCopy.firstChild.textContent);
elmCopy.removeChild(elmCopy.firstChild);
// Z.debug(elementCopy.firstChild.textContent);
}
if (elmCopy.childNodes.length > 1) {
const key = elmCopy.removeChild(elmCopy.firstChild).textContent.replace(/\s/g, '');
this.data.push([key, elmCopy]);
}
else {
const text = ZU.trimInternal(elmCopy.textContent);
const key = tryMatch(text, /^[[【]?.+?[】\]::]/).replace(/\s/g, '');
elmCopy.textContent = tryMatch(text, /^[[【]?.+?[】\]::]\s*(.+)/, 1);
this.data.push([key, elmCopy]);
}
});
}
get(label, element = false) {
if (Array.isArray(label)) {
const results = label
.map(aLabel => this.get(aLabel, element));
const keyVal = element
? results.find(element => !/^\s*$/.test(element.textContent))
: results.find(string => string);
return keyVal
? keyVal
: element
? this.emptyElm
: '';
}
const pattern = new RegExp(label, 'i');
const keyVal = this.data.find(arr => pattern.test(arr[0]));
return keyVal
? element
? keyVal[1]
: ZU.trimInternal(keyVal[1].textContent)
: element
? this.emptyElm
: '';
}
}
function tryMatch(string, pattern, index = 0) {
if (!string) return '';
let match = string.match(pattern);
return (match && match[index])
? match[index]
: '';
}
const extra = {
clsFields: [],
elseFields: [],
add: function (key, value, cls = false) {
if (value && cls) {
this.clsFields.push([key, value]);
}
else if (value) {
this.elseFields.push([key, value]);
}
},
toString: function () {
return [...this.clsFields, ...this.elseFields]
.map(entry => `${entry[0]}: ${entry[1]}`)
.join('\n');
}
};
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "http://find.nlc.cn/search/showDocDetails?docId=-8373230212045865087&dataSource=cjfd&query=wgcna",
"items": [
{
"itemType": "journalArticle",
"title": "基于WGCNA算法的基因共表达网络构建理论及其R软件实现",
"creators": [
{
"firstName": "",
"lastName": "宋长新",
"creatorType": "author",
"fieldMode": 1
},
{
"firstName": "",
"lastName": "雷萍",
"creatorType": "author",
"fieldMode": 1
},
{
"firstName": "",
"lastName": "王婷",
"creatorType": "author",
"fieldMode": 1
}
],
"date": "2013-02-28",
"ISSN": "1674-568X",
"abstractNote": "WGCNA(weighted geneco-expression network analysis)算法是一种构建基因共表达网络的典型系统生物学算法,该算法基于高通量的基因信使RNA(mRNA)表达芯片数据,被广泛应用于国际生物医学领域。本文旨在介绍WGCNA的基本数理原理,并依托R软件包WGNCA以实例的方式介绍其应用。WGCNA算法首先假定基因网络服从无尺度分布,并定义基因共表达相关矩阵、基因网络形成的邻接函数,然后计算不同节点的相异系数,并据此构建分层聚类树(hierarchical clusteringtree),该聚类树的不同分支代表不同的基因模块(module),模块内基因共表达程度高,而分数不同模块的基因共表达程度低。最后,探索模块与特定表型或疾病的关联关系,最终达到鉴定疾病治疗的靶点基因、基因网络的目的。",
"extra": "original-title: Gene Co-expression Network Analysis Based on WGCNA Algorithm-Theory and Implementation in R Software\nfund: 青海省135高层次人才培养基金资助",
"issue": "1",
"libraryCatalog": "Wenjin",
"pages": "143-149",
"publicationTitle": "基因组学与应用生物学",
"url": "http://find.nlc.cn/search/showDocDetails?docId=-8373230212045865087&dataSource=cjfd&query=wgcna",
"attachments": [],
"tags": [
{
"tag": "R软件"
},
{
"tag": "WGCNA算法"
},
{
"tag": "基因共表达网络"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://find.nlc.cn/search/showDocDetails?docId=6149274367424485698&dataSource=ucs01&query=%E7%BA%A2%E6%98%9F%E7%85%A7%E8%80%80%E4%B8%AD%E5%9B%BD",
"items": [
{
"itemType": "book",
"title": "红星照耀中国",
"creators": [
{
"firstName": "",
"lastName": "埃德加·斯诺",
"creatorType": "author",
"fieldMode": 1
},
{
"firstName": "",
"lastName": "董乐山",
"creatorType": "translator",
"fieldMode": 1
}
],
"date": "2012",
"ISBN": "9787506361347",
"abstractNote": "本书分为十二篇,内容包括:探寻红色中国、去红都的道路、在保安、一个共产党员的由来等。",
"extra": "original-author: Edgar Snow\ncreatorsExt: [{\"firstName\":\"\",\"lastName\":\"埃德加·斯诺\",\"creatorType\":\"author\",\"fieldMode\":1,\"country\":\"美\",\"original\":\"Edgar Snow\"},{\"firstName\":\"\",\"lastName\":\"董乐山\",\"creatorType\":\"translator\",\"fieldMode\":1,\"country\":\"\",\"original\":\"\"}]",
"language": "zh-CN",
"libraryCatalog": "Wenjin",
"numPages": "338",
"place": "北京",
"publisher": "作家出版社",
"url": "http://find.nlc.cn/search/showDocDetails?docId=6149274367424485698&dataSource=ucs01&query=%E7%BA%A2%E6%98%9F%E7%85%A7%E8%80%80%E4%B8%AD%E5%9B%BD",
"attachments": [],
"tags": [
{
"tag": "中国工农红军"
},
{
"tag": "史料"
},
{
"tag": "史料"
},
{
"tag": "陕北革命根据地"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://find.nlc.cn/search/showDocDetails?docId=7225006674714026291&dataSource=ucs01,bslw&query=%E4%BF%A1%E7%94%A8",
"items": [
{
"itemType": "thesis",
"title": "基于信用衍生工具的银行业信贷资产管理",
"creators": [
{
"firstName": "",
"lastName": "尹灼",
"creatorType": "author",
"fieldMode": 1
},
{
"firstName": "",
"lastName": "王国刚",
"creatorType": "contributor",
"fieldMode": 1
}
],
"date": "2004",
"language": "zh-CN",
"libraryCatalog": "Wenjin",
"numPages": "289",
"thesisType": "博士学位论文",
"university": "中国社会科学院",
"url": "http://find.nlc.cn/search/showDocDetails?docId=7225006674714026291&dataSource=ucs01,bslw&query=%E4%BF%A1%E7%94%A8",
"attachments": [],
"tags": [
{
"tag": "信用"
},
{
"tag": "信贷"
},
{
"tag": "资金管理"
},
{
"tag": "银行"
},
{
"tag": "风险管理"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://find.nlc.cn/search/showDocDetails?docId=-4758410971070022650&dataSource=ccnd&query=%E6%96%B0%E5%8F%91%E5%B1%95%E7%90%86%E5%BF%B5",
"items": [
{
"itemType": "newspaperArticle",
"title": "新理念新技术促进新发展",
"creators": [
{
"firstName": "",
"lastName": "平伟明",
"creatorType": "author",
"fieldMode": 1
}
],
"date": "2006-12-26",
"libraryCatalog": "Wenjin",
"pages": "B04",
"publicationTitle": "贵州政协报",
"url": "http://find.nlc.cn/search/showDocDetails?docId=-4758410971070022650&dataSource=ccnd&query=%E6%96%B0%E5%8F%91%E5%B1%95%E7%90%86%E5%BF%B5",
"attachments": [],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://find.nlc.cn/search/showDocDetails?docId=7092562696966199047&dataSource=ucs01&query=%E7%90%86%E6%9F%A5%E5%BE%B7",
"items": [
{
"itemType": "book",
"title": "钢琴金曲-理查德·克莱德曼",
"creators": [
{
"firstName": "",
"lastName": "理查德·克莱德曼",
"creatorType": "author",
"fieldMode": 1
}
],
"date": "2008",
"ISBN": "9787884737703",
"extra": "medium: CD\ncreatorsExt: [{\"firstName\":\"\",\"lastName\":\"理查德·克莱德曼\",\"creatorType\":\"author\",\"fieldMode\":1,\"country\":\"法\",\"original\":\"\"}]",
"libraryCatalog": "Wenjin",
"place": "武汉",
"publisher": "扬子江音像出版社",
"url": "http://find.nlc.cn/search/showDocDetails?docId=7092562696966199047&dataSource=ucs01&query=%E7%90%86%E6%9F%A5%E5%BE%B7",
"attachments": [],
"tags": [
{
"tag": "外国"
},
{
"tag": "钢琴曲"
}
],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://find.nlc.cn/search/doSearch?query=%E6%95%85%E4%BA%8B&secQuery=&actualQuery=%E6%95%85%E4%BA%8B&searchType=2&docType=%E5%85%A8%E9%83%A8&isGroup=isGroup&targetFieldLog=%E5%85%A8%E9%83%A8%E5%AD%97%E6%AE%B5&orderBy=RELATIVE",
"items": "multiple"
}
]
/** END TEST CASES **/