scripts / analyse-votes-AN /
Newer Older
685 lines | 33.622kb
ajout script d'analyse des v...
Sébastien MARQUE authored on 2019-02-17
1
#!/bin/bash
2

            
fix info parfois manquante s...
Sébastien MARQUE authored on 2021-11-21
3
set -e
4

            
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
5
for tool in sqlite3 getopt mktemp w3m jq; do
complète re-écriture
Sébastien Marque authored on 2019-04-27
6
    which $tool > /dev/null 2>&1 || {
7
        echo missing tool $tool
8
        exit 1
9
    }
plus de souplesse dans les p...
Sébastien MARQUE authored on 2019-02-20
10
done
11

            
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
12
IFS_=$IFS
13

            
amélioration code
Sébastien Marque authored on 2019-05-30
14
function sqlite_request () {
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
15
    sqlite3 ${2:+-cmd} ${2:+".mode $2"} "$in_ram_database" <<< "$1"
amélioration code
Sébastien Marque authored on 2019-05-30
16
}
17

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
18
function create_database () {
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
19
    sqlite_request "create table if not exists dossiers (id integer primary key, titre text, url text)"
20
    sqlite_request "create table if not exists votes    (id integer primary key, nom text)"
21
    sqlite_request "create table if not exists députés  (id integer primary key, nom text, groupe integer, date text)"
22
    sqlite_request "create table if not exists groupes  (id integer primary key, nom text unique, nom_court text)"
23
    sqlite_request "create table if not exists scrutins (num integer primary key, séance text, date text not null, intitulé text non null, adoption boolean, dossier integer, mise_au_point text)"
24
    sqlite_request "create table if not exists dépouillements (scrutin integer not null, député integer not null, vote integer not null)"
25
    sqlite_request "create unique index if not exists 'index_députés'        on députés (nom, groupe)"
26
    sqlite_request "create unique index if not exists 'index_dossiers'       on dossiers (titre, url)"
27
    sqlite_request "create unique index if not exists 'index_dépouillements' on dépouillements (député, scrutin)"
complète re-écriture
Sébastien Marque authored on 2019-04-27
28

            
29
    for v in Pour Contre Abstention Non-votant; do
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
30
        sqlite_request "insert or ignore into votes (nom) values ('$v')"
ajout script d'analyse des v...
Sébastien MARQUE authored on 2019-02-17
31
    done
complète re-écriture
Sébastien Marque authored on 2019-04-27
32
}
ajout script d'analyse des v...
Sébastien MARQUE authored on 2019-02-17
33

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
34
function update_database () {
35
    test "$no_db_update" = $true_flag && return
36
    tempfile="/dev/shm/scrutin.$$"
37
    progress=0
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
38
    for r in "${!acronymes[@]}"; do
39
        sqlite_request "update groupes set nom_court = \"${acronymes[$r]}\" where nom = \"$r\""
40
    done
41
    sqlite_request "create table if not exists dossier_par_scrutin (scrutin integer, url text)"
42
    echo "récupération des dossiers"
43
    wget -qO- "https://www.assemblee-nationale.fr/dyn/$mandature/dossiers" \
44
    | sed -rn 's/<p class="m-0"><a title="Accéder au dossier législatif" href="([^"]+)">([^<]+)<.+$/\1 \2/p' \
45
    | sed -r "s/^[[:space:]]*//; s/&#039;/'/g" \
46
    | awk -v dq='"' '{
47
        printf("insert or ignore into dossiers (titre, url) values (%s, %s);\n", dq gensub($1 " ", "", "1", $0) dq, dq "https://www.assemblee-nationale.fr" $1 dq)
48
    }' > $tempfile
49
    sqlite3 "$in_ram_database" < $tempfile
fix bug sur premier scrutin
Sébastien Marque authored on 2019-04-27
50
    first_=$first
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
51
    first=$(sqlite_request "select max(num) from scrutins")
complète re-écriture
Sébastien Marque authored on 2019-04-27
52
    if test ${first:-0} -lt $last; then
53
        echo "récupération des scrutins n°$((${first:-0}+1)) à n°$last dans "$database" (à conserver autant que possible)" >&2
ajout script d'analyse des v...
Sébastien MARQUE authored on 2019-02-17
54

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
55
        test $((last % 100)) -ne 0 && last_offset=0
fix dossiers manquants
Sébastien MARQUE authored on 2019-12-09
56
        IFS=$' \t\n'
complète re-écriture
Sébastien Marque authored on 2019-04-27
57
        for offset in $(seq $((last - 100)) -100 ${first:-0} ) $last_offset; do
sélection possible de la man...
Sébastien MARQUE authored on 2021-02-13
58
            wget -qO- "http://www2.assemblee-nationale.fr/scrutins/liste/(offset)/$offset/(legislature)/$mandature/(type)/TOUS/(idDossier)/TOUS" \
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
59
                | awk -v dq='"' '
60
                    BEGIN {
61
                    }
complète re-écriture
Sébastien Marque authored on 2019-04-27
62
                    /<td class="denom">/ {
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
63
                        scrutin = gensub(/^.+denom.>([[:digit:]]+)\\*?<.td./,"\\1","1",$0)
complète re-écriture
Sébastien Marque authored on 2019-04-27
64
                    }
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
65
                    /<td class="desc">/ {
66
                        if (match($0, ">dossier<") > 0)
67
                            dossier[scrutin] = gensub(/^.+.<a href="([^"]+)">dossier<.a>.*$/,"\\1","1",$0)
complète re-écriture
Sébastien Marque authored on 2019-04-27
68
                    }
69
                    END {
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
70
                        for (i in dossier) {
71
                            printf("insert into dossier_par_scrutin (scrutin, url) values (%i, %s);\n", i, dq dossier[i] dq)
72
                        }
73
                    }' > $tempfile
74
            sqlite3 "$in_ram_database" < $tempfile
complète re-écriture
Sébastien Marque authored on 2019-04-27
75
        done
