-
Notifications
You must be signed in to change notification settings - Fork 786
/
Copy pathLe Maitron.js
484 lines (464 loc) · 13.5 KB
/
Le Maitron.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
{
"translatorID": "ee016722-5f02-4362-8ffe-c96e06872b3e",
"label": "Le Maitron",
"creator": "czar",
"target": "^https?://maitron\\.fr/",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2022-09-24 22:15:07"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2018 czar
http://en.wikipedia.org/wiki/User_talk:Czar
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('/spip.php?article')) {
return "encyclopediaArticle";
}
else if (getSearchResults(doc, true)) {
return "multiple";
}
return false;
}
function scrape(doc, _url) {
var newItem = new Zotero.Item("encyclopediaArticle");
newItem.encyclopediaTitle = "Le Maitron";
newItem.language = "fr";
newItem.url = attr(doc, 'link[rel=canonical]', 'href'); // url.replace(/#$/,'');
newItem.title = text(doc, '.notice-titre');
// if title contains square brackets, take its contents and use as encyclopedia name
var subEncyc = newItem.title.match(/\[[^\]]+\]/g);
if (subEncyc) {
newItem.encyclopediaTitle = subEncyc[subEncyc.length - 1].slice(1, -1);
newItem.title = newItem.title.slice(0, -1 * (newItem.encyclopediaTitle.length + 3));
}
newItem.publisher = "Maitron/Editions de l'Atelier";
newItem.place = "Paris";
// ZU.strToISO chokes on diacritics
var prepdate = text(doc, '#copy-text').match(/\d{1,2}\s[^\s]+\s\d{4}/g);
prepdate = prepdate[prepdate.length - 1].normalize('NFD').replace(/[\u0300-\u036f]/g, "");
prepdate = prepdate
.replace('fev', 'feb')
.replace('avr', 'apr')
.replace('mai', 'may')
.replace('juin', 'jun')
.replace('juil', 'jul')
.replace('aout', 'aug');
newItem.date = ZU.strToISO(prepdate);
newItem.abstractNote = text(doc, '.intro');
// var articleID = newItem.url.match(/\d{2,}/);
newItem.attachments.push({
document: doc,
// the following archive URL displays better, but triggers a print dialog pop-up whenever it saves
// url: "/spip.php?page=imprimir_articulo&id_article="+articleID,
title: "Le Maitron snapshot",
mimeType: "text/html"
});
if (newItem.title.split('.').length > 1) {
newItem.shortTitle = newItem.title.split('.')[0];
}
// Authors – haven't seen more than one attributed at once
var authorMetadata = text(doc, '.notice-auteur').match(/\s*Par\s+(.*)/);
if (authorMetadata) {
// remove prefix text
authorMetadata[1] = authorMetadata[1].replace(/[Nn]otice complétée par |[Nn]otice complétée et corrigée par /, "");
for (var author of authorMetadata[1].split(/, | et /)) {
newItem.creators.push(ZU.cleanAuthor(author, "author"));
}
}
newItem.complete();
}
function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
var rows = doc.querySelectorAll('.resultats-liste a, .liste-notices li a');
var titles = doc.querySelectorAll('.resultats-liste strong, .liste-notices li a');
for (let i = 0; i < rows.length; i++) {
let href = rows[i].href;
let title = ZU.trimInternal(titles[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;
}
var articles = [];
for (var i in items) {
articles.push(i);
}
ZU.processDocuments(articles, scrape);
});
}
else {
scrape(doc, url);
}
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "https://maitron.fr/spip.php?article155263",
"items": [
{
"itemType": "encyclopediaArticle",
"title": "CREAGH Ronald, Roberts",
"creators": [
{
"firstName": "Hugues",
"lastName": "Lenoir",
"creatorType": "author"
}
],
"date": "2014-04-14",
"abstractNote": "Né le 16 juin 1929 à Alexandrie (Égypte). Sociologue, professeur de civilisation américaine à Montpellier. Anarchiste.",
"encyclopediaTitle": "Dictionnaire des anarchistes",
"language": "fr",
"libraryCatalog": "Le Maitron",
"place": "Paris",
"publisher": "Maitron/Editions de l'Atelier",
"url": "https://maitron.fr/spip.php?article155263",
"attachments": [
{
"title": "Le Maitron snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://maitron.fr/spip.php?page=recherche_avanc&typerech=simple&lang=fr&swishe_exp=voline&OK=OK&swishe_type=and&swishe_from%5B%5D=full",
"items": "multiple"
},
{
"type": "web",
"url": "https://maitron.fr/spip.php?article154716",
"items": [
{
"itemType": "encyclopediaArticle",
"title": "VOLINE [Vsévolod Mikhaïlovitch Eichenbaum, dit]",
"creators": [
{
"firstName": "Sylvain",
"lastName": "Boulouque",
"creatorType": "author"
}
],
"date": "2022-07-05",
"abstractNote": "Né le 11 août 1882 à Tikhvine (Russie), mort le 18 septembre 1945 à Paris ; militant et théoricien du mouvement anarchiste ; historien du mouvement makhnoviste.",
"encyclopediaTitle": "Dictionnaire des anarchistes",
"language": "fr",
"libraryCatalog": "Le Maitron",
"place": "Paris",
"publisher": "Maitron/Editions de l'Atelier",
"url": "https://maitron.fr/spip.php?article154716",
"attachments": [
{
"title": "Le Maitron snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "http://maitron.fr/spip.php?mot9745&lettre=^(r|R)",
"items": "multiple"
},
{
"type": "web",
"url": "https://maitron.fr/spip.php?article149723&id_mot=216",
"items": [
{
"itemType": "encyclopediaArticle",
"title": "ABDALLAH (écrit aussi MHAMED Abdallah)",
"creators": [
{
"firstName": "Amar",
"lastName": "Benamrouche",
"creatorType": "author"
},
{
"firstName": "Louis-Pierre",
"lastName": "Montoy",
"creatorType": "author"
}
],
"date": "2014-01-09",
"abstractNote": "Syndicaliste CGTU puis CGT du port de Bône [Annaba] (Algérie) ; communiste puis candidat indépendant aux élections locales.",
"encyclopediaTitle": "Dictionnaire Algérie",
"language": "fr",
"libraryCatalog": "Le Maitron",
"place": "Paris",
"publisher": "Maitron/Editions de l'Atelier",
"url": "https://maitron.fr/spip.php?article149723",
"attachments": [
{
"title": "Le Maitron snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://maitron.fr/spip.php?article174841",
"items": [
{
"itemType": "encyclopediaArticle",
"title": "SALANNE René, Jean",
"creators": [
{
"firstName": "Claude",
"lastName": "Roccati",
"creatorType": "author"
}
],
"date": "2021-08-16",
"abstractNote": "Né le 31 janvier 1927 à Bayonne (Pyrénées-Atlantiques), mort le 16 avril 2021 à Paris (XIVe arr.) ; modeleur sur bois ; permanent JOC pour la région Sud-Ouest, secrétaire général adjoint (1951-1953) puis vice-président (1953-1955) et enfin président de la JOC (1955-1956), secrétaire général de la JOC internationale (1956-1961) ; secrétaire confédéral CFTC-CFDT (1962-1970), membre de la commission exécutive de la CFDT en charge du secteur international (1970-1979).",
"encyclopediaTitle": "Le Maitron",
"language": "fr",
"libraryCatalog": "Le Maitron",
"place": "Paris",
"publisher": "Maitron/Editions de l'Atelier",
"url": "https://maitron.fr/spip.php?article174841",
"attachments": [
{
"title": "Le Maitron snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://maitron.fr/spip.php?article154635",
"items": [
{
"itemType": "encyclopediaArticle",
"title": "MATHA Armand, Louis",
"creators": [
{
"firstName": "Guillaume",
"lastName": "Davranche",
"creatorType": "author"
}
],
"date": "2022-07-05",
"abstractNote": "Né le 10 avril 1861 à Casteljaloux (Lot-et-Garonne) ; mort le 12 février 1930 à Draveil (Seine-et-Oise) ; ouvrier coiffeur puis publiciste ; animateur du Libertaire de 1900 à 1910.",
"encyclopediaTitle": "Dictionnaire des anarchistes",
"language": "fr",
"libraryCatalog": "Le Maitron",
"place": "Paris",
"publisher": "Maitron/Editions de l'Atelier",
"url": "https://maitron.fr/spip.php?article154635",
"attachments": [
{
"title": "Le Maitron snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://maitron.fr/spip.php?article154635",
"items": [
{
"itemType": "encyclopediaArticle",
"title": "MATHA Armand, Louis",
"creators": [
{
"firstName": "Guillaume",
"lastName": "Davranche",
"creatorType": "author"
}
],
"date": "2022-07-05",
"abstractNote": "Né le 10 avril 1861 à Casteljaloux (Lot-et-Garonne) ; mort le 12 février 1930 à Draveil (Seine-et-Oise) ; ouvrier coiffeur puis publiciste ; animateur du Libertaire de 1900 à 1910.",
"encyclopediaTitle": "Dictionnaire des anarchistes",
"language": "fr",
"libraryCatalog": "Le Maitron",
"place": "Paris",
"publisher": "Maitron/Editions de l'Atelier",
"url": "https://maitron.fr/spip.php?article154635",
"attachments": [
{
"title": "Le Maitron snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://maitron.fr/spip.php?article154015",
"items": [
{
"itemType": "encyclopediaArticle",
"title": "WINTSCH Jean",
"creators": [
{
"firstName": "Gianpiero",
"lastName": "Bottinelli",
"creatorType": "author"
},
{
"firstName": "Marianne",
"lastName": "Enckell",
"creatorType": "author"
}
],
"date": "2021-08-05",
"abstractNote": "Né à Odessa le 19 janvier 1880, mort à Lausanne (Suisse) le 27 avril 1943 ; médecin ; collaborateur du Réveil anarchiste et de la Voix du Peuple, néomalthusien, fondateur de l’école Ferrer de Lausanne ; marié à Natalie Maléef, deux enfants.",
"encyclopediaTitle": "Dictionnaire des anarchistes",
"language": "fr",
"libraryCatalog": "Le Maitron",
"place": "Paris",
"publisher": "Maitron/Editions de l'Atelier",
"url": "https://maitron.fr/spip.php?article154015",
"attachments": [
{
"title": "Le Maitron snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://maitron.fr/spip.php?article153818",
"items": [
{
"itemType": "encyclopediaArticle",
"title": "BERTRAND Julia, Marie, Victorine",
"creators": [
{
"firstName": "Jean",
"lastName": "Maitron",
"creatorType": "author"
},
{
"firstName": "Guillaume",
"lastName": "Davranche",
"creatorType": "author"
},
{
"firstName": "Rolf",
"lastName": "Dupuy",
"creatorType": "author"
}
],
"date": "2022-08-25",
"abstractNote": "Née le 14 février 1877 à Gemaingoutte (Vosges), morte le 25 mars 1960 à Fontenay-aux-Roses (Seine, Hauts-de-Seine) ; institutrice ; syndicaliste et anarchiste.",
"encyclopediaTitle": "Le Maitron",
"language": "fr",
"libraryCatalog": "Le Maitron",
"place": "Paris",
"publisher": "Maitron/Editions de l'Atelier",
"url": "https://maitron.fr/spip.php?article153818",
"attachments": [
{
"title": "Le Maitron snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://maitron.fr/spip.php?article156858",
"items": [
{
"itemType": "encyclopediaArticle",
"title": "VOISIN Marcel",
"creators": [
{
"firstName": "René",
"lastName": "Bianco",
"creatorType": "author"
},
{
"firstName": "Marianne",
"lastName": "Enckell",
"creatorType": "author"
}
],
"date": "2014-02-20",
"abstractNote": "Né le 26 septembre 1892 à Tours (Indre-et-Loire), mort le 31 janvier 1981 à Paris ; trimardeur, puis gérant d’un magasin de nourriture rationnelle ; militant pacifiste et libertaire.",
"encyclopediaTitle": "Dictionnaire des anarchistes",
"language": "fr",
"libraryCatalog": "Le Maitron",
"place": "Paris",
"publisher": "Maitron/Editions de l'Atelier",
"url": "https://maitron.fr/spip.php?article156858",
"attachments": [
{
"title": "Le Maitron snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/