forked from zotero/translators
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusenix.org.js
More file actions
158 lines (146 loc) · 3.92 KB
/
Copy pathusenix.org.js
File metadata and controls
158 lines (146 loc) · 3.92 KB
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
{
"translatorID": "b97462fa-f20b-4a1e-8a73-3a434a81518b",
"label": "usenix.org",
"creator": "Tim Leonhard Storm",
"target": "^https://www\\.usenix\\.org/conference/.*/presentation",
"minVersion": "5.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2025-07-23 16:12:34"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2025 Tim Leonhard Storm
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 *****
*/
/* Remove pairs of unescaped braces (note that braces in title are quite unlikely anyway) */
function stripAllUnescapedBraces(s) {
let prev;
do {
prev = s;
s = s.replace(/(^|[^\\])(\{(.*?)\})/g, (_, before, full, content) => before + content);
} while (s !== prev);
// Unescape \{ and \} to { and }
return s.replace(/\\([{}])/g, '$1');
}
async function scrape(doc) {
let translator = Zotero.loadTranslator('web');
// Embedded Metadata
translator.setTranslator('951c027d-74ac-47d4-a107-9c3069ab7b48');
translator.setDocument(doc);
translator.setHandler('itemDone', (_obj, item) => {
item.title = stripAllUnescapedBraces(item.title);
item.complete();
});
translator.translate();
}
function detectWeb(doc, url) {
if (url.includes('/presentation/')) {
return 'conferencePaper';
}
return false;
}
async function doWeb(doc, url) {
if (detectWeb(doc, url)) {
await scrape(await requestDocument(url));
}
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "https://google.com/",
"detectedItemType": false,
"items": []
},
{
"type": "web",
"url": "https://www.usenix.org/conference/pepr25/presentation/sharma",
"detectedItemType": "conferencePaper",
"items": [
{
"itemType": "journalArticle",
"title": "Verifying Humanness: Personhood Credentials for the Digital Identity Crisis",
"creators": [
{
"firstName": "Tanusree",
"lastName": "Sharma",
"creatorType": "author"
}
],
"date": "2025",
"language": "en",
"libraryCatalog": "www.usenix.org",
"shortTitle": "Verifying Humanness",
"url": "https://www.usenix.org/conference/pepr25/presentation/sharma",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.usenix.org/conference/usenixsecurity18/presentation/bock",
"items": [
{
"itemType": "conferencePaper",
"title": "Return Of Bleichenbacher’s Oracle Threat (ROBOT)",
"creators": [
{
"firstName": "Hanno",
"lastName": "Böck",
"creatorType": "author"
},
{
"firstName": "Juraj",
"lastName": "Somorovsky",
"creatorType": "author"
},
{
"firstName": "Craig",
"lastName": "Young",
"creatorType": "author"
}
],
"date": "2018",
"ISBN": "9781939133045",
"conferenceName": "27th USENIX Security Symposium (USENIX Security 18)",
"language": "en",
"libraryCatalog": "www.usenix.org",
"pages": "817-849",
"url": "https://www.usenix.org/conference/usenixsecurity18/presentation/bock",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/