-
Notifications
You must be signed in to change notification settings - Fork 2
/
stringify-depute.js
238 lines (202 loc) · 6.18 KB
/
stringify-depute.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
/**
* This file gets a string on which tweets are based.
*
* Authors : Corentin Forler, 2021.
*/
/** @typedef {import("./fetch-informations-depute").Depute} Depute */
/** @typedef {Depute['mandats'][number]} Mandat */
/**
* @param {string} s
* @returns {number | undefined}
*/
function trouverNombreDansOrdinal(s) {
if (s.match(/prem/ui)) { return 1; }
else if (s.match(/deux/ui)) { return 2; }
else if (s.match(/second/ui)) { return 2; }
else if (s.match(/trois/ui)) { return 3; }
else if (s.match(/quatr/ui)) { return 4; }
else if (s.match(/cinq/ui)) { return 5; }
}
/**
*
* @param {number | string} num
* @param {'F' | 'M' | undefined} genre
*/
function formatOrdinal(num, genre) {
switch (num) {
case 1:
case 'I':
return genre === 'F' ? `${num}re` : `${num}er`;
case 2:
case 'II':
return genre === 'F' ? `${num}nde` : `${num}nd`;
default: return `${num}e`;
}
}
function numToSmallRoman(num) {
const roman = [
['X', 10], ['IX', 9],
['V', 5], ['IV', 4],
['I', 1],
];
let str = '';
for (const [letter, value] of roman) {
const q = Math.floor(num / value);
num -= q * value;
str += letter.repeat(q);
}
return str;
}
function formatRegime(regime = '') {
const fmt = (abrev, genre) => {
const numero = trouverNombreDansOrdinal(regime);
if (numero === undefined) { return regime; } // failsafe
return `${formatOrdinal(numToSmallRoman(numero), genre)} ${abrev}`;
};
if (regime.match(/Gouvernement provisoire/ui)) {
return 'GPRF';
} else if (regime.match(/République/ui)) {
return fmt('Rép.', 'F');
} else if (regime.match(/Restauration/ui)) {
return fmt('Rest.', 'F');
} else if (regime.match(/Empire/ui)) {
return fmt('Emp.', 'M');
} else {
return regime;
}
}
function formatInstance(instance = '') {
instance = instance.replace(/Assemblée nationale/ui, 'A.N.'); // https://www.youtube.com/watch?v=jwMFYcXjTbQ
instance = instance.replace(/Chambre des députés des départements/ui, 'Chambre des députés des dépt.');
instance = instance.replace(/Convention nationale/ui, 'Conv. nat.');
instance = instance.replace(/constituante?/ui, 'const.');
instance = instance.replace(/législati(ve|f)/ui, 'législ.');
instance = instance.replace(/nationale?/ui, 'nat.');
return instance;
}
function formatLégislature(leg = '') {
leg = leg.replace(/législature/ui, 'lég.');
return leg;
}
/**
* @param {Mandat} mandat
*/
function getOccupationPolitique(mandat) {
if (mandat.regimePolitique.match(/ - /ui)) {
const [regime, instance] = mandat.regimePolitique.split(' - ');
const legislature = mandat.legislature;
return {
regime: formatRegime(regime),
instance: formatInstance(instance),
legislature: formatLégislature(legislature),
};
} else {
return {
regime: formatRegime(mandat.regimePolitique),
instance: formatInstance(mandat.legislature), // yes, it's weird but it's like that
};
}
}
// Date de naissance et de décès
function datesDeVieToString(depute) {
if (depute.anneeDeces) { // est mort
return `${depute.anneeNaissance}–${depute.anneeDeces}`;
} else if (depute.anneeNaissance) { // a une année de naissance
return `${depute.anneeNaissance}–`;
}
return ''; // else missing data
}
/**
* @param {Depute} depute
* @returns {string}
*/
function deputeToString(depute) {
let str = '';
// Nom complet et dates
if (depute.anneeNaissance || depute.anneeDeces) {
str += `${depute.nomComplet} (${datesDeVieToString(depute)})`;
} else {
str += `${depute.nomComplet}`;
}
str += '\n\n';
// Mandats (dans l'ordre donné par le fetcher)
if (depute.mandats.length > 0) {
str += depute.mandats.length === 1 ? 'Mandat :\n' : 'Mandats :\n';
for (const mandat of depute.mandats) {
const { anneeDebut, anneeFin } = mandat;
const { regime, instance, legislature } = getOccupationPolitique(mandat);
str += '•'; // puce
if (regime && instance) {
if (legislature) {
str += ` ${regime} (${instance}), ${legislature}`;
} else {
str += ` ${regime} (${instance})`;
}
} else if (regime || legislature || instance) {
// fallback if at least one field
str += ' ' + [regime, legislature, instance].filter(Boolean).join(', ');
}
if (anneeDebut && anneeDebut === anneeFin) { // mandat d'un an
str += ` ${anneeDebut}`;
} else if (anneeFin) { // a un début et une fin
str += ` ${anneeDebut}–${anneeFin}`;
} else if (anneeDebut) { // n'a qu'un début
str += ` ${anneeDebut}–`;
} // else missing data
str += '\n';
if (mandat.groupe) {
str += ` ⁃ Groupe : ${mandat.groupe}\n`;
}
if (mandat.departement) {
str += ` ⁃ Département : ${mandat.departement}\n`;
}
str = str.trim() + '\n\n'; // space
}
}
str += '\n';
str += `Source ${depute.hasBio ? 'et biographie(s) ' : ''}: ${depute.bdUrl}`;
str += '\n';
return str;
}
/**
* strlen but counting whole unicode glyphs
* @param {string} s The string to measure
*/
function glyphCount(s) {
return [...s.replace(/https?:\S+/g, 'U'.repeat(23)).replace('•', '12')].length;
}
/**
* @param {string[]} blocks
* @returns {string[]}
*/
function splitStringToTweets(str) {
// split lines but keep lines starting with spaces with previous lines
const blocks = str.split(/\n(?! )/g); // split + lookahead
const tweetTexts = [];
// TODO: split groups of lines bigger than 280 chars
let currentText = '';
for (const block of blocks) {
const willBeTooBig = (glyphCount(currentText + block) + 10) >= 280;
const shouldSplitHere = willBeTooBig;
if (shouldSplitHere) {
tweetTexts.push(currentText.trim());
currentText = '';
}
currentText += block + '\n';
}
if (currentText.length > 0) {
tweetTexts.push(currentText.trim());
}
// Add counter
const n = tweetTexts.length;
if (n >= 2) {
for (let i = 0; i < n; i++) {
tweetTexts[i] += '\n\n' + `(${i + 1}/${n})`;
}
}
return tweetTexts;
}
function deputeToTweets(depute) {
return splitStringToTweets(deputeToString(depute));
}
module.exports = { deputeToTweets };