scripts / analyse-votes-AN /
Newer Older
830 lines | 40.54kb
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" \
adaptation à la nouvelle int...
seb authored on 2024-03-22
86
            | sed -n '/^Analyse du scrutin n°/,/^Votes des groupes/{/^Navigation/,/^  • Non inscrits/d;/^[[:space:]]*$/d;p}' \
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
87
            | awk -v sq="'" -v dq='"' '
adaptation à la nouvelle int...
seb authored on 2024-03-22
88
                BEGIN {
89
                    adoption = -1
90
                    map = 0
91
                    split("janvier février mars avril mai juin juillet août septembre octobre novembre décembre", mois)
92
                }
93
                /^Analyse du scrutin n°/ { scrutin = gensub("n°([0-9]+)", "\\1", "1", $NF) }
94
                /séance du [a-z]+ ([0-3][0-9]?) ([a-z]+) ((19|20)[0-9]+)/ {
95
                    seance = $1
96
                    mois_seance = gensub("^.+[0-3][0-9]? ([a-z]+) (19|20)[0-9]+$", "\\1", "1")
97
                    for (i=1; i<=12; i++) {
98
                        if (mois[i] == mois_seance) {
99
                            date = sprintf("%02d/%02d/%d", $(NF-2), i, $NF)
100
                            break
101
                        }
102
                    }
103
                }
104
                /^Scrutin public n°[0-9]+ sur /   { titre = gensub("^Scrutin public n°[0-9]+ sur l[ae" sq "]s? ?", "", "1") }
105
                /^L.Assemblée nationale .+ adopté/{ adoption = NF == 4 }
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
106
                /^Nombre de votants :/            { votants      = $NF }
107
                /^Nombre de suffrages exprimés :/ { exprimes     = $NF }
108
                /^Majorité absolue :/             { majo_absolue = $NF }
adaptation à la nouvelle int...
seb authored on 2024-03-22
109
                /^  • Pour l.adoption :/          { pour         = $NF }
110
                /^  • Contre :/                   { contre       = $NF }
111
                /^    [A-Z]/                      { groupe = gensub("^ +", "", "1")
112
                                                    if (groupe == "Députés non inscrits")
113
                                                        groupe = "Non inscrits"
114
                                                  }
115
                /^      □ (Pour|Abstention|Contre) *:/{ position = gensub("^.+(Pour|Abstention|Contre) *:.*$", "\\1", "1") }
116
                /^      □ Non votants? :/          { position = "Non-votant" }
117
                /^          ☆ /                   { votes[groupe][position][gensub("^.+ (M\\.|Mme|Mlle) +", "", "1")]++ }
118
                /^Mises au point/,/^Votes des groupes/ {
119
                                                        if ($1 != "(Sous" && $0 != "Il n" sq "y a pas de mise au point enregistrée pour ce scrutin") {
120
                                                            mises_au_point[map++] = $0
121
                                                        }
améliore la récupération des...
Sébastien MARQUE authored on 2022-07-30
122
                                                  }
123
                END {
124
                    if (adoption < 0)
125
                        adoption = pour >= majo_absolue
126

            
127
                    for (i=1; i<map-1; i++)
128
                        mise_au_point = sprintf("%s[%s]", mise_au_point, mises_au_point[i])
129

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

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

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

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

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

            
204
            print "pour_bash_array_qui_commence_a_index_0"
205
            rgbL(0)
206
            for (i = 1; i < n-1; i++) {
207
                rgbL(i/n)
208
            }
209
            if (n > 1) rgbL(1)
210
        }
211
    '))
changement de style de sorti...
seb authored on 2022-12-02
212
    function get_colname () {
213
        awk -v n=$1 '
214
            BEGIN{
215
                printf("%c%c", n < 27 ? "" : int(n/26) + 64, (n % 26) + (n % 26 == 0 ? 26 : 0) + 64)
216
            }' | tr -d '\0'
217
    }
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
218
    function write_cell () {
changement de style de sorti...
seb authored on 2022-12-02
219
        cell='<table:table-cell office:value-type='
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
220
        case $1 in
221
            url)
changement de style de sorti...
seb authored on 2022-12-02
222
                cell+='"string" calcext:value-type="string">'
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
223
                cell+="<text:p><text:a xlink:href=$2 xlink:type=\"simple\">$3</text:a></text:p>"