76

            
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
77

            
78
#        IFS=$'\n'
complète re-écriture
Sébastien Marque authored on 2019-04-27
79
        begin=$(date +%s)
80
        for scrutin in $(seq $((${first:-0}+1)) $last); do
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
81
            w3m -cols 512 -dump "http://www2.assemblee-nationale.fr/scrutins/detail/(legislature)/$mandature/(num)/$scrutin" \
82
            | sed -n '/^Analyse du scrutin n° /,/^Votes des groupes/{/^Navigation/,/^  • Non inscrits/d;/^[[:space:]]*$/d;p}' \
83
            | awk -v sq="'" -v dq='"' '
84
                BEGIN { adoption = -1; map = 0 }
85
                /^Analyse du scrutin/ { scrutin = $NF }
86
                /séance du [0-3][0-9]\/[01][0-9]\/(19|20)[0-9]+/ { date = $NF; seance = $1 }
87
                /^Scrutin public sur /            { titre = gensub("^Scrutin public sur l[ae" sq "]s? ?", "", "1") }
88
                /^L.Assemblée .+ adopté/          { adoption = NF == 3 }
89
                /^Nombre de votants :/            { votants      = $NF }
90
                /^Nombre de suffrages exprimés :/ { exprimes     = $NF }
91
                /^Majorité absolue :/             { majo_absolue = $NF }
92
                /^Pour l.adoption :/              { pour         = $NF }
93
                /^Contre :/                       { contre       = $NF }
94
                /^Groupe /                        { groupe = gensub("^Groupe (.+) \\([1-9].+$", "\\1", "1")
95
                                                    groupe = gensub("^(la|les|le|l" sq "|du|des|de|de la|d" sq ") ", "", "1", groupe)
96
                                                  }
97
                /^Non inscrits/                   { groupe = "Non inscrits" }
98
                /^(Pour|Abstention|Contre):/      { position = gensub(":", "", "1", $1) }
99
                /^Non-votants?:/                  {
100
                                                    position = gensub("s?:", "", "1", $1)
101
                                                    nvl = ""
102
                                                    while ($1 != "Groupe") {
103
                                                        getline
104
                                                        if ($1 == "Groupe")
105
                                                            break
106
                                                        nvl = nvl $0
107
                                                    }
108
                                                    f = split(nvl, nv, "(, | et )")
109
                                                    for (i=1; i<=f; i++) {
110
                                                        votes[groupe][position][gensub("(^ +|M\\. |Mme |Mlle | \\(.+)", "", "g", nv[i])]++
111
                                                    }
112
                                                    groupe = gensub("^Groupe (.+) \\([1-9].+$", "\\1", "1")
113
                }
114
                /^  • /                           { votes[groupe][position][gensub("^[[:punct:] ]*", "", "1")]++ }
115
                /^Mises au point/,/^Votes des groupes/ { if ($1 != "(Sous") mises_au_point[map++] = $0 }
116
                END {
117
                    if (adoption < 0)
118
                        adoption = pour >= majo_absolue
119

            
120
                    for (i=1; i<map-1; i++)
121
                        mise_au_point = sprintf("%s[%s]", mise_au_point, mises_au_point[i])
122

            
123
                    printf("insert into scrutins (num, séance, date, intitulé, adoption, mise_au_point) values (%i, %s, %s, %s, %i, %s);\n",
124
                            scrutin,
125
                            sq seance sq,
126
                            sq date sq,
127
                            dq gensub(dq, dq dq, "g", titre) dq,
128
                            adoption,
129
                            dq gensub(dq, dq dq, "g", mise_au_point) dq,
130
                            scrutin)
131
                    printf("update scrutins set dossier = ( select id from dossiers inner join dossier_par_scrutin where dossiers.url = dossier_par_scrutin.url and dossier_par_scrutin.scrutin = %i) where num = %i;\n",
132
                            scrutin,
133
                            scrutin)
134
                    for (groupe in votes) {
135
                        printf("insert or ignore into groupes (nom) values (%s);\n", dq groupe dq)
136
                        for (position in votes[groupe]) {
137
                            for (nom in votes[groupe][position]) {
138
                                if (nom !~ " \\(.+\\) *$")
139
                                    printf("insert or ignore into députés (nom, groupe, date) select %s, id, %s from groupes where nom = %s;\n",
140
                                            dq nom dq,
141
                                            dq date dq,
142
                                            dq groupe dq)
143
                                printf("insert or ignore into dépouillements (scrutin, député, vote) select %i, députés.id, votes.id from députés inner join votes where députés.nom = %s and votes.nom = %s;\n",
144
                                       scrutin,
145
                                       dq nom dq,
146
                                       dq position dq)
147
                            }
148
                        }
149
                    }
150
                }
151
            ' > $tempfile
152
            sqlite3 "$in_ram_database" < $tempfile
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
153

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
154

            
améliore la sortie de progre...
Sébastien MARQUE authored on 2021-12-17
155
            if test $(( ($scrutin - ${first:-0}) * 100 / ( $last - ${first:-0} ) )) -ne ${progress:-0}; then
156
                progress=$(( ($scrutin - ${first:-0}) * 100 / ( $last - ${first:-0} ) ))
complète re-écriture
Sébastien Marque authored on 2019-04-27
157
                if test $(($progress % ${update_progress:-1})) -eq 0; then
158
                    now=$(date +%s)
159
                    delta=$(( $now - $begin ))
améliore la sortie de progre...
Sébastien MARQUE authored on 2021-12-17
160
#                   scrutin = {first:-0}+1 à la première itération
161
                    printf "\r%d%%, ETA %s" $progress $(date +%H:%M:%S -d "$(($delta * ($last - $scrutin) / ($scrutin - ${first:-0}) )) seconds")
complète re-écriture
Sébastien Marque authored on 2019-04-27
162
                fi
163
            fi
164
        done
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
165
        sqlite_request 'drop table dossier_par_scrutin'
