scripts / analyse-votes-AN /
Newer Older
779 lines | 37.257kb
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

            
n'autorise qu'une seule exéc...
seb authored on 2022-08-17
5
# on n'autorise qu'une seule exécution à la fois
6
process_token=$(mktemp --dry-run /dev/shm/XXXXXXXXXXXXXXXX)
7
token_file="$process_token.${0##*/}"
8

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

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

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

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
22
function create_database () {
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
23
    sqlite_request "create table if not exists dossiers (id integer primary key, titre text, url text)"
24
    sqlite_request "create table if not exists votes    (id integer primary key, nom text)"
25
    sqlite_request "create table if not exists députés  (id integer primary key, nom text, groupe integer, date text)"
26
    sqlite_request "create table if not exists groupes  (id integer primary key, nom text unique, nom_court text)"
27
    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)"
28
    sqlite_request "create table if not exists dépouillements (scrutin integer not null, député integer not null, vote integer not null)"
29
    sqlite_request "create unique index if not exists 'index_députés'        on députés (nom, groupe)"
30
    sqlite_request "create unique index if not exists 'index_dossiers'       on dossiers (titre, url)"
31
    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
32

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

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

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
59
        test $((last % 100)) -ne 0 && last_offset=0
fix dossiers manquants
Sébastien MARQUE authored on 2019-12-09
60
        IFS=$' \t\n'
complète re-écriture
Sébastien Marque authored on 2019-04-27
61
        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
62
            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
63
                | awk -v dq='"' '
64
                    BEGIN {
65
                    }
complète re-écriture
Sébastien Marque authored on 2019-04-27
66
                    /<td class="denom">/ {
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
67
                        scrutin = gensub(/^.+denom.>([[:digit:]]+)\\*?<.td./,"\\1","1",$0)
complète re-écriture
Sébastien Marque authored on 2019-04-27
68
                    }
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
69
                    /<td class="desc">/ {
70
                        if (match($0, ">dossier<") > 0)
71
                            dossier[scrutin] = gensub(/^.+.<a href="([^"]+)">dossier<.a>.*$/,"\\1","1",$0)
complète re-écriture
Sébastien Marque authored on 2019-04-27
72
                    }
73
                    END {
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
74
                        for (i in dossier) {
75
                            printf("insert into dossier_par_scrutin (scrutin, url) values (%i, %s);\n", i, dq dossier[i] dq)
76
                        }
77
                    }' > $tempfile
78
            sqlite3 "$in_ram_database" < $tempfile
complète re-écriture
Sébastien Marque authored on 2019-04-27
79
        done
80

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

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

            
124
                    for (i=1; i<map-1; i++)
125
                        mise_au_point = sprintf("%s[%s]", mise_au_point, mises_au_point[i])
126

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

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

            
améliore la sortie de progre...
Sébastien MARQUE authored on 2021-12-17
159
            if test $(( ($scrutin - ${first:-0}) * 100 / ( $last - ${first:-0} ) )) -ne ${progress:-0}; then
160
                progress=$(( ($scrutin - ${first:-0}) * 100 / ( $last - ${first:-0} ) ))
complète re-écriture
Sébastien Marque authored on 2019-04-27
161
                if test $(($progress % ${update_progress:-1})) -eq 0; then
162
                    now=$(date +%s)
163
                    delta=$(( $now - $begin ))
améliore la sortie de progre...
Sébastien MARQUE authored on 2021-12-17
164
#                   scrutin = {first:-0}+1 à la première itération
165
                    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
166
                fi
167
            fi
168
        done
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
169
        sqlite_request 'drop table dossier_par_scrutin'
170

            
améliore la sortie de progre...
Sébastien MARQUE authored on 2021-12-17
171
        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
172
        rm -f "$tempfile"
complète re-écriture
Sébastien Marque authored on 2019-04-27
173
    fi
fix bug sur premier scrutin
Sébastien Marque authored on 2019-04-27
174
    first=$first_
complète re-écriture
Sébastien Marque authored on 2019-04-27
175
}
176

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

            
201
            print "pour_bash_array_qui_commence_a_index_0"
202
            rgbL(0)
203
            for (i = 1; i < n-1; i++) {
204
                rgbL(i/n)
205
            }
206
            if (n > 1) rgbL(1)
207
        }
