This repository has been archived by the owner on Jan 3, 2020. It is now read-only.
forked from zotero/translators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWikipedia Citation Templates.js
377 lines (340 loc) · 10.1 KB
/
Wikipedia Citation Templates.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
{
"translatorID":"3f50aaac-7acc-4350-acd0-59cb77faf620",
"translatorType":2,
"label":"Wikipedia Citation Templates",
"creator":"Simon Kornblith",
"target":"txt",
"minVersion":"1.0.0b4.r1",
"maxVersion":"",
"priority":100,
"displayOptions":{"exportCharset":"UTF-8"},
"browserSupport":"gcs",
"inRepository":true,
"lastUpdated":"2015-02-21 07:16:26"
}
var fieldMap = {
edition:"edition",
publisher:"publisher",
doi:"DOI",
isbn:"ISBN",
issn:"ISSN",
conference:"conferenceName",
volume:"volume",
issue:"issue",
pages:"pages",
number:"episodeNumber"
};
var typeMap = {
book:"Cite book",
bookSection:"Cite book",
journalArticle:"Cite journal",
magazineArticle:"Cite news",
newspaperArticle:"Cite news",
thesis:"Cite paper",
letter:"Cite",
manuscript:"Cite book",
interview:"Cite interview",
film:"Cite AV media",
artwork:"Cite",
webpage:"Cite web",
report:"Cite conference",
bill:"Cite",
hearing:"Cite",
patent:"Cite",
statute:"Cite",
email:"Cite email",
map:"Cite",
blogPost:"Cite web",
instantMessage:"Cite",
forumPost:"Cite web",
audioRecording:"Cite",
presentation:"Cite paper",
videoRecording:"Cite AV media",
tvBroadcast:"Cite episode",
radioBroadcast:"Cite episode",
podcast:"Cite podcast",
computerProgram:"Cite",
conferencePaper:"Cite conference",
document:"Cite",
encyclopediaArticle:"Cite encyclopedia",
dictionaryEntry:"Cite encyclopedia"
};
function formatAuthors(authors, useTypes) {
var text = "";
for (var i=0; i<authors.length; i++) {
var author = authors[i];
text += ", "+author.firstName;
if(author.firstName && author.lastName) text += " ";
text += author.lastName;
if(useTypes) text += " ("+Zotero.Utilities.getLocalizedCreatorType(author.creatorType)+")";
}
return text.substr(2);
}
function formatFirstAuthor(authors, useTypes) {
var firstCreator = authors.shift();
var field = firstCreator.lastName;
if(firstCreator.lastName && firstCreator.firstName) field += ", ";
field += firstCreator.firstName;
if(useTypes) field += " ("+Zotero.Utilities.getLocalizedCreatorType(firstCreator.creatorType)+")";
return field;
}
function formatDate(date) {
var date = date.substr(0, date.indexOf(" "));
if(date.substr(4, 3) == "-00") {
date = date.substr(0, 4);
} else if(date.substr(7, 3) == "-00") {
date = date.substr(0, 7);
}
return date;
}
function doExport() {
var first = true;
while(item = Zotero.nextItem()) {
// determine type
var type = typeMap[item.itemType];
if(!type) type = "Cite";
var properties = new Object();
for(var wikiField in fieldMap) {
var zoteroField = fieldMap[wikiField];
if(item[zoteroField]) properties[wikiField] = item[zoteroField];
}
if(item.creators && item.creators.length) {
if(type == "Cite episode") {
// now add additional creators
properties.credits = formatAuthors(item.creators, true);
} else if(type == "Cite AV media") {
properties.people = "";
// make first creator first, last
properties.people = formatFirstAuthor(item.creators, true);
// now add additional creators
if(item.creators.length) properties.people += ", "+formatAuthors(item.creators, true);
// use type
if(item.type) {
properties.medium = item.type;
}
} else if(type == "Cite email") {
// get rid of non-authors
for(var i=0; i<item.creators.length; i++) {
if(item.creators[i].creatorType != "author") {
// drop contributors
item.creators.splice(i--, 1);
}
}
// make first authors first, last
properties.author = formatFirstAuthor(item.creators);
// add supplemental authors
if(item.creators.length) {
properties.author += ", "+formatAuthors(item.creators);
}
} else if(type == "Cite interview") {
// check for an interviewer or translator
var interviewers = [];
var translators = [];
for(var i=0; i<item.creators.length; i++) {
if(item.creators[i].creatorType == "translator") {
translators.push(item.creators.splice(i--,1)[0]);
} else if(item.creators[i].creatorType == "interviewer") {
interviewers.push(item.creators.splice(i--,1)[0]);
} else if(item.creators[i].creatorType == "contributor") {
// drop contributors
item.creators.splice(i--,1);
}
}
// interviewers
if(interviewers.length) {
properties.interviewer = formatAuthors([interviewers.shift()]);
if(interviewers.length) properties.cointerviewers = formatAuthors(interviewers);
}
// translators
if(translators.length) {
properties.cointerviewers = (properties.cointerviewers ? properties.cointerviewers+", " : "");
properties.cointerviewers += formatAuthors(translators);
}
// interviewees
if(item.creators.length) {
// take up to 4 interviewees
var i = 1;
while((interviewee = item.creators.shift()) && i <= 4) {
var lastKey = "last";
var firstKey = "first";
if(i != 1) {
lastKey += i;
firstKey += i;
}
properties[lastKey] = interviewee.lastName;
properties[firstKey] = interviewee.firstName;
}
}
// medium
if(item.medium) {
properties.type = item.medium
}
} else {
// check for an editor or translator
var editors = [];
var translators = [];
for(var i=0; i < item.creators.length; i++) {
var creator = item.creators[i];
if(creator.creatorType == "translator") {
translators.push(item.creators.splice(i--,1)[0]);
} else if(creator.creatorType == "editor") {
editors.push(item.creators.splice(i--,1)[0]);
} else if(creator.creatorType == "contributor") {
// drop contributors
item.creators.splice(i--, 1);
}
}
// editors
var others = "";
if(editors.length) {
var editorText = formatAuthors(editors)+(editors.length == 1 ? " (ed.)" : " (eds.)");
if(item.itemType == "bookSection" || type == "Cite conference" || type == "Cite encyclopedia") {
// as per docs, use editor only for chapters
properties.editors = editorText;
} else {
others = editorText;
}
}
// translators
if(translators.length) {
if(others) others += ", ";
others += formatAuthors(translators)+" (trans.)";
}
// We need to be certain that these come out in the right order, so
// deal with it when actually writing output
if (item.creators.length) {
properties.authors = item.creators.map(function(c) {
return {
last: c.lastName,
first: c.firstName
};
});
}
// attach others
if(others) {
properties.others = others;
}
}
}
if(item.itemType == "bookSection") {
properties.title = item.publicationTitle;
properties.chapter = item.title;;
} else {
properties.title = item.title;
if(type == "Cite journal") {
properties.journal = item.publicationTitle;
} else if(type == "Cite conference") {
properties.booktitle = item.publicationTitle;
} else if(type == "Cite encyclopedia") {
properties.encyclopedia = item.publicationTitle;
} else {
properties.work = item.publicationTitle;
}
}
if(type == "Cite web" && item.type) {
properties.format = item.type;
}
if(item.place) {
if(type == "Cite episode") {
properties.city = item.place;
} else {
properties.location = item.place;
}
}
if(item.series) {
properties.series = item.series;
} else if(item.seriesTitle) {
properties.series = item.seriesTitle;
} else if(item.seriesText) {
properties.series = item.seriesText;
}
// Don't include access date for journals with no URL
if(item.accessDate && !(item.itemType == 'journalArticle' && !item.url)) {
properties.accessdate = formatDate(item.accessDate);
}
if(item.date) {
if(type == "Cite email") {
properties.senddate = formatDate(item.date);
} else {
var date = Zotero.Utilities.strToDate(item.date);
if (date["year"] != undefined) {
var mm = "00";
if (date.month !== undefined) {
mm = date["month"];
mm = ZU.lpad(mm + 1, '0', 2);
}
var dd = "00";
if (date["day"] !== undefined) {
dd = ZU.lpad(date.day, '0', 2);
}
var yyyy = ZU.lpad(date.year.toString(), '0', 4);
var date = formatDate(yyyy + '-' + mm + '-' + dd + ' ');
if(type == "Cite email") {
properties.senddate = date;
} else {
properties.date = date;
}
}
}
}
if(item.runningTime) {
if(type == "Cite episode") {
properties.minutes = item.runningTime;
} else {
properties.time = item.runningTime;
}
}
if(item.url && item.accessDate) {
if(item.itemType == "bookSection") {
properties.chapterurl = item.url;
} else {
properties.url = item.url;
}
}
if(properties.pages) {
properties.pages = properties.pages.replace(/[^0-9]+/,"–")//separate page numbers with en dash
}
if(item.extra) {
// automatically fill in PMCID, PMID, and JSTOR fields
var extraFields={
pmid: /^PMID\s*\:\s*([0-9]+)/m,
pmc: /^PMCID\s*\:\s*((?:PMC)?[0-9]+)/m
};
for(var f in extraFields){
var match = item.extra.match(extraFields[f]);
if(match) properties[f] = match[1];
}
}
if(item.url) {
//try to extract missing fields from URL
var libraryURLs={
pmid:/www\.ncbi\.nlm\.nih\.gov\/pubmed\/([0-9]+)/i,
pmc:/www\.ncbi\.nlm\.nih\.gov\/pmc\/articles\/((?:PMC)?[0-9]+)/i,
jstor:/www\.jstor\.org\/stable\/([^?#]+)/i
};
for(var f in libraryURLs){
if(properties[f]) continue; //don't overwrite from extra field
var match = item.url.match(libraryURLs[f]);
if(match) properties[f] = match[1];
}
}
// write out properties
Zotero.write((first ? "" : "\r\n") + "{{"+type);
for(var key in properties) {
if (!properties[key]) continue;
if (key == 'authors') {
var index = properties.authors.length > 1;
for (var i=0; i<properties.authors.length; i++) {
Zotero.write('| last' + (i|| index ? i+1 : '') + ' = ' + properties.authors[i].last);
if (properties.authors[i].first) {
Zotero.write('| first' + (i || index ? i+1 : '') + ' = ' + properties.authors[i].first);
}
}
} else {
Zotero.write("| "+key+" = "+properties[key]);
}
}
Zotero.write("}}");
first = false;
}
}