224
                ;;
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
225
            texte)
changement de style de sorti...
seb authored on 2022-12-02
226
                cell+='"string" calcext:value-type="string"'${style[${2:- }]:+ table:style-name=\"${style[$2]}\"}'>'
227
                cell+="<text:p>${2:- }</text:p>"
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
228
                ;;
229
            nombre)
changement de style de sorti...
seb authored on 2022-12-02
230
                cell+='"float" office:value="'$2'" calcext:value-type="float">'
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
231
                cell+="<text:p>$2</text:p>"
232
                ;;
changement de style de sorti...
seb authored on 2022-12-02
233
            formule)
234
                cell+='"string" table:formula="of:='"$2"'" calcext:value-type="string"'${3:+ table:style-name=\"${3}\"}'>'
235
                ;;
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
236
            *)
237
                return 1;;
238
        esac
239
        cell+='</table:table-cell>'
240
        echo $cell >> "$content"
241
    }
complète re-écriture
Sébastien Marque authored on 2019-04-27
242

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

            
247
    mkdir -p "/dev/shm/$result/META-INF"
248

            
249
    cat > "/dev/shm/$result/META-INF/manifest.xml" << EOmetainf
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
250
<?xml version="1.0" encoding="UTF-8"?>
251
<manifest:manifest xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0" manifest:version="1.2">
252
 <manifest:file-entry manifest:full-path="/" manifest:version="1.2" manifest:media-type="application/vnd.oasis.opendocument.spreadsheet"/>
253
 <manifest:file-entry manifest:full-path="content.xml" manifest:media-type="text/xml"/>
fixe la première ligne et le...
Sébastien MARQUE authored on 2022-12-05
254
 <manifest:file-entry manifest:full-path="settings.xml" manifest:media-type="text/xml"/>
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
255
</manifest:manifest>
256
EOmetainf
257

            
fixe la première ligne et le...
Sébastien MARQUE authored on 2022-12-05
258
    cat > "/dev/shm/$result/settings.xml" << EOsettings
259
<?xml version="1.0" encoding="UTF-8"?>
260
<office:document-settings xmlns:config="urn:oasis:names:tc:opendocument:xmlns:config:1.0" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ooo="http://openoffice.org/2004/office" xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" office:version="1.3">
261
  <office:settings>
262
    <config:config-item-set config:name="ooo:view-settings">
263
      <config:config-item-map-indexed config:name="Views">
264
        <config:config-item-map-entry>
265
          <config:config-item config:name="ViewId" config:type="string">view1</config:config-item>
266
          <config:config-item-map-named config:name="Tables">
267
            <config:config-item-map-entry config:name="$result">
268
              <config:config-item config:name="HorizontalSplitMode" config:type="short">2</config:config-item>
269
              <config:config-item config:name="VerticalSplitMode" config:type="short">2</config:config-item>
