scripts / analyse-votes-AN /
Newer Older
778 lines | 37.263kb
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
touch $token_file
9
while true; do
10
    if ls -1rt /dev/shm/*."${0##*/}" | head -1 | grep -q "^$token_file$"; then
11
        # c'est notre tour
12
        break
13
    else
14
        sleep 5
15
    fi
16
done
17

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

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

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

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

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

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

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

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

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

            
133
                    for (i=1; i<map-1; i++)
134
                        mise_au_point = sprintf("%s[%s]", mise_au_point, mises_au_point[i])
135

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

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

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

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

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

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

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

            
243
    mkdir -p "/dev/shm/$result/META-INF"
244

            
245
    cat > "/dev/shm/$result/META-INF/manifest.xml" << EOmetainf
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
246
<?xml version="1.0" encoding="UTF-8"?>
247
<manifest:manifest xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0" manifest:version="1.2">
248
 <manifest:file-entry manifest:full-path="/" manifest:version="1.2" manifest:media-type="application/vnd.oasis.opendocument.spreadsheet"/>
249
 <manifest:file-entry manifest:full-path="content.xml" manifest:media-type="text/xml"/>
250
</manifest:manifest>
251
EOmetainf
252

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

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

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
257
    cat >> "$content" << EOcontent
258
    <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">
259
    <office:scripts/>
260
    <office:font-face-decls>
261
    <style:font-face style:name="Liberation Sans" svg:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
262
    <style:font-face style:name="DejaVu Sans" svg:font-family="&apos;DejaVu Sans&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
263
    <style:font-face style:name="FreeSans" svg:font-family="FreeSans" style:font-family-generic="system" style:font-pitch="variable"/>
264
    </office:font-face-decls>
265
    <office:automatic-styles>
266
EOcontent
267

            
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
268
    IFS=$'\n'
complète re-écriture
Sébastien Marque authored on 2019-04-27
269
    for i in $(seq $nb_cols); do
270
        cat >> "$content" << EOcontent
271
            <style:style style:name="co$i" style:family="table-column">
272
            <style:table-column-properties fo:break-before="auto" style:column-width="30.00mm"/>
273
            </style:style>
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
274
EOcontent
complète re-écriture
Sébastien Marque authored on 2019-04-27
275
    done
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
276

            
277
    cat >> "$content" << EOcontent
complète re-écriture
Sébastien Marque authored on 2019-04-27
278
    <style:style style:name="ro1" style:family="table-row">
279
    <style:table-row-properties style:row-height="4.52mm" fo:break-before="auto" style:use-optimal-row-height="true"/>
280
    </style:style>
281
    <style:style style:name="ta1" style:family="table" style:master-page-name="Default">
282
    <style:table-properties table:display="true" style:writing-mode="lr-tb"/>
283
    </style:style>
multiples modifications
Sébastien MARQUE authored on 2022-08-07
284
EOcontent
285

            
286
    for i in $(seq ${#groupe[@]}); do
287
        cat >> "$content" << EOcontent
288
        <style:style style:name="ce$i" style:family="table-cell" style:parent-style-name="Default">
289
        <style:table-cell-properties fo:wrap-option="wrap" style:vertical-align="middle" fo:background-color="#${colors[$i]%:*}"/>
290
        <style:text-properties fo:hyphenate="false" fo:color="#${colors[$i]}"/>
291
        </style:style>
292
EOcontent
293
    done
294

            
295
    cat >> "$content" << EOcontent
complète re-écriture
Sébastien Marque authored on 2019-04-27
296
    </office:automatic-styles>
297
    <office:body>
298
    <office:spreadsheet>
299
    <table:calculation-settings table:automatic-find-labels="false"/>
300
    <table:table table:name="$result" table:style-name="ta1">
301
    <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
302
    <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
303
EOcontent
304

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

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

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

            
325
    echo '</table:table-row>' >> "$content"
326

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

            
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
335
        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)
336
        date=$(jq -r '.[].date' <<< $data)
337
        seance=$(jq -r '.[]."séance"' <<< $data)
338
        title=$(jq -r '.[]."intitulé" | @html' <<< $data)
339
        adoption=$(jq '.[].adoption' <<< $data)
340
        dossier_url=$(jq '.[].url' <<< $data)
341
        dossier_texte=$(jq -r '.[].titre | @html' <<< $data)
complète re-écriture
Sébastien Marque authored on 2019-04-27
342
        test $adoption -eq 1 && adoption='oui' || adoption='non'
groupe de référence: GDR
Sébastien MARQUE authored on 2019-02-17
343

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

            
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
346
        write_cell url   "\"$scrutin_base_url$scrutin\"" $scrutin
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
347
        write_cell texte "$date"
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
348
        write_cell texte "$seance"
349
        write_cell texte "$title"
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
350
        write_cell texte "$adoption"
multiples modifications
Sébastien MARQUE authored on 2022-08-07
351
        write_cell url   "${dossier_url/#null/\"\"}" "${dossier_texte/#null}"
ajoute colonnes loyauté, pan...
Sébastien MARQUE authored on 2019-11-13
352

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

            
meilleur calcul progression
Sébastien Marque authored on 2019-04-27
388
        if test $(( ($line * 100) / ${qty:-$last} )) -ne $progress; then
389
            progress=$(( ($line * 100) / ${qty:-$last} ))
390
            if test $(( $progress % ${generation_progress:-5} )) -eq 0; then
complète re-écriture
Sébastien Marque authored on 2019-04-27
391
                now=$(date +%s)
392
                delta=$(( $now - $begin ))
améliore la sortie de progre...
Sébastien MARQUE authored on 2021-12-17
393
                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
394
            fi
395
        fi
meilleur calcul progression
Sébastien Marque authored on 2019-04-27
396

            
397
        let line++
398

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

            
401
    cat >> "$content" << EOcontent
402
    </table:table>
403
    <table:named-expressions/>
404
    <table:database-ranges>
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
405
    <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
406
    </table:database-ranges>
407
    </office:spreadsheet>
408
    </office:body>
409
    </office:document-content>
410
EOcontent
411

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

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

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

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

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

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

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

            
479
declare -A acronymes
480
if test -n "$config_file"; then
481
    source "$config_file"
482
else
483
    config_file="${0}.conf"
484
    if test -r "$config_file"; then
485
        source "$config_file"
486
    fi
487
fi
488

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

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

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

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

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

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

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

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

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

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

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

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