166

            
améliore la sortie de progre...
Sébastien MARQUE authored on 2021-12-17
167
        echo -e "\r\033[KTerminé: $(($scrutin - ${first:-0} - 1)) scrutins ajoutés"
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
168
        rm -f "$tempfile"
complète re-écriture
Sébastien Marque authored on 2019-04-27
169
    fi
fix bug sur premier scrutin
Sébastien Marque authored on 2019-04-27
170
    first=$first_
complète re-écriture
Sébastien Marque authored on 2019-04-27
171
}
172

            
173
function write_comparaison () {
multiples modifications
Sébastien MARQUE authored on 2022-08-07
174
    result="scrutins ($(sum <<< "${groupe[@]}" | cut -b1-5))${dossier:+ - ${dossier}}"
complète re-écriture
Sébastien Marque authored on 2019-04-27
175
    content="/dev/shm/$result/content.xml"
multiples modifications
Sébastien MARQUE authored on 2022-08-07
176
    id_cols=(Scrutin Date Séance Titre Adoption Dossier)
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
177
    eval $(sqlite_request 'select printf("typevotes[%i]=%s;", id, nom) from votes')
178
    nb_cols=$(( ${#id_cols[@]} + ${#typevotes[@]} * ${#groupe[@]} ))
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
179
    last_col=$(awk -v n=$nb_cols 'BEGIN{printf("%c%c", n < 27 ? "" : int(n/26) + 64, (n % 26) + (n % 26 == 0 ? 26 : 0) + 64)}' | tr -d '\0')
multiples modifications
Sébastien MARQUE authored on 2022-08-07
180
    colors=($(awk -v n=${#groupe[@]} -v from=${from_color:-2A0636} -v to=${to_color:-D09B8A} '
181
        function rgbL (p) {
182
            r = rgb_from[1] + p * (rgb_to[1] - rgb_from[1])
183
            g = rgb_from[2] + p * (rgb_to[2] - rgb_from[2])
184
            b = rgb_from[3] + p * (rgb_to[3] - rgb_from[3])
185
            L = r * 0.299 + g * 0.587 + b * 0.114
186
            printf("%02x%02x%02x:%s\n", int(r), int(g), int(b), L > 185 ? "000000" : "ffffff")
187
        }
188
        BEGIN {
189
            for (i = split(gensub("(..)(..)(..)", "\\1,\\2,\\3", "1", from), rgb_from, ","); i > 0; i--)
190
                rgb_from[i] = strtonum(sprintf("%d", strtonum("0x" rgb_from[i])))
191
            for (i = split(gensub("(..)(..)(..)", "\\1,\\2,\\3", "1", to), rgb_to, ","); i > 0; i--)
192
                rgb_to[i] = strtonum(sprintf("%d", strtonum("0x" rgb_to[i])))
193

            
194
            print "pour_bash_array_qui_commence_a_index_0"
195
            rgbL(0)
196
            for (i = 1; i < n-1; i++) {
197
                rgbL(i/n)
198
            }
199
            if (n > 1) rgbL(1)
200
        }
201
    '))
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
202
    function write_cell () {
203
        case $1 in
204
            url)
205
                cell='<table:table-cell office:value-type="string" calcext:value-type="string">'
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
206
                cell+="<text:p><text:a xlink:href=$2 xlink:type=\"simple\">$3</text:a></text:p>"
207
                ;;
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
208
            texte)
209
                cell='<table:table-cell office:value-type="string" calcext:value-type="string">'
210
                cell+="<text:p>$2</text:p>"
211
                ;;
212
            nombre)
213
                cell="<table:table-cell office:value-type=\"float\" office:value=\"$2\" calcext:value-type=\"float\">"
214
                cell+="<text:p>$2</text:p>"
215
                ;;
216
            *)
217
                return 1;;
218
        esac
219
        cell+='</table:table-cell>'
220
        echo $cell >> "$content"
221
    }
complète re-écriture
Sébastien Marque authored on 2019-04-27
222

            
223
    echo "génération du fichier $result"
224

            
225
    mkdir -p "/dev/shm/$result/META-INF"
226

            
227
    cat > "/dev/shm/$result/META-INF/manifest.xml" << EOmetainf
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
228
<?xml version="1.0" encoding="UTF-8"?>
229
<manifest:manifest xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0" manifest:version="1.2">
230
 <manifest:file-entry manifest:full-path="/" manifest:version="1.2" manifest:media-type="application/vnd.oasis.opendocument.spreadsheet"/>
231
 <manifest:file-entry manifest:full-path="content.xml" manifest:media-type="text/xml"/>
232
</manifest:manifest>
233
EOmetainf
234

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
235
    printf 'application/vnd.oasis.opendocument.spreadsheet' > "/dev/shm/$result/mimetype"
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
236

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
237
    echo '<?xml version="1.0" encoding="UTF-8"?>' > "$content"
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
238

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
239
    cat >> "$content" << EOcontent
240
    <office:document-content xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" xmlns:draw="urn:oasis:names:tc:opendocument:xmlns:drawing:1.0" xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" xmlns:presentation="urn:oasis:names:tc:opendocument:xmlns:presentation:1.0" xmlns:svg="urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0" xmlns:chart="urn:oasis:names:tc:opendocument:xmlns:chart:1.0" xmlns:dr3d="urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0" xmlns:math="http://www.w3.org/1998/Math/MathML" xmlns:form="urn:oasis:names:tc:opendocument:xmlns:form:1.0" xmlns:script="urn:oasis:names:tc:opendocument:xmlns:script:1.0" xmlns:ooo="http://openoffice.org/2004/office" xmlns:ooow="http://openoffice.org/2004/writer" xmlns:oooc="http://openoffice.org/2004/calc" xmlns:dom="http://www.w3.org/2001/xml-events" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rpt="http://openoffice.org/2005/report" xmlns:of="urn:oasis:names:tc:opendocument:xmlns:of:1.2" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:grddl="http://www.w3.org/2003/g/data-view#" xmlns:tableooo="http://openoffice.org/2009/table" xmlns:drawooo="http://openoffice.org/2010/draw" xmlns:calcext="urn:org:documentfoundation:names:experimental:calc:xmlns:calcext:1.0" xmlns:loext="urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0" xmlns:field="urn:openoffice:names:experimental:ooo-ms-interop:xmlns:field:1.0" xmlns:formx="urn:openoffice:names:experimental:ooxml-odf-interop:xmlns:form:1.0" xmlns:css3t="http://www.w3.org/TR/css3-text/" office:version="1.2">
241
    <office:scripts/>
242
    <office:font-face-decls>
243
    <style:font-face style:name="Liberation Sans" svg:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
244
    <style:font-face style:name="DejaVu Sans" svg:font-family="&apos;DejaVu Sans&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
245
    <style:font-face style:name="FreeSans" svg:font-family="FreeSans" style:font-family-generic="system" style:font-pitch="variable"/>
246
    </office:font-face-decls>
247
    <office:automatic-styles>
248
EOcontent
249

            
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
250
    IFS=$'\n'
complète re-écriture
Sébastien Marque authored on 2019-04-27
251
    for i in $(seq $nb_cols); do
252
        cat >> "$content" << EOcontent
253
            <style:style style:name="co$i" style:family="table-column">
254
            <style:table-column-properties fo:break-before="auto" style:column-width="30.00mm"/>
255
            </style:style>
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
256
EOcontent
complète re-écriture
Sébastien Marque authored on 2019-04-27
257
    done
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
258

            
259
    cat >> "$content" << EOcontent
complète re-écriture
Sébastien Marque authored on 2019-04-27
260
    <style:style style:name="ro1" style:family="table-row">
261
    <style:table-row-properties style:row-height="4.52mm" fo:break-before="auto" style:use-optimal-row-height="true"/>
262
    </style:style>
263
    <style:style style:name="ta1" style:family="table" style:master-page-name="Default">
264
    <style:table-properties table:display="true" style:writing-mode="lr-tb"/>
265
    </style:style>
multiples modifications
Sébastien MARQUE authored on 2022-08-07
266
EOcontent
267

            
268
    for i in $(seq ${#groupe[@]}); do
269
        cat >> "$content" << EOcontent
270
        <style:style style:name="ce$i" style:family="table-cell" style:parent-style-name="Default">
271
        <style:table-cell-properties fo:wrap-option="wrap" style:vertical-align="middle" fo:background-color="#${colors[$i]%:*}"/>
272
        <style:text-properties fo:hyphenate="false" fo:color="#${colors[$i]}"/>
273
        </style:style>
274
EOcontent
275
    done
276

            
277
    cat >> "$content" << EOcontent
complète re-écriture
Sébastien Marque authored on 2019-04-27
278
    </office:automatic-styles>
279
    <office:body>
280
    <office:spreadsheet>
281
    <table:calculation-settings table:automatic-find-labels="false"/>
282
    <table:table table:name="$result" table:style-name="ta1">
283
    <office:forms form:automatic-focus="false" form:apply-design-mode="false"/>
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
284
    <table:table-column table:style-name="co1" table:number-columns-repeated="${#id_cols[@]}" table:default-cell-style-name="Default"/>
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
285
EOcontent
286

            
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
287
    for i in $(seq ${#typevotes[@]}); do
multiples modifications
Sébastien MARQUE authored on 2022-08-07
288
        for g in $(seq ${#groupe[@]}); do
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
289
            cat >> "$content" << EOcontent
multiples modifications
Sébastien MARQUE authored on 2022-08-07
290
            <table:table-column table:style-name="co1" table:default-cell-style-name="ce$g"/>
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
291
EOcontent
292
        done
complète re-écriture
Sébastien Marque authored on 2019-04-27
293
    done
294
    echo '<table:table-row table:style-name="ro1">' >> "$content"
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
295

            
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
296
    IFS=$IFS_
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
297
    for colonne in ${id_cols[@]}; do
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
298
        write_cell texte $colonne
complète re-écriture
Sébastien Marque authored on 2019-04-27
299
    done
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
300

            
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
301
    for typevote in ${typevotes[@]}; do
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
302
        for g in "${groupe[@]}"; do
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
303
            write_cell texte "$typevote - $g"
complète re-écriture
Sébastien Marque authored on 2019-04-27
304
        done
305
    done
306

            
307
    echo '</table:table-row>' >> "$content"
308

            
309
    progress=0
310
    begin=$(date +%s)
311
    line=1
améliore progression
Sébastien Marque authored on 2019-05-03
312
    test -z "$seq" && qty=$(( $last - $first ))
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
313
    IFS=$'\n'
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
314
    scrutin_base_url="https://www2.assemblee-nationale.fr/scrutins/detail/(legislature)/$mandature/(num)/"
complète re-écriture
Sébastien Marque authored on 2019-04-27
315
    for scrutin in $(eval ${seq:-seq $first $last}); do
316

            
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
317
        data=$(sqlite_request "select date,séance,intitulé,adoption,dossiers.url,dossiers.titre from scrutins left join dossiers on scrutins.dossier = dossiers.id where num is $scrutin" json)
318
        date=$(jq -r '.[].date' <<< $data)
319
        seance=$(jq -r '.[]."séance"' <<< $data)
320
        title=$(jq -r '.[]."intitulé" | @html' <<< $data)
321
        adoption=$(jq '.[].adoption' <<< $data)
322
        dossier_url=$(jq '.[].url' <<< $data)
323
        dossier_texte=$(jq -r '.[].titre | @html' <<< $data)
complète re-écriture
Sébastien Marque authored on 2019-04-27
324
        test $adoption -eq 1 && adoption='oui' || adoption='non'
groupe de référence: GDR
Sébastien MARQUE authored on 2019-02-17
325

            
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
326
        echo '<table:table-row table:style-name="ro1">' >> "$content"
327

            
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
328
        write_cell url   "\"$scrutin_base_url$scrutin\"" $scrutin
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
329
        write_cell texte "$date"
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
330
        write_cell texte "$seance"
331
        write_cell texte "$title"
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
332
        write_cell texte "$adoption"
multiples modifications
Sébastien MARQUE authored on 2022-08-07
333
        write_cell url   "${dossier_url/#null/\"\"}" "${dossier_texte/#null}"
ajoute colonnes loyauté, pan...
Sébastien MARQUE authored on 2019-11-13
334

            
multiples modifications
Sébastien MARQUE authored on 2022-08-07
335
        unset votes
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
336
        for typevote in $(seq ${#typevotes[@]}); do
multiples modifications
Sébastien MARQUE authored on 2022-08-07
337
            for (( g = 0; g < ${#groupe[@]}; g++ )); do
338
                votes[${#votes[@]}]=$(sqlite_request "select
ajoute colonnes loyauté, pan...
Sébastien MARQUE authored on 2019-11-13
339
                                            count(député)
340
                                         from
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
341
                                            dépouillements
342
                                         inner join
343
                                            députés, groupes
344
                                         on
345
                                            députés.groupe = groupes.id and dépouillements.député = députés.id
ajoute colonnes loyauté, pan...
Sébastien MARQUE authored on 2019-11-13
346
                                         where
347
                                            scrutin is $scrutin
348
                                         and
349
                                            vote is $typevote
350
                                         and
multiples modifications
Sébastien MARQUE authored on 2022-08-07
351
                                            ${id_groupe[$g]%:*}.nom = '${groupe[$g]}'")
ajoute colonnes loyauté, pan...
Sébastien MARQUE authored on 2019-11-13
352
            done
multiples modifications
Sébastien MARQUE authored on 2022-08-07
353
        done
354
        for ((j = 0; j < ${#groupe[@]}; j++)); do
355
            presence=1 # `let presence+=0` sort en erreur si variable est unset ou égale à 0
356
            for ((i = $j; i < ${#votes[@]}; i += ${#groupe[@]})); do
357
                let presence+=${votes[$i]}
complète re-écriture
Sébastien Marque authored on 2019-04-27
358
            done
multiples modifications
Sébastien MARQUE authored on 2022-08-07
359
            if test $presence -eq 1; then
360
                for ((i = $j; i < ${#votes[@]}; i += ${#groupe[@]})); do
361
                    votes[$i]=-1
362
                done
363
            fi
364
        done
365
        for ((i = 0; i < ${#votes[@]}; i ++)); do
366
            write_cell nombre ${votes[$i]}
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
367
        done
complète re-écriture
Sébastien Marque authored on 2019-04-27
368
        echo '</table:table-row>' >> "$content"
369

            
meilleur calcul progression
Sébastien Marque authored on 2019-04-27
370
        if test $(( ($line * 100) / ${qty:-$last} )) -ne $progress; then
371
            progress=$(( ($line * 100) / ${qty:-$last} ))
372
            if test $(( $progress % ${generation_progress:-5} )) -eq 0; then
complète re-écriture
Sébastien Marque authored on 2019-04-27
373
                now=$(date +%s)
374
                delta=$(( $now - $begin ))
améliore la sortie de progre...
Sébastien MARQUE authored on 2021-12-17
375
                printf "\r%d%%, ETA %s" $progress $(date +%H:%M:%S -d "$(( $delta * (${qty:-$last} - $line) / $line )) seconds")
complète re-écriture
Sébastien Marque authored on 2019-04-27
376
            fi
377
        fi
meilleur calcul progression
Sébastien Marque authored on 2019-04-27
378

            
379
        let line++
380

            
ajout script d'analyse des v...
Sébastien MARQUE authored on 2019-02-17
381
    done
complète re-écriture
Sébastien Marque authored on 2019-04-27
382

            
383
    cat >> "$content" << EOcontent
384
    </table:table>
385
    <table:named-expressions/>
386
    <table:database-ranges>
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
387
    <table:database-range table:name="__Anonymous_Sheet_DB__0" table:target-range-address="&apos;$result&apos;.D1:&apos;$result&apos;.$last_col$line" table:display-filter-buttons="true"/>
complète re-écriture
Sébastien Marque authored on 2019-04-27
388
    </table:database-ranges>
389
    </office:spreadsheet>
390
    </office:body>
391
    </office:document-content>
392
EOcontent
393

            
394
    ( cd "/dev/shm/$result" && zip -r ../"$result" * > /dev/null 2>&1 && cd .. && rm -fr "$result" )
395

            
ajout de l'option de destina...
Sébastien MARQUE authored on 2022-07-30
396
    mv -f "/dev/shm/$result.zip" "${destination_path:+$destination_path/}$result.ods"
complète re-écriture
Sébastien Marque authored on 2019-04-27
397

            
ajout de l'option de destina...
Sébastien MARQUE authored on 2022-07-30
398
    echo -e "\r\033[KTerminé : ${destination_path:+$destination_path/}$result.ods"
complète re-écriture
Sébastien Marque authored on 2019-04-27
399
}
400

            
401
function save_database () {
améliore abandon
Sébastien MARQUE authored on 2020-02-23
402
    test -n "$result" -a -d "/dev/shm/$result" && rm -fr "/dev/shm/$result"
améliore le trap
Sébastien Marque authored on 2019-04-27
403
    test -n "$database" -a -n "$in_ram_database" || return
améliore la sauvegarde de la...
Sébastien MARQUE authored on 2022-07-30
404
    if test -r "$database" && sqldiff=$(sqldiff $in_ram_database $database) && test -z "$sqldiff"; then
405
        echo "pas de modification"
complète re-écriture
Sébastien Marque authored on 2019-04-27
406
    elif test -w "$database"; then
améliore la sauvegarde de la...
Sébastien MARQUE authored on 2022-07-30
407
        rm -f "$database"
408
        sqlite_request '.dump' | sqlite3 "$database"
409
        echo "base de données $database mise à jour"
410
    elif test ! -e "$database" -a -w ${database%/*}; then
411
        sqlite_request '.dump' | sqlite3 "$database"
412
        echo "base de données $database créée"
complète re-écriture
Sébastien Marque authored on 2019-04-27
413
    else
améliore la sauvegarde de la...
Sébastien MARQUE authored on 2022-07-30
414
        echo "je ne peux rien faire avec $database !"
complète re-écriture
Sébastien Marque authored on 2019-04-27
415
    fi
nettoie à la sortie du scrip...
Sébastien MARQUE authored on 2022-07-30
416
    rm -f "$in_ram_database" "$tempfile"
complète re-écriture
Sébastien Marque authored on 2019-04-27
417
}
418

            
factorisation
Sébastien MARQUE authored on 2020-02-08
419
function dernier_scrutin_public () {
sélection possible de la man...
Sébastien MARQUE authored on 2021-02-13
420
    wget -qO- "http://www2.assemblee-nationale.fr/scrutins/liste/(legislature)/$mandature/(type)/TOUS/(idDossier)/TOUS" \
corrige récupération du numé...
Sébastien MARQUE authored on 2022-07-30
421
            | sed -rn 's/^.*<td class="denom">([0-9]+)[^0-9].*$/\1/p' \
factorisation
Sébastien MARQUE authored on 2020-02-08
422
            | head -1
423
}
424

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
425
trap save_database EXIT
426

            
corrige la configuration écr...
Sébastien MARQUE authored on 2022-07-30
427
test -z "$database" && database="${0}.db"
428

            
429
declare -A acronymes
430
if test -n "$config_file"; then
431
    source "$config_file"
432
else
433
    config_file="${0}.conf"
434
    if test -r "$config_file"; then
435
        source "$config_file"
436
    fi
437
fi
438

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
439
true_flag=$(mktemp --dry-run XXXXX)
440

            
441
while [[ $# -gt 0 ]]; do
442
    case "$1" in
443
        "--no-db-update")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
444
#|ne met pas à jour la base de données
multiples modifications
Sébastien MARQUE authored on 2022-08-07
445
            if test ${db_update_only:-OK} = $true_flag; then
446
                echo "option incompatible avec --db-update-only"
447
                exit 1
448
            fi
complète re-écriture
Sébastien Marque authored on 2019-04-27
449
            no_db_update=$true_flag;;
450
        "--db-update-only")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
451
#|ne génère pas de fichier de résultat
multiples modifications
Sébastien MARQUE authored on 2022-08-07
452
            if test ${no_db_update:-OK} = $true_flag; then
453
                echo "option incompatible avec --no-db-update"
454
                exit 1
455
            fi
complète re-écriture
Sébastien Marque authored on 2019-04-27
456
            db_update_only=$true_flag;;
multiples modifications
Sébastien MARQUE authored on 2022-08-07
457
        "--cible"|"-c")
458
#<nom court du groupe>|ajoute les scrutins de ce groupe, de ce ou cette députée, les colonnes seront dans l'ordre
459
            _groupe[${#_groupe[@]}]="${2}"
complète re-écriture
Sébastien Marque authored on 2019-04-27
460
            shift;;
multiples modifications
Sébastien MARQUE authored on 2022-08-07
461
        "--couleurs")
462
#<nombre hexadécimal>:<nombre hexadécimal>|colore les colonnes en dégradé entre les deux couleurs comprises
463
            if grep -iq '[^0-9A-F:]' <<< ${2:-ERROR}; then
464
                echo "$1 ${2:-ERROR}: format attendu <nombre>:<nombre>"
465
                exit 1
466
            elif egrep -iq '[0-9A-F]{6}:[0-9A-F]{6}' <<< ${2:-ERROR}; then
467
                from_color=${2%:*}
468
                to_color=${2#*:}
469
            else
470
                echo erreur $2: couleur RGB au format hexadécimal demandé
471
            fi
complète re-écriture
Sébastien Marque authored on 2019-04-27
472
            shift;;
sélection possible de la man...
Sébastien MARQUE authored on 2021-02-13
473
        "--mandature")
474
           mandature="$2"
475
           ;;
multiples modifications
Sébastien MARQUE authored on 2022-08-07
476
        "--scrutin")
477
#<nombre>[:<nombre>]|commence la génération du résultat pour le scrutin <nombre>, ou entre les deux nombres donnés
478
            if grep -q '[^0-9:]' <<< ${2:-ERROR}; then
479
                echo "$1 ${2:-ERROR}: format attendu <nombre>[:<nombre>]"
480
                exit 1
481
            elif egrep -q '[1-9][0-9]*(:[1-9][0-9]*)?' <<< ${2:-ERROR}; then
482
                first=${2%:*}
483
                last=${2#*:}
484
                if test $first -gt $last; then
485
                    last+=:$first
486
                    first=${last%:*}
487
                    last=${last#*:}
488
                fi
489
            else
490
                echo "$1 ${2:-ERROR}: <nombre> ne doit pas commencer par 0"
491
                exit 1
492
            fi
493
            shift;;
complète re-écriture
Sébastien Marque authored on 2019-04-27
494
        "--premier-scrutin")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
495
#<numéro>|commence la génération du résultat à partir du scrutin <numéro>
complète re-écriture
Sébastien Marque authored on 2019-04-27
496
            first="$2"
497
            shift;;
498
        "--dernier-scrutin")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
499
#<numéro>|termine la génération du résultat au scrutin <numéro>
complète re-écriture
Sébastien Marque authored on 2019-04-27
500
            last="$2"
501
            shift;;
502
        "--période")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
503
#<jj/mm/aaaa:JJ/MM/AAAA>|génère un résultat pour les scrutins allant de jj/mm/aaaa à JJ/MM/AAAA
complète re-écriture
Sébastien Marque authored on 2019-04-27
504
            periode=$true_flag
505
            periode_value="$2"
506
            shift;;
507
        "--liste-députés-du-groupe")
multiples modifications
Sébastien MARQUE authored on 2022-08-07
508
#<groupe>|liste les député·e·s du groupe <groupe>
complète re-écriture
Sébastien Marque authored on 2019-04-27
509
            liste_deputes=$true_flag
modifie options (amélioratio...
Sébastien MARQUE authored on 2022-07-30
510
            liste_deputes_value="${2}"
complète re-écriture
Sébastien Marque authored on 2019-04-27
511
            shift;;
512
        "--liste-députés")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
513
#|liste tou-te-s les député-e-s de la mandature
complète re-écriture
Sébastien Marque authored on 2019-04-27
514
            liste_deputes=$true_flag;;
515
        "--liste-dossiers")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
516
#|affiche une liste numérotée des dossiers et sort
complète re-écriture
Sébastien Marque authored on 2019-04-27
517
            liste_dossiers=$true_flag;;
518
        "--dossier")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
519
#<numéro>|génère un résultat pour le dossier numéroté <numéro>
complète re-écriture
Sébastien Marque authored on 2019-04-27
520
            dossier=$true_flag
521
            dossier_value="$2"
522
            shift;;
523
        "--dossiers")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
524
#|sélection interactive du dossier
complète re-écriture
Sébastien Marque authored on 2019-04-27
525
            dossier=$true_flag;;
526
        "--conf")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
527
#<fichier>|indique le chemin vers le fichier de configuration. Par défaut "{_}.conf"
complète re-écriture
Sébastien Marque authored on 2019-04-27
528
            test -r "$2" || {
529
                echo "config introuvable $2" >&2
530
                options_error=$true_flag
531
            }
532
            config_file="$2"
533
            shift;;
ajout de l'option de destina...
Sébastien MARQUE authored on 2022-07-30
534
        "--dest")
535
#<répertoire>|génère le fichier dans le répertoire spécifié. Par défaut $PWD
536
            if test -n "$2" && test -d "$2" -a -r "$2"; then
537
                destination_path="$2"
538
                shift
539
            else
540
                echo "$2 n'est pas un répertoire ou n'est pas autorisé en écriture" >&2
541
                exit 1
542
            fi;;
complète re-écriture
Sébastien Marque authored on 2019-04-27
543
        "--database")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
544
#<fichier>|indique le chemin vers la base de données SQLite3 contenant les informations. Par défaut "{_}.db"
modifie options (amélioratio...
Sébastien MARQUE authored on 2022-07-30
545
            if test -r "$2" && file -b "$2" | grep -q '^SQLite 3.x database'; then
complète re-écriture
Sébastien Marque authored on 2019-04-27
546
                echo "erreur sur option database: fichier '$2' introuvable ou pas une base SQLite 3" >&2
547
                options_error=$true_flag
modifie options (amélioratio...
Sébastien MARQUE authored on 2022-07-30
548
            fi
complète re-écriture
Sébastien Marque authored on 2019-04-27
549
            database="$2"
550
            shift;;
551
        "--progrès-génération")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
552
#<chiffre>|affiche de la progression de la génération du fichier tous les <chiffre>%. Par défaut 5
complète re-écriture
Sébastien Marque authored on 2019-04-27
553
            generation_progress="$2"
554
            shift;;
555
        "--progrès-update")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
556
#<chiffre>|affiche de la progression de la mise à jour de la base de données tous les <chiffre>%. Par défaut 1
complète re-écriture
Sébastien Marque authored on 2019-04-27
557
            update_progress="$2"
558
            shift;;
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
559
        "--help")
560
#|affiche cette aide et quitte
561
            echo "$0 [options]"
562
            echo "génère un classeur ODS pour comparer les scrutins publics de la 15ème mandature à l'Assemblée Nationale"
563
            echo
564
            sed -rn '/^ *"--.+"\)/N; s/^ *"(--.+)"\)\n#(.+)$/\1|\2/p' "$0" \
565
                | awk -F'|' -v marge='  ' -v prog="$0" '{
566
                    printf("%s %s\n" marge "%s\n\n", $1, $2, gensub("\\. ", "\\\n" marge, "g", gensub("\\{_\\}", prog, "g", $3)))
567
                }'
568
            exit;;
complète re-écriture
Sébastien Marque authored on 2019-04-27
569
    esac
570
    shift
ajout script d'analyse des v...
Sébastien MARQUE authored on 2019-02-17
571
done
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
572

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
573
test "$options_error" = $true_flag && exit 1
ajout script d'analyse des v...
Sébastien MARQUE authored on 2019-02-17
574

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
575
in_ram_database=$(mktemp --dry-run /dev/shm/XXXXXXXXXXXX)
576
if test -r "$database"; then
577
    cp "$database" "$in_ram_database"
578
else
579
    create_database
580
fi
ajout script d'analyse des v...
Sébastien MARQUE authored on 2019-02-17
581

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
582
if test "$periode" = $true_flag; then
corrige période d'extraction...
Sébastien MARQUE authored on 2022-07-30
583
    function get_date () {
584
        sqlite_request "select distinct(date) from scrutins order by num asc" | awk -v d="$1" -v comp=$2 '
585
            function norm_date (date) {
586
                split(date, a, "/")
587
                return sprintf("%s%s%s",
588
                    length(a[3]) == 4 ? a[3] : length(a[3]) == 2 ? "20" a[3] : strftime("%Y", systime()),
589
                    length(a[2]) == 2 ? a[2] : "0" a[2],
590
                    length(a[1]) == 2 ? a[1] : "0" a[1])
591
            }
592
            function output (date) {
593
                print date
594
                found = 1
595
                exit
596
            }
597
            BEGIN { d = norm_date(d) }
598
            {
599
                s = norm_date($1)
600
                if (NR == 1 && s > d && comp == "first") output($1)
601
                if (s >= d && comp == "first") output($1)
602
                if (s == d && comp == "last")  output($1)
603
                if (s >  d && comp == "last")  output(previous)
604
                previous = $1
605
            }
606
            END {
607
                if (!found) print previous
608
            }'
609
    }
610
    first=$(sqlite_request "select min(num) from scrutins where date = '$(get_date ${periode_value%:*} first)'")
611
    last=$(sqlite_request "select max(num) from scrutins where date = '$(get_date ${periode_value#*:} last)'")
fix bug sur premier scrutin
Sébastien Marque authored on 2019-04-27
612
elif test "$dossier" != $true_flag; then
factorisation
Sébastien MARQUE authored on 2020-02-08
613
    test -z "$last" && last=$(dernier_scrutin_public)
fix bug sur premier scrutin
Sébastien Marque authored on 2019-04-27
614
    test -z "$first" && first=1
complète re-écriture
Sébastien Marque authored on 2019-04-27
615
fi
affiche nom du fichier des r...
Sébastien MARQUE authored on 2019-03-30
616

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
617
if test "$liste_dossiers" = $true_flag; then
améliore la sortie des dossi...
Sébastien MARQUE authored on 2022-07-30
618
    sqlite_request "select printf('• %s (%s)', titre, url) from dossiers"
complète re-écriture
Sébastien Marque authored on 2019-04-27
619
    exit
620
fi
621

            
622
if test "$db_update_only" = $true_flag; then
623
    unset first last
factorisation
Sébastien MARQUE authored on 2020-02-08
624
    last=$(dernier_scrutin_public)
complète re-écriture
Sébastien Marque authored on 2019-04-27
625
    update_database
626
    exit
627
fi
628

            
629
if test "$liste_deputes" = $true_flag; then
630
    if test -n "$liste_deputes_value"; then
améliore sélection (à contin...
Sébastien MARQUE authored on 2022-07-30
631
        sqlite_request "select printf('%s - %s%s',
632
                                      députés.nom,
633
                                      groupes.nom,
634
                                      iif(groupes.nom_court is not null, ' [' || groupes.nom_court || ']', ''))
635
                        from députés
636
                        inner join groupes on groupes.id = députés.groupe
637
                        where
638
                            groupes.nom like '%$liste_deputes_value%'
639
                        or
640
                            groupes.nom_court = '$liste_deputes_value'"
complète re-écriture
Sébastien Marque authored on 2019-04-27
641
    else
améliore sélection (à contin...
Sébastien MARQUE authored on 2022-07-30
642
        sqlite_request "select printf('%s - %s%s',
643
                                      députés.nom,
644
                                      groupes.nom,
645
                                      iif(groupes.nom_court is not null, ' [' || groupes.nom_court || ']', ''))
646
                        from députés
647
                        inner join groupes on groupes.id = députés.groupe
648
                        order by groupes.nom asc"
complète re-écriture
Sébastien Marque authored on 2019-04-27
649
    fi
650
    exit
651
fi
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
652

            
multiples modifications
Sébastien MARQUE authored on 2022-08-07
653
for (( g = 0; g < ${#_groupe[@]}; g++ )); do
654
    # on vérifie si c'est un ou une député
655
    depute_count=$(sqlite_request "select count(distinct nom) from députés where nom like '%${_groupe[$g]}%'")
656
    groupe_count=$(sqlite_request "select count(distinct nom) from groupes where nom like \"%${_groupe[$g]}%\" or nom_court is '${_groupe[$g]}'")
657
    if test $depute_count -eq 1 -a $groupe_count -ne 1; then
658
        groupe[$g]=$(sqlite_request "select distinct nom from députés where nom like '%${_groupe[$g]}%'")
659
        id_groupe[$g]=députés:$(sqlite_request "select group_concat(id) from députés where nom is '${groupe[$g]}'")
660
        continue
661
    elif test $groupe_count -eq 1 -a $depute_count -ne 1; then
662
        groupe[$g]=$(sqlite_request "select distinct nom from groupes where nom like \"%${_groupe[$g]}%\" or nom_court is '${_groupe[$g]}'")
663
        id_groupe[$g]=groupes:$(sqlite_request "select id from groupes where nom is '${groupe[$g]}'")
664
        continue
665
    elif test $groupe_count -eq 1 -a $depute_count -eq 1; then
666
        echo "dénomination ambigüe pour ${_groupe[$g]}"
667
        sqlite_request "select printf('député·e: %s', distinct nom) from députés where nom like '%${_groupe[$g]}%'" | grep --color -i "${_groupe[$g]}"
668
        sqlite_request "select printf('groupe  : %s', distinct nom) from groupes where nom like \"%${_groupe[$g]}%\" or nom_court is '${_groupe[$g]}'" | grep --color -i "${_groupe[$g]}"
669
        exit 1
670
    elif test $depute_count -gt 1; then
671
        echo plusieurs député·e·s correspondant à "${_groupe[$g]}" trouvé·e·s
672
        sqlite_request "select distinct nom from députés where nom like '%${_groupe[$g]}%'" | grep --color -i "${_groupe[$g]}"
673
        exit 1
674
    elif test $groupe_count -gt 1; then
675
        echo plusieurs groupes correspondant à "${_groupe[$g]}" trouvés
676
        sqlite_request "select distinct nom from groupes where nom like \"%${_groupe[$g]}%\" or nom_court is '${_groupe[$g]}'" | grep --color -i "${_groupe[$g]}"
677
        exit 1
678
    else
679
        echo aucun·e député·e ou groupe ne correspond au critère "${_groupe[$g]}"
680
        exit 1
complète re-écriture
Sébastien Marque authored on 2019-04-27
681
    fi
multiples modifications
Sébastien MARQUE authored on 2022-08-07
682
done
complète re-écriture
Sébastien Marque authored on 2019-04-27
683

            
684
update_database
685
write_comparaison