208
    '))
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
209
    function write_cell () {
210
        case $1 in
211
            url)
212
                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
213
                cell+="<text:p><text:a xlink:href=$2 xlink:type=\"simple\">$3</text:a></text:p>"
214
                ;;
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
215
            texte)
216
                cell='<table:table-cell office:value-type="string" calcext:value-type="string">'
217
                cell+="<text:p>$2</text:p>"
218
                ;;
219
            nombre)
220
                cell="<table:table-cell office:value-type=\"float\" office:value=\"$2\" calcext:value-type=\"float\">"
221
                cell+="<text:p>$2</text:p>"
222
                ;;
223
            *)
224
                return 1;;
225
        esac
226
        cell+='</table:table-cell>'
227
        echo $cell >> "$content"
228
    }
complète re-écriture
Sébastien Marque authored on 2019-04-27
229

            
ajout de l'envoi du résultat...
seb authored on 2022-08-17
230
    if test -z "$envoi_par_mail"; then
231
        echo "génération du fichier $result"
232
    fi
complète re-écriture
Sébastien Marque authored on 2019-04-27
233

            
234
    mkdir -p "/dev/shm/$result/META-INF"
235

            
236
    cat > "/dev/shm/$result/META-INF/manifest.xml" << EOmetainf
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
237
<?xml version="1.0" encoding="UTF-8"?>
238
<manifest:manifest xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0" manifest:version="1.2">
239
 <manifest:file-entry manifest:full-path="/" manifest:version="1.2" manifest:media-type="application/vnd.oasis.opendocument.spreadsheet"/>
240
 <manifest:file-entry manifest:full-path="content.xml" manifest:media-type="text/xml"/>
241
</manifest:manifest>
242
EOmetainf
243

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

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

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
248
    cat >> "$content" << EOcontent
249
    <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">
250
    <office:scripts/>
251
    <office:font-face-decls>
252
    <style:font-face style:name="Liberation Sans" svg:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
253
    <style:font-face style:name="DejaVu Sans" svg:font-family="&apos;DejaVu Sans&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
254
    <style:font-face style:name="FreeSans" svg:font-family="FreeSans" style:font-family-generic="system" style:font-pitch="variable"/>
255
    </office:font-face-decls>
256
    <office:automatic-styles>
257
EOcontent
258

            
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
259
    IFS=$'\n'
complète re-écriture
Sébastien Marque authored on 2019-04-27
260
    for i in $(seq $nb_cols); do
261
        cat >> "$content" << EOcontent
262
            <style:style style:name="co$i" style:family="table-column">
263
            <style:table-column-properties fo:break-before="auto" style:column-width="30.00mm"/>
264
            </style:style>
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
265
EOcontent
complète re-écriture
Sébastien Marque authored on 2019-04-27
266
    done
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
267

            
268
    cat >> "$content" << EOcontent
complète re-écriture
Sébastien Marque authored on 2019-04-27
269
    <style:style style:name="ro1" style:family="table-row">
270
    <style:table-row-properties style:row-height="4.52mm" fo:break-before="auto" style:use-optimal-row-height="true"/>
271
    </style:style>
272
    <style:style style:name="ta1" style:family="table" style:master-page-name="Default">
273
    <style:table-properties table:display="true" style:writing-mode="lr-tb"/>
274
    </style:style>
multiples modifications
Sébastien MARQUE authored on 2022-08-07
275
EOcontent
276

            
277
    for i in $(seq ${#groupe[@]}); do
278
        cat >> "$content" << EOcontent
279
        <style:style style:name="ce$i" style:family="table-cell" style:parent-style-name="Default">
280
        <style:table-cell-properties fo:wrap-option="wrap" style:vertical-align="middle" fo:background-color="#${colors[$i]%:*}"/>
281
        <style:text-properties fo:hyphenate="false" fo:color="#${colors[$i]}"/>
282
        </style:style>
283
EOcontent
284
    done
285

            
286
    cat >> "$content" << EOcontent
complète re-écriture
Sébastien Marque authored on 2019-04-27
287
    </office:automatic-styles>
288
    <office:body>
289
    <office:spreadsheet>
290
    <table:calculation-settings table:automatic-find-labels="false"/>
291
    <table:table table:name="$result" table:style-name="ta1">
292
    <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
293
    <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
294
EOcontent
295

            
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
296
    for i in $(seq ${#typevotes[@]}); do
multiples modifications
Sébastien MARQUE authored on 2022-08-07
297
        for g in $(seq ${#groupe[@]}); do
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
298
            cat >> "$content" << EOcontent
multiples modifications
Sébastien MARQUE authored on 2022-08-07
299
            <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
300
EOcontent
301
        done
complète re-écriture
Sébastien Marque authored on 2019-04-27
302
    done
303
    echo '<table:table-row table:style-name="ro1">' >> "$content"
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
304

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

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

            
316
    echo '</table:table-row>' >> "$content"
317

            
318
    progress=0
319
    begin=$(date +%s)
320
    line=1
améliore progression
Sébastien Marque authored on 2019-05-03
321
    test -z "$seq" && qty=$(( $last - $first ))
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
322
    IFS=$'\n'
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
323
    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
324
    for scrutin in $(eval ${seq:-seq $first $last}); do
325

            
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
326
        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)
327
        date=$(jq -r '.[].date' <<< $data)
328
        seance=$(jq -r '.[]."séance"' <<< $data)
329
        title=$(jq -r '.[]."intitulé" | @html' <<< $data)
330
        adoption=$(jq '.[].adoption' <<< $data)
331
        dossier_url=$(jq '.[].url' <<< $data)
332
        dossier_texte=$(jq -r '.[].titre | @html' <<< $data)
complète re-écriture
Sébastien Marque authored on 2019-04-27
333
        test $adoption -eq 1 && adoption='oui' || adoption='non'
groupe de référence: GDR
Sébastien MARQUE authored on 2019-02-17
334

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

            
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
337
        write_cell url   "\"$scrutin_base_url$scrutin\"" $scrutin
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
338
        write_cell texte "$date"
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
339
        write_cell texte "$seance"
340
        write_cell texte "$title"
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
341
        write_cell texte "$adoption"
multiples modifications
Sébastien MARQUE authored on 2022-08-07
342
        write_cell url   "${dossier_url/#null/\"\"}" "${dossier_texte/#null}"
ajoute colonnes loyauté, pan...
Sébastien MARQUE authored on 2019-11-13
343

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

            
meilleur calcul progression
Sébastien Marque authored on 2019-04-27
379
        if test $(( ($line * 100) / ${qty:-$last} )) -ne $progress; then
380
            progress=$(( ($line * 100) / ${qty:-$last} ))
381
            if test $(( $progress % ${generation_progress:-5} )) -eq 0; then
complète re-écriture
Sébastien Marque authored on 2019-04-27
382
                now=$(date +%s)
383
                delta=$(( $now - $begin ))
améliore la sortie de progre...
Sébastien MARQUE authored on 2021-12-17
384
                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
385
            fi
386
        fi
meilleur calcul progression
Sébastien Marque authored on 2019-04-27
387

            
388
        let line++
389

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

            
392
    cat >> "$content" << EOcontent
393
    </table:table>
394
    <table:named-expressions/>
395
    <table:database-ranges>
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
396
    <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
397
    </table:database-ranges>
398
    </office:spreadsheet>
399
    </office:body>
400
    </office:document-content>
401
EOcontent
402

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

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

            
ajout de l'envoi du résultat...
seb authored on 2022-08-17
407
    if test -z "$envoi_par_mail"; then
408
        echo -e "\r\033[KTerminé : ${destination_path:+$destination_path/}$result.ods"
409
    fi
complète re-écriture
Sébastien Marque authored on 2019-04-27
410
}
411

            
412
function save_database () {
ne bloque pas inutilement (a...
seb authored on 2022-11-19
413
    rm -f  "$token_file"
améliore abandon
Sébastien MARQUE authored on 2020-02-23
414
    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
415
    test -n "$database" -a -n "$in_ram_database" || return
ajout de l'envoi du résultat...
seb authored on 2022-08-17
416
    if test "$envoi_par_mail" = $true_flag; then
417
        if test -n "$mailconfig_file" && test -r "$mailconfig_file"; then
418
            source "$mailconfig_file"
419
        elif test -r "/usr/local/etc/${0##*/}.mail.conf"; then
420
            source "/usr/local/etc/${0##*/}.mail.conf"
421
        fi
422
        stat -Lc "(date de mise à jour de la base: %x)" $database
423
        cat > $process_token.headers << EOC
424
From: ${from_mail:?}
425
To: $destinataire
426
Subject: les scrutins demandés
427
EOC
428
        curl_opt=(
429
                --url smtp://${smtp_address:?}:${smtp_port:?}
430
                --mail-rcpt $destinataire
431
                -H @$process_token.headers
432
                -F "=(;type=multipart/alternative"
433
                -F "=<$process_token.txt;encoder=quoted-printable"
434
                -F "=<$process_token.html;encoder=quoted-printable"
435
                -F "=)"
436
        )
437
        if test -r "${destination_path:+$destination_path/}$result.ods"; then
438
            curl_opt[${#curl_opt[@]}]="-F"
439
            curl_opt[${#curl_opt[@]}]="=@${destination_path:+$destination_path/}$result.ods;encoder=base64"
440
        fi
441
        exec 1>&-
442
        aha -f $process_token.mail -t "envoi automatisé" > $process_token.html
443
        w3m -dump $process_token.html > $process_token.txt
444
        curl ${curl_opt[@]}
445
        rm -f "${destination_path:+$destination_path/}$result.ods" $process_token*
446
    elif test -r "$database" && sqldiff=$(sqldiff $in_ram_database $database) && test -z "$sqldiff"; then
améliore la sauvegarde de la...
Sébastien MARQUE authored on 2022-07-30
447
        echo "pas de modification"
complète re-écriture
Sébastien Marque authored on 2019-04-27
448
    elif test -w "$database"; then
améliore la sauvegarde de la...
Sébastien MARQUE authored on 2022-07-30
449
        rm -f "$database"
450
        sqlite_request '.dump' | sqlite3 "$database"
451
        echo "base de données $database mise à jour"
452
    elif test ! -e "$database" -a -w ${database%/*}; then
453
        sqlite_request '.dump' | sqlite3 "$database"
454
        echo "base de données $database créée"
complète re-écriture
Sébastien Marque authored on 2019-04-27
455
    else
améliore la sauvegarde de la...
Sébastien MARQUE authored on 2022-07-30
456
        echo "je ne peux rien faire avec $database !"
complète re-écriture
Sébastien Marque authored on 2019-04-27
457
    fi
ne bloque pas inutilement (a...
seb authored on 2022-11-19
458
    rm -f "$in_ram_database" "$tempfile"
complète re-écriture
Sébastien Marque authored on 2019-04-27
459
}
460

            
factorisation
Sébastien MARQUE authored on 2020-02-08
461
function dernier_scrutin_public () {
sélection possible de la man...
Sébastien MARQUE authored on 2021-02-13
462
    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
463
            | sed -rn 's/^.*<td class="denom">([0-9]+)[^0-9].*$/\1/p' \
factorisation
Sébastien MARQUE authored on 2020-02-08
464
            | head -1
465
}
466

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

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

            
471
declare -A acronymes
472
if test -n "$config_file"; then
473
    source "$config_file"
474
else
475
    config_file="${0}.conf"
476
    if test -r "$config_file"; then
477
        source "$config_file"
478
    fi
479
fi
480

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

            
483
while [[ $# -gt 0 ]]; do
484
    case "$1" in
485
        "--no-db-update")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
486
#|ne met pas à jour la base de données
multiples modifications
Sébastien MARQUE authored on 2022-08-07
487
            if test ${db_update_only:-OK} = $true_flag; then
488
                echo "option incompatible avec --db-update-only"
489
                exit 1
490
            fi
complète re-écriture
Sébastien Marque authored on 2019-04-27
491
            no_db_update=$true_flag;;
492
        "--db-update-only")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
493
#|ne génère pas de fichier de résultat
multiples modifications
Sébastien MARQUE authored on 2022-08-07
494
            if test ${no_db_update:-OK} = $true_flag; then
495
                echo "option incompatible avec --no-db-update"
496
                exit 1
497
            fi
complète re-écriture
Sébastien Marque authored on 2019-04-27
498
            db_update_only=$true_flag;;
multiples modifications
Sébastien MARQUE authored on 2022-08-07
499
        "--cible"|"-c")
500
#<nom court du groupe>|ajoute les scrutins de ce groupe, de ce ou cette députée, les colonnes seront dans l'ordre
fix nom avec apostrophe
seb authored on 2022-08-17
501
            _groupe[${#_groupe[@]}]="${2//\'/\'\'}"
complète re-écriture
Sébastien Marque authored on 2019-04-27
502
            shift;;
multiples modifications
Sébastien MARQUE authored on 2022-08-07
503
        "--couleurs")
504
#<nombre hexadécimal>:<nombre hexadécimal>|colore les colonnes en dégradé entre les deux couleurs comprises
505
            if grep -iq '[^0-9A-F:]' <<< ${2:-ERROR}; then
506
                echo "$1 ${2:-ERROR}: format attendu <nombre>:<nombre>"
507
                exit 1
508
            elif egrep -iq '[0-9A-F]{6}:[0-9A-F]{6}' <<< ${2:-ERROR}; then
509
                from_color=${2%:*}
510
                to_color=${2#*:}
511
            else
512
                echo erreur $2: couleur RGB au format hexadécimal demandé
513
            fi
complète re-écriture
Sébastien Marque authored on 2019-04-27
514
            shift;;
sélection possible de la man...
Sébastien MARQUE authored on 2021-02-13
515
        "--mandature")
516
           mandature="$2"
517
           ;;
multiples modifications
Sébastien MARQUE authored on 2022-08-07
518
        "--scrutin")
519
#<nombre>[:<nombre>]|commence la génération du résultat pour le scrutin <nombre>, ou entre les deux nombres donnés
520
            if grep -q '[^0-9:]' <<< ${2:-ERROR}; then
521
                echo "$1 ${2:-ERROR}: format attendu <nombre>[:<nombre>]"
522
                exit 1
523
            elif egrep -q '[1-9][0-9]*(:[1-9][0-9]*)?' <<< ${2:-ERROR}; then
524
                first=${2%:*}
525
                last=${2#*:}
526
                if test $first -gt $last; then
527
                    last+=:$first
528
                    first=${last%:*}
529
                    last=${last#*:}
530
                fi
531
            else
532
                echo "$1 ${2:-ERROR}: <nombre> ne doit pas commencer par 0"
533
                exit 1
534
            fi
535
            shift;;
complète re-écriture
Sébastien Marque authored on 2019-04-27
536
        "--premier-scrutin")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
537
#<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
538
            first="$2"
539
            shift;;
540
        "--dernier-scrutin")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
541
#<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
542
            last="$2"
543
            shift;;
544
        "--période")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
545
#<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
546
            periode=$true_flag
547
            periode_value="$2"
548
            shift;;
549
        "--liste-députés-du-groupe")
multiples modifications
Sébastien MARQUE authored on 2022-08-07
550
#<groupe>|liste les député·e·s du groupe <groupe>
complète re-écriture
Sébastien Marque authored on 2019-04-27
551
            liste_deputes=$true_flag
modifie options (amélioratio...
Sébastien MARQUE authored on 2022-07-30
552
            liste_deputes_value="${2}"
complète re-écriture
Sébastien Marque authored on 2019-04-27
553
            shift;;
554
        "--liste-députés")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
555
#|liste tou-te-s les député-e-s de la mandature
complète re-écriture
Sébastien Marque authored on 2019-04-27
556
            liste_deputes=$true_flag;;
557
        "--liste-dossiers")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
558
#|affiche une liste numérotée des dossiers et sort
complète re-écriture
Sébastien Marque authored on 2019-04-27
559
            liste_dossiers=$true_flag;;
560
        "--dossier")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
561
#<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
562
            dossier=$true_flag
563
            dossier_value="$2"
564
            shift;;
565
        "--dossiers")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
566
#|sélection interactive du dossier
complète re-écriture
Sébastien Marque authored on 2019-04-27
567
            dossier=$true_flag;;
568
        "--conf")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
569
#<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
570
            test -r "$2" || {
571
                echo "config introuvable $2" >&2
572
                options_error=$true_flag
573
            }
574
            config_file="$2"
575
            shift;;
ajout de l'envoi du résultat...
seb authored on 2022-08-17
576
        "--mailconf")
577
#<fichier>|indique le chemin vers le fichier de configuration. Par défaut "{_}.conf"
578
            test -r "$2" || {
579
                echo "config introuvable $2" >&2
580
                options_error=$true_flag
581
            }
582
            mailconfig_file="$2"
583
            shift;;
ajout de l'option de destina...
Sébastien MARQUE authored on 2022-07-30
584
        "--dest")
585
#<répertoire>|génère le fichier dans le répertoire spécifié. Par défaut $PWD
586
            if test -n "$2" && test -d "$2" -a -r "$2"; then
587
                destination_path="$2"
588
                shift
589
            else
590
                echo "$2 n'est pas un répertoire ou n'est pas autorisé en écriture" >&2
591
                exit 1
592
            fi;;
complète re-écriture
Sébastien Marque authored on 2019-04-27
593
        "--database")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
594
#<fichier>|indique le chemin vers la base de données SQLite3 contenant les informations. Par défaut "{_}.db"
le fichier base de données p...
seb authored on 2022-08-17
595
            if test -r "$2" && file -Lb "$2" | grep -q '^SQLite 3.x database'; then
596
                :
597
            else
complète re-écriture
Sébastien Marque authored on 2019-04-27
598
                echo "erreur sur option database: fichier '$2' introuvable ou pas une base SQLite 3" >&2
599
                options_error=$true_flag
modifie options (amélioratio...
Sébastien MARQUE authored on 2022-07-30
600
            fi
complète re-écriture
Sébastien Marque authored on 2019-04-27
601
            database="$2"
602
            shift;;
603
        "--progrès-génération")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
604
#<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
605
            generation_progress="$2"
606
            shift;;
607
        "--progrès-update")
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
608
#<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
609
            update_progress="$2"
610
            shift;;
ajout de l'envoi du résultat...
seb authored on 2022-08-17
611
        "--mail")
612
            envoi_par_mail=$true_flag
613
            destinataire="$2"
614
            no_db_update=$true_flag
615
            destination_path=/dev/shm
616
            generation_progress=1000
617
            exec > $process_token.mail 2>&1
618
            shift;;
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
619
        "--help")
620
#|affiche cette aide et quitte
621
            echo "$0 [options]"
modif numéro de mandature
seb authored on 2022-08-17
622
            echo "génère un classeur ODS pour comparer les scrutins publics de la 16ème mandature à l'Assemblée Nationale"
ajout d'un message d'aide
Sébastien Marque authored on 2019-04-27
623
            echo
624
            sed -rn '/^ *"--.+"\)/N; s/^ *"(--.+)"\)\n#(.+)$/\1|\2/p' "$0" \
625
                | awk -F'|' -v marge='  ' -v prog="$0" '{
626
                    printf("%s %s\n" marge "%s\n\n", $1, $2, gensub("\\. ", "\\\n" marge, "g", gensub("\\{_\\}", prog, "g", $3)))
627
                }'
628
            exit;;
complète re-écriture
Sébastien Marque authored on 2019-04-27
629
    esac
630
    shift
ajout script d'analyse des v...
Sébastien MARQUE authored on 2019-02-17
631
done
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
632

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

            
ne bloque pas inutilement (a...
seb authored on 2022-11-19
635
while true; do
636
    if ls -1rt /dev/shm/*."${0##*/}" | head -1 | grep -q "^$token_file$"; then
637
        # c'est notre tour
638
        break
639
    else
640
        sleep 5
641
    fi
642
done
643

            
n'autorise qu'une seule exéc...
seb authored on 2022-08-17
644
in_ram_database=$process_token.db
complète re-écriture
Sébastien Marque authored on 2019-04-27
645
if test -r "$database"; then
646
    cp "$database" "$in_ram_database"
647
else
648
    create_database
649
fi
ajout script d'analyse des v...
Sébastien MARQUE authored on 2019-02-17
650

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
651
if test "$periode" = $true_flag; then
corrige période d'extraction...
Sébastien MARQUE authored on 2022-07-30
652
    function get_date () {
653
        sqlite_request "select distinct(date) from scrutins order by num asc" | awk -v d="$1" -v comp=$2 '
654
            function norm_date (date) {
655
                split(date, a, "/")
656
                return sprintf("%s%s%s",
657
                    length(a[3]) == 4 ? a[3] : length(a[3]) == 2 ? "20" a[3] : strftime("%Y", systime()),
658
                    length(a[2]) == 2 ? a[2] : "0" a[2],
659
                    length(a[1]) == 2 ? a[1] : "0" a[1])
660
            }
661
            function output (date) {
662
                print date
663
                found = 1
664
                exit
665
            }
666
            BEGIN { d = norm_date(d) }
667
            {
668
                s = norm_date($1)
669
                if (NR == 1 && s > d && comp == "first") output($1)
670
                if (s >= d && comp == "first") output($1)
671
                if (s == d && comp == "last")  output($1)
672
                if (s >  d && comp == "last")  output(previous)
673
                previous = $1
674
            }
675
            END {
676
                if (!found) print previous
677
            }'
678
    }
679
    first=$(sqlite_request "select min(num) from scrutins where date = '$(get_date ${periode_value%:*} first)'")
680
    last=$(sqlite_request "select max(num) from scrutins where date = '$(get_date ${periode_value#*:} last)'")
ajout de l'envoi du résultat...
seb authored on 2022-08-17
681
    if test "$envoi_par_mail" = $true_flag; then
682
        texte_periode="du $(get_date ${periode_value%:*} first) (scrutin n°$first) au $(get_date ${periode_value#*:} last) (scrutin n°$last)"
683
    fi
fix bug sur premier scrutin
Sébastien Marque authored on 2019-04-27
684
elif test "$dossier" != $true_flag; then
factorisation
Sébastien MARQUE authored on 2020-02-08
685
    test -z "$last" && last=$(dernier_scrutin_public)
fix bug sur premier scrutin
Sébastien Marque authored on 2019-04-27
686
    test -z "$first" && first=1
complète re-écriture
Sébastien Marque authored on 2019-04-27
687
fi
affiche nom du fichier des r...
Sébastien MARQUE authored on 2019-03-30
688

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
689
if test "$liste_dossiers" = $true_flag; then
ajout de l'envoi du résultat...
seb authored on 2022-08-17
690
    if test "$envoi_par_mail" = $true_flag; then
691
        echo "Voici la liste des dossiers actuellement à l'étude"
692
    fi
améliore la sortie des dossi...
Sébastien MARQUE authored on 2022-07-30
693
    sqlite_request "select printf('• %s (%s)', titre, url) from dossiers"
complète re-écriture
Sébastien Marque authored on 2019-04-27
694
    exit
695
fi
696

            
697
if test "$db_update_only" = $true_flag; then
698
    unset first last
factorisation
Sébastien MARQUE authored on 2020-02-08
699
    last=$(dernier_scrutin_public)
complète re-écriture
Sébastien Marque authored on 2019-04-27
700
    update_database
701
    exit
702
fi
703

            
704
if test "$liste_deputes" = $true_flag; then
705
    if test -n "$liste_deputes_value"; then
ajout de l'envoi du résultat...
seb authored on 2022-08-17
706
        if test "$envoi_par_mail" = $true_flag; then
707
            echo "Voici la liste des député·e·s du groupe dont le nom correspond au critère $liste_deputes_value"
708
        fi
améliore sélection (à contin...
Sébastien MARQUE authored on 2022-07-30
709
        sqlite_request "select printf('%s - %s%s',
710
                                      députés.nom,
711
                                      groupes.nom,
712
                                      iif(groupes.nom_court is not null, ' [' || groupes.nom_court || ']', ''))
713
                        from députés
714
                        inner join groupes on groupes.id = députés.groupe
715
                        where
716
                            groupes.nom like '%$liste_deputes_value%'
717
                        or
718
                            groupes.nom_court = '$liste_deputes_value'"
complète re-écriture
Sébastien Marque authored on 2019-04-27
719
    else
ajout de l'envoi du résultat...
seb authored on 2022-08-17
720
        if test "$envoi_par_mail" = $true_flag; then
721
            echo "Voici la liste des député·e·s"
722
        fi
améliore sélection (à contin...
Sébastien MARQUE authored on 2022-07-30
723
        sqlite_request "select printf('%s - %s%s',
724
                                      députés.nom,
725
                                      groupes.nom,
726
                                      iif(groupes.nom_court is not null, ' [' || groupes.nom_court || ']', ''))
727
                        from députés
728
                        inner join groupes on groupes.id = députés.groupe
729
                        order by groupes.nom asc"
complète re-écriture
Sébastien Marque authored on 2019-04-27
730
    fi
731
    exit
732
fi
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
733

            
multiples modifications
Sébastien MARQUE authored on 2022-08-07
734
for (( g = 0; g < ${#_groupe[@]}; g++ )); do
735
    # on vérifie si c'est un ou une député
736
    depute_count=$(sqlite_request "select count(distinct nom) from députés where nom like '%${_groupe[$g]}%'")
737
    groupe_count=$(sqlite_request "select count(distinct nom) from groupes where nom like \"%${_groupe[$g]}%\" or nom_court is '${_groupe[$g]}'")
738
    if test $depute_count -eq 1 -a $groupe_count -ne 1; then
739
        groupe[$g]=$(sqlite_request "select distinct nom from députés where nom like '%${_groupe[$g]}%'")
fix nom avec apostrophe
seb authored on 2022-08-17
740
        id_groupe[$g]=députés:$(sqlite_request "select group_concat(id) from députés where nom is '${groupe[$g]//\'/\'\'}'")
multiples modifications
Sébastien MARQUE authored on 2022-08-07
741
    elif test $groupe_count -eq 1 -a $depute_count -ne 1; then
742
        groupe[$g]=$(sqlite_request "select distinct nom from groupes where nom like \"%${_groupe[$g]}%\" or nom_court is '${_groupe[$g]}'")
fix nom avec apostrophe
seb authored on 2022-08-17
743
        id_groupe[$g]=groupes:$(sqlite_request "select id from groupes where nom is '${groupe[$g]//\'/\'\'}'")
multiples modifications
Sébastien MARQUE authored on 2022-08-07
744
    elif test $groupe_count -eq 1 -a $depute_count -eq 1; then
améliore l'affichage des err...
seb authored on 2022-08-17
745
        echo "dénomination ambigüe pour « ${_groupe[$g]} »"
746
        sqlite_request "select printf('député·e: %s', distinct nom) from députés where nom like '%${_groupe[$g]}%'" | grep --color=always -i "${_groupe[$g]}"
747
        sqlite_request "select printf('groupe  : %s', distinct nom) from groupes where nom like \"%${_groupe[$g]}%\" or nom_court is '${_groupe[$g]}'" | grep --color=always -i "${_groupe[$g]}"
748
        echo
multiples modifications
Sébastien MARQUE authored on 2022-08-07
749
    elif test $depute_count -gt 1; then
améliore l'affichage des err...
seb authored on 2022-08-17
750
        echo "plusieurs député·e·s trouvé·e·s correspondant à « ${_groupe[$g]} »"
751
        sqlite_request "select distinct nom from députés where nom like '%${_groupe[$g]}%'" | grep --color=always -i "${_groupe[$g]}"
752
        echo
multiples modifications
Sébastien MARQUE authored on 2022-08-07
753
    elif test $groupe_count -gt 1; then
améliore l'affichage des err...
seb authored on 2022-08-17
754
        echo "plusieurs groupes trouvés correspondant à « ${_groupe[$g]} »"
755
        sqlite_request "select distinct nom from groupes where nom like \"%${_groupe[$g]}%\" or nom_court is '${_groupe[$g]}'" | grep --color=always -i "${_groupe[$g]}"
756
        echo
multiples modifications
Sébastien MARQUE authored on 2022-08-07
757
    else
améliore l'affichage des err...
seb authored on 2022-08-17
758
        echo "aucun·e député·e ou groupe ne correspond au critère « ${_groupe[$g]} »"
759
        echo
complète re-écriture
Sébastien Marque authored on 2019-04-27
760
    fi
multiples modifications
Sébastien MARQUE authored on 2022-08-07
761
done
complète re-écriture
Sébastien Marque authored on 2019-04-27
762

            
ajout de l'envoi du résultat...
seb authored on 2022-08-17
763
if test -s $process_token.mail; then
764
    exit 1
765
fi
766

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
767
update_database
768
write_comparaison
ajout de l'envoi du résultat...
seb authored on 2022-08-17
769

            
770
if test "$envoi_par_mail" = $true_flag; then
771
    echo Vous pourrez trouver en pièce-jointe les résultats demandés avec ces critères:
772
    if test ${#groupe[@]} -gt 0; then
773
        echo "votes des groupes et député·e·s suivant·e·s:"
774
        printf " • %s\n" "${groupe[@]}"
775
    fi
776
    if test "$periode" = $true_flag; then
777
        echo sur la période allant $texte_periode
778
    fi
779
fi