270
              <config:config-item config:name="HorizontalSplitPosition" config:type="int">${#id_cols[@]}</config:config-item>
271
              <config:config-item config:name="VerticalSplitPosition" config:type="int">1</config:config-item>
272
              <config:config-item config:name="ActiveSplitRange" config:type="short">1</config:config-item>
273
              <config:config-item config:name="PositionLeft" config:type="int">0</config:config-item>
274
              <config:config-item config:name="PositionRight" config:type="int">${#id_cols[@]}</config:config-item>
275
              <config:config-item config:name="PositionTop" config:type="int">0</config:config-item>
276
              <config:config-item config:name="PositionBottom" config:type="int">1</config:config-item>
277
            </config:config-item-map-entry>
278
          </config:config-item-map-named>
279
        </config:config-item-map-entry>
280
      </config:config-item-map-indexed>
281
    </config:config-item-set>
282
  </office:settings>
283
</office:document-settings>
284
EOsettings
285

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

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

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
290
    cat >> "$content" << EOcontent
291
    <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">
292
    <office:scripts/>
293
    <office:font-face-decls>
294
    <style:font-face style:name="Liberation Sans" svg:font-family="&apos;Liberation Sans&apos;" style:font-family-generic="swiss" style:font-pitch="variable"/>
295
    <style:font-face style:name="DejaVu Sans" svg:font-family="&apos;DejaVu Sans&apos;" style:font-family-generic="system" style:font-pitch="variable"/>
296
    <style:font-face style:name="FreeSans" svg:font-family="FreeSans" style:font-family-generic="system" style:font-pitch="variable"/>
297
    </office:font-face-decls>
298
    <office:automatic-styles>
299
EOcontent
300

            
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
301
    IFS=$'\n'
complète re-écriture
Sébastien Marque authored on 2019-04-27
302
    for i in $(seq $nb_cols); do
303
        cat >> "$content" << EOcontent
304
            <style:style style:name="co$i" style:family="table-column">
305
            <style:table-column-properties fo:break-before="auto" style:column-width="30.00mm"/>
306
            </style:style>
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
307
EOcontent
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

            
310
    cat >> "$content" << EOcontent
complète re-écriture
Sébastien Marque authored on 2019-04-27
311
    <style:style style:name="ro1" style:family="table-row">
312
    <style:table-row-properties style:row-height="4.52mm" fo:break-before="auto" style:use-optimal-row-height="true"/>
313
    </style:style>
314
    <style:style style:name="ta1" style:family="table" style:master-page-name="Default">
315
    <style:table-properties table:display="true" style:writing-mode="lr-tb"/>
316
    </style:style>
changement de style de sorti...
seb authored on 2022-12-02
317
    <style:style style:name="T1" style:family="text">
318
    <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold" fo:color="#5eb91e"/>
319
    </style:style>
320
    <style:style style:name="T2" style:family="text">
321
    <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold" fo:color="#c9211e"/>
322
    </style:style>
323
    <style:style style:name="T3" style:family="text">
324
    <style:text-properties fo:font-weight="bold" style:font-weight-asian="bold" style:font-weight-complex="bold" fo:color="#e8a202"/>
325
    </style:style>
multiples modifications
Sébastien MARQUE authored on 2022-08-07
326
EOcontent
327

            
328
    for i in $(seq ${#groupe[@]}); do
329
        cat >> "$content" << EOcontent
changement de style de sorti...
seb authored on 2022-12-02
330
        <style:style style:name="groupe$i" style:family="table-cell" style:parent-style-name="Default">
multiples modifications
Sébastien MARQUE authored on 2022-08-07
331
        <style:table-cell-properties fo:wrap-option="wrap" style:vertical-align="middle" fo:background-color="#${colors[$i]%:*}"/>
332
        <style:text-properties fo:hyphenate="false" fo:color="#${colors[$i]}"/>
333
        </style:style>
334
EOcontent
335
    done
336

            
337
    cat >> "$content" << EOcontent
complète re-écriture
Sébastien Marque authored on 2019-04-27
338
    </office:automatic-styles>
339
    <office:body>
340
    <office:spreadsheet>
341
    <table:calculation-settings table:automatic-find-labels="false"/>
342
    <table:table table:name="$result" table:style-name="ta1">
343
    <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
344
    <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
345
EOcontent
346

            
changement de style de sorti...
seb authored on 2022-12-02
347
    for g in $(seq ${#groupe[@]}); do
348
        cat >> "$content" << EOcontent
349
        <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
350
EOcontent
complète re-écriture
Sébastien Marque authored on 2019-04-27
351
    done
352
    echo '<table:table-row table:style-name="ro1">' >> "$content"
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
353

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

            
changement de style de sorti...
seb authored on 2022-12-02
359
    for (( g=0; g<${#groupe[@]}; g++ )); do
360
        colname=$(get_colname $(( ${#id_cols[@]} + $g + 1)) )
361
        write_cell formule "COM.MICROSOFT.CONCAT(&quot;${groupe[$g]} (&quot;; $(($last-$first+1))-COUNTIF([.${colname}2:.${colname}$(($last-$first+2))];&quot; &quot;); &quot;)&quot;)" groupe$(($g+1))
complète re-écriture
Sébastien Marque authored on 2019-04-27
362
    done
363

            
364
    echo '</table:table-row>' >> "$content"
365

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

            
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
374
        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)
375
        date=$(jq -r '.[].date' <<< $data)
376
        seance=$(jq -r '.[]."séance"' <<< $data)
377
        title=$(jq -r '.[]."intitulé" | @html' <<< $data)
378
        adoption=$(jq '.[].adoption' <<< $data)
379
        dossier_url=$(jq '.[].url' <<< $data)
380
        dossier_texte=$(jq -r '.[].titre | @html' <<< $data)
complète re-écriture
Sébastien Marque authored on 2019-04-27
381
        test $adoption -eq 1 && adoption='oui' || adoption='non'
groupe de référence: GDR
Sébastien MARQUE authored on 2019-02-17
382

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

            
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
385
        write_cell url   "\"$scrutin_base_url$scrutin\"" $scrutin
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
386
        write_cell texte "$date"
améliore le fichier de sorti...
Sébastien MARQUE authored on 2022-07-30
387
        write_cell texte "$seance"
388
        write_cell texte "$title"
simplification écriture des ...
Sébastien MARQUE authored on 2019-11-13
389
        write_cell texte "$adoption"
multiples modifications
Sébastien MARQUE authored on 2022-08-07
390
        write_cell url   "${dossier_url/#null/\"\"}" "${dossier_texte/#null}"
ajoute colonnes loyauté, pan...
Sébastien MARQUE authored on 2019-11-13
391

            
multiples modifications
Sébastien MARQUE authored on 2022-08-07
392
        unset votes
changement de style de sorti...
seb authored on 2022-12-02
393
        for (( g = 0; g < ${#groupe[@]}; g++ )); do
394
            case ${id_groupe[$g]%:*} in
395
                groupes)
396
                    unset _vote
397
                    eval $(sqlite_request "select '_vote[' || vote || ']=' || count(vote) from dépouillements
398
                                           where scrutin = $scrutin and député in (
399
                                               select id from députés
400
                                               where groupe in (${id_groupe[$g]#*:})
401
                                           )
402
                                           group by vote")
403
                    if test ${#_vote[@]} -gt 0; then
404
                        unset _votes
405
                        for i in {1..3}; do
406
                            _votes+="<text:span text:style-name=\"T$i\">${_vote[$i]:-0}</text:span> / "
407
                        done
408
                        _votes+="${_vote[4]:-0}"
409
                        votes[${#votes[@]}]=$_votes
410
                    else
411
                        votes[${#votes[@]}]=" "
412
                    fi
413
                ;;
414
                députés)
415
                    votes[${#votes[@]}]=$(sqlite_request "select nom from votes
416
                                                          where id in (
417
                                                              select vote from dépouillements
418
                                                              where scrutin = $scrutin and député in (${id_groupe[$g]#*:})
419
                                                          )")
420
                ;;
421
            esac
multiples modifications
Sébastien MARQUE authored on 2022-08-07
422
        done
423
        for ((i = 0; i < ${#votes[@]}; i ++)); do
changement de style de sorti...
seb authored on 2022-12-02
424
            write_cell texte ${votes[$i]}
ajout possibilité de compare...
Sébastien Marque authored on 2019-05-03
425
        done
complète re-écriture
Sébastien Marque authored on 2019-04-27
426
        echo '</table:table-row>' >> "$content"
427

            
meilleur calcul progression
Sébastien Marque authored on 2019-04-27
428
        if test $(( ($line * 100) / ${qty:-$last} )) -ne $progress; then
429
            progress=$(( ($line * 100) / ${qty:-$last} ))
430
            if test $(( $progress % ${generation_progress:-5} )) -eq 0; then
complète re-écriture
Sébastien Marque authored on 2019-04-27
431
                now=$(date +%s)
432
                delta=$(( $now - $begin ))
améliore la sortie de progre...
Sébastien MARQUE authored on 2021-12-17
433
                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
434
            fi
435
        fi
meilleur calcul progression
Sébastien Marque authored on 2019-04-27
436

            
437
        let line++
438

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

            
441
    cat >> "$content" << EOcontent
442
    </table:table>
443
    <table:named-expressions/>
444
    <table:database-ranges>
changement de style de sorti...
seb authored on 2022-12-02
445
    <table:database-range table:name="__Anonymous_Sheet_DB__0" table:target-range-address="&apos;$result&apos;.D1:&apos;$result&apos;.$(get_colname $nb_cols)$line" table:display-filter-buttons="true"/>
complète re-écriture
Sébastien Marque authored on 2019-04-27
446
    </table:database-ranges>
447
    </office:spreadsheet>
448
    </office:body>
449
    </office:document-content>
450
EOcontent
451

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

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

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

            
461
function save_database () {
ne bloque pas inutilement (a...
seb authored on 2022-11-19
462
    rm -f  "$token_file"
améliore abandon
Sébastien MARQUE authored on 2020-02-23
463
    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
464
    test -n "$database" -a -n "$in_ram_database" || return
ajout de l'envoi du résultat...
seb authored on 2022-08-17
465
    if test "$envoi_par_mail" = $true_flag; then
466
        if test -n "$mailconfig_file" && test -r "$mailconfig_file"; then
467
            source "$mailconfig_file"
468
        elif test -r "/usr/local/etc/${0##*/}.mail.conf"; then
469
            source "/usr/local/etc/${0##*/}.mail.conf"
470
        fi
471
        stat -Lc "(date de mise à jour de la base: %x)" $database
472
        cat > $process_token.headers << EOC
473
From: ${from_mail:?}
474
To: $destinataire
475
Subject: les scrutins demandés
476
EOC
477
        curl_opt=(
478
                --url smtp://${smtp_address:?}:${smtp_port:?}
479
                --mail-rcpt $destinataire
480
                -H @$process_token.headers
481
                -F "=(;type=multipart/alternative"
482
                -F "=<$process_token.txt;encoder=quoted-printable"
483
                -F "=<$process_token.html;encoder=quoted-printable"
484
                -F "=)"
485
        )
486
        if test -r "${destination_path:+$destination_path/}$result.ods"; then
487
            curl_opt[${#curl_opt[@]}]="-F"
488
            curl_opt[${#curl_opt[@]}]="=@${destination_path:+$destination_path/}$result.ods;encoder=base64"
489
        fi
490
        exec 1>&-
491
        aha -f $process_token.mail -t "envoi automatisé" > $process_token.html
492
        w3m -dump $process_token.html > $process_token.txt
493
        curl ${curl_opt[@]}
494
        rm -f "${destination_path:+$destination_path/}$result.ods" $process_token*
495
    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
496
        echo "pas de modification"
complète re-écriture
Sébastien Marque authored on 2019-04-27
497
    elif test -w "$database"; then
améliore la sauvegarde de la...
Sébastien MARQUE authored on 2022-07-30
498
        rm -f "$database"
499
        sqlite_request '.dump' | sqlite3 "$database"
500
        echo "base de données $database mise à jour"
501
    elif test ! -e "$database" -a -w ${database%/*}; then
502
        sqlite_request '.dump' | sqlite3 "$database"
503
        echo "base de données $database créée"
complète re-écriture
Sébastien Marque authored on 2019-04-27
504
    else
améliore la sauvegarde de la...
Sébastien MARQUE authored on 2022-07-30
505
        echo "je ne peux rien faire avec $database !"
complète re-écriture
Sébastien Marque authored on 2019-04-27
506
    fi
ne bloque pas inutilement (a...
seb authored on 2022-11-19
507
    rm -f "$in_ram_database" "$tempfile"
complète re-écriture
Sébastien Marque authored on 2019-04-27
508
}
509

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

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

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

            
fix configuration non sourcé...
seb authored on 2022-11-28
520
echo "$0 $@" > $token_file
corrige la configuration écr...
Sébastien MARQUE authored on 2022-07-30
521
declare -A acronymes
complète re-écriture
Sébastien Marque authored on 2019-04-27
522
true_flag=$(mktemp --dry-run XXXXX)
523

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

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

            
fix configuration non sourcé...
seb authored on 2022-11-28
677
if test -n "$config_file"; then
678
    source "$config_file"
679
else
680
    config_file="${0}.conf"
681
    if test -r "$config_file"; then
682
        source "$config_file"
683
    fi
684
fi
685

            
ne bloque pas inutilement (a...
seb authored on 2022-11-19
686
while true; do
687
    if ls -1rt /dev/shm/*."${0##*/}" | head -1 | grep -q "^$token_file$"; then
688
        # c'est notre tour
689
        break
690
    else
691
        sleep 5
692
    fi
693
done
694

            
n'autorise qu'une seule exéc...
seb authored on 2022-08-17
695
in_ram_database=$process_token.db
complète re-écriture
Sébastien Marque authored on 2019-04-27
696
if test -r "$database"; then
697
    cp "$database" "$in_ram_database"
698
else
699
    create_database
700
fi
ajout script d'analyse des v...
Sébastien MARQUE authored on 2019-02-17
701

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
702
if test "$periode" = $true_flag; then
corrige période d'extraction...
Sébastien MARQUE authored on 2022-07-30
703
    function get_date () {
704
        sqlite_request "select distinct(date) from scrutins order by num asc" | awk -v d="$1" -v comp=$2 '
705
            function norm_date (date) {
706
                split(date, a, "/")
707
                return sprintf("%s%s%s",
708
                    length(a[3]) == 4 ? a[3] : length(a[3]) == 2 ? "20" a[3] : strftime("%Y", systime()),
709
                    length(a[2]) == 2 ? a[2] : "0" a[2],
710
                    length(a[1]) == 2 ? a[1] : "0" a[1])
711
            }
712
            function output (date) {
713
                print date
714
                found = 1
715
                exit
716
            }
717
            BEGIN { d = norm_date(d) }
718
            {
719
                s = norm_date($1)
720
                if (NR == 1 && s > d && comp == "first") output($1)
721
                if (s >= d && comp == "first") output($1)
722
                if (s == d && comp == "last")  output($1)
723
                if (s >  d && comp == "last")  output(previous)
724
                previous = $1
725
            }
726
            END {
727
                if (!found) print previous
728
            }'
729
    }
730
    first=$(sqlite_request "select min(num) from scrutins where date = '$(get_date ${periode_value%:*} first)'")
731
    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
732
    if test "$envoi_par_mail" = $true_flag; then
733
        texte_periode="du $(get_date ${periode_value%:*} first) (scrutin n°$first) au $(get_date ${periode_value#*:} last) (scrutin n°$last)"
734
    fi
fixe dernier scrutin lorsque...
seb authored on 2022-12-02
735
elif test "$dossier" != $true_flag -a "$no_db_update" = $true_flag; then
736
    test -z "$last" && last=$(sqlite_request "select max(num) from scrutins")
fix bug sur premier scrutin
Sébastien Marque authored on 2019-04-27
737
    test -z "$first" && first=1
complète re-écriture
Sébastien Marque authored on 2019-04-27
738
fi
affiche nom du fichier des r...
Sébastien MARQUE authored on 2019-03-30
739

            
complète re-écriture
Sébastien Marque authored on 2019-04-27
740
if test "$liste_dossiers" = $true_flag; then
ajout de l'envoi du résultat...
seb authored on 2022-08-17
741
    if test "$envoi_par_mail" = $true_flag; then
742
        echo "Voici la liste des dossiers actuellement à l'étude"
743
    fi
ajoute l'id du dossier à la ...
seb authored on 2024-03-22
744
    sqlite_request "select printf('%4d • %s (%s)', id, titre, url) from dossiers"
complète re-écriture
Sébastien Marque authored on 2019-04-27
745
    exit
746
fi
747

            
748
if test "$db_update_only" = $true_flag; then
749
    unset first last
factorisation
Sébastien MARQUE authored on 2020-02-08
750
    last=$(dernier_scrutin_public)
complète re-écriture
Sébastien Marque authored on 2019-04-27
751
    update_database
752
    exit
753
fi
754

            
755
if test "$liste_deputes" = $true_flag; then
756
    if test -n "$liste_deputes_value"; then
ajout de l'envoi du résultat...
seb authored on 2022-08-17
757
        if test "$envoi_par_mail" = $true_flag; then
758
            echo "Voici la liste des député·e·s du groupe dont le nom correspond au critère $liste_deputes_value"
759
        fi
améliore sélection (à contin...
Sébastien MARQUE authored on 2022-07-30
760
        sqlite_request "select printf('%s - %s%s',
761
                                      députés.nom,
762
                                      groupes.nom,
763
                                      iif(groupes.nom_court is not null, ' [' || groupes.nom_court || ']', ''))
764
                        from députés
765
                        inner join groupes on groupes.id = députés.groupe
766
                        where
767
                            groupes.nom like '%$liste_deputes_value%'
768
                        or
769
                            groupes.nom_court = '$liste_deputes_value'"
complète re-écriture
Sébastien Marque authored on 2019-04-27
770
    else
ajout de l'envoi du résultat...
seb authored on 2022-08-17
771
        if test "$envoi_par_mail" = $true_flag; then
772
            echo "Voici la liste des député·e·s"
773
        fi
améliore sélection (à contin...
Sébastien MARQUE authored on 2022-07-30
774
        sqlite_request "select printf('%s - %s%s',
775
                                      députés.nom,
776
                                      groupes.nom,
777
                                      iif(groupes.nom_court is not null, ' [' || groupes.nom_court || ']', ''))
778
                        from députés
779
                        inner join groupes on groupes.id = députés.groupe
780
                        order by groupes.nom asc"
complète re-écriture
Sébastien Marque authored on 2019-04-27
781
    fi
782
    exit
783
fi
écriture directe en feuille ...
Sébastien MARQUE authored on 2019-03-31
784

            
multiples modifications
Sébastien MARQUE authored on 2022-08-07
785
for (( g = 0; g < ${#_groupe[@]}; g++ )); do
786
    # on vérifie si c'est un ou une député
787
    depute_count=$(sqlite_request "select count(distinct nom) from députés where nom like '%${_groupe[$g]}%'")
788
    groupe_count=$(sqlite_request "select count(distinct nom) from groupes where nom like \"%${_groupe[$g]}%\" or nom_court is '${_groupe[$g]}'")
789
    if test $depute_count -eq 1 -a $groupe_count -ne 1; then
790
        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
791
        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
792
    elif test $groupe_count -eq 1 -a $depute_count -ne 1; then
793
        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
794
        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
795
    elif test $groupe_count -eq 1 -a $depute_count -eq 1; then
améliore l'affichage des err...
seb authored on 2022-08-17
796
        echo "dénomination ambigüe pour « ${_groupe[$g]} »"
797
        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]}"
798
        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]}"
799
        echo
multiples modifications
Sébastien MARQUE authored on 2022-08-07
800
    elif test $depute_count -gt 1; then
améliore l'affichage des err...
seb authored on 2022-08-17
801
        echo "plusieurs député·e·s trouvé·e·s correspondant à « ${_groupe[$g]} »"
802
        sqlite_request "select distinct nom from députés where nom like '%${_groupe[$g]}%'" | grep --color=always -i "${_groupe[$g]}"
803
        echo
multiples modifications
Sébastien MARQUE authored on 2022-08-07
804
    elif test $groupe_count -gt 1; then
améliore l'affichage des err...
seb authored on 2022-08-17
805
        echo "plusieurs groupes trouvés correspondant à « ${_groupe[$g]} »"
806
        sqlite_request "select distinct nom from groupes where nom like \"%${_groupe[$g]}%\" or nom_court is '${_groupe[$g]}'" | grep --color=always -i "${_groupe[$g]}"
807
        echo
multiples modifications
Sébastien MARQUE authored on 2022-08-07
808
    else
améliore l'affichage des err...
seb authored on 2022-08-17
809
        echo "aucun·e député·e ou groupe ne correspond au critère « ${_groupe[$g]} »"
810
        echo
complète re-écriture
Sébastien Marque authored on 2019-04-27
811
    fi
multiples modifications
Sébastien MARQUE authored on 2022-08-07
812
done
complète re-écriture
Sébastien Marque authored on 2019-04-27
813

            
ajout de l'envoi du résultat...
seb authored on 2022-08-17
814
if test -s $process_token.mail; then
815
    exit 1
816
fi
817

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

            
821
if test "$envoi_par_mail" = $true_flag; then
822
    echo Vous pourrez trouver en pièce-jointe les résultats demandés avec ces critères:
823
    if test ${#groupe[@]} -gt 0; then
824
        echo "votes des groupes et député·e·s suivant·e·s:"
825
        printf " • %s\n" "${groupe[@]}"
826
    fi
827
    if test "$periode" = $true_flag; then
828
        echo sur la période allant $texte_periode
829
    fi
830
fi