-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathduscr.sh
executable file
·340 lines (314 loc) · 12.5 KB
/
duscr.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
#!/bin/bash
# duscr - the Dziennik Ustaw SCRaper
# Copyright (C) 2024 adameus03 <[email protected]>.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
### === EXTERNALS DESCRIPTION ===
## Arguments
# $1 - mode, one of the following options:
# init - downloads everything starting from 1944 and ending today
# sync - checks for new stuff and updates the dataset if needed
# $2 - data directory path
# $3 - log file path
# $4 - stdout logs flag (1 or 0)
### === INTERNALS DESCRIPTION ===
## Formats
# 2012 - 2024 - new format (F02)
# 1944 - 2011 - old format (F01)
# BASE_URL https://dziennikustaw.gov.pl/DU/rok/<YYYY> (both formats F01 and F02)
# target elements: #c_table > tbody > tr > a
# target attribute: href
# target path: "${BASE_URL}<target attribute value>"
BASE_URL='https://dziennikustaw.gov.pl/DU/rok'; # to obtain list
BASE_URL_DIRECT='https://dziennikustaw.gov.pl'; # to avoid redirections when downloading pdf
CURRENT_YEAR=$(date +%Y); # so that we now when to stop scraping
FIRST_YEAR=1944;
#FIRST_YEAR=2023;
FIRST_YEAR_F01="$FIRST_YEAR";
FIRST_YEAR_F02=2012;
DUSCR_DIR_RELPATH=".duscr";
DUSCR_HEADPOINT_RELPATH="headpoint";
# $1 - URL
# $2 - headpoint save flag
# $3 - sync check flag
# $4 - old headpoint
# $5 - log file path
# $6 - stdout logs flag (1 or 0)
function duscr_bulk_download() {
BULK_DOWNLOAD_URL=$1;
HEADPOINT_SAVE_FLAG=$2;
SYNC_CHECK_FLAG=$3;
OLD_HEADPOINT=$4;
LOG_FILE_PATH=$5;
STDOUT_LOGS_FLAG=$6;
#echo "SYNC_CHECK_FLAG = $SYNC_CHECK_FLAG";
while read -r relpath; do
if [ "$HEADPOINT_SAVE_FLAG" = "1" ]; then
# save the headpoint to .duscr/headpoint
HEADPOINT_PDF_RELPATH=$(echo "$relpath" | awk -F '/' '{print $5}');
echo "${HEADPOINT_PDF_RELPATH:1:-4}" > "$DUSCR_DIR_RELPATH/$DUSCR_HEADPOINT_RELPATH" || (echo "Failed to write to $DUSCR_HEADPOINT_RELPATH" >> "$LOG_FILE_PATH"; exit 1);
if [ "$STDOUT_LOGS_FLAG" = "1" ]; then
echo "${HEADPOINT_PDF_RELPATH:1:-4}";
fi;
HEADPOINT_SAVE_FLAG=0;
fi;
if [ "$SYNC_CHECK_FLAG" = "0" ]; then
until wget -q "$BASE_URL_DIRECT/$relpath"; do sleep 5; done;
elif [ "$SYNC_CHECK_FLAG" = "1" ]; then
CURRPOINT_PDF_RELPATH=$(echo "$relpath" | awk -F '/' '{print $5}');
if [[ "${CURRPOINT_PDF_RELPATH:1:-4}" > "$OLD_HEADPOINT" ]]; then
echo "Sync: adding $relpath" >> "$LOG_FILE_PATH";
if [ "$STDOUT_LOGS_FLAG" = "1" ]; then
echo "Sync: adding $relpath";
fi;
until wget -q "$BASE_URL_DIRECT/$relpath"; do sleep 5; done;
fi;
else
echo "Invalid SYNC_CHECK_FLAG. Quit" >> "$LOG_FILE_PATH";
if [ "$STDOUT_LOGS_FLAG" = "1" ]; then
echo "Invalid SYNC_CHECK_FLAG. Quit";
fi;
exit 1; # TODO FIXME
fi;
done < <(until curl -s "$BULK_DOWNLOAD_URL"; do sleep 5; done | pup '#c_table tbody tr a' | sed -n 's/.*href=\"\([^"]*\)".*/\1/p' | grep .pdf);
echo "$HEADPOINT_SAVE_FLAG"; #FIXME
}
# $1 - YYYY
# $2 - journalno
# $3 - log file path
# $4 - stdout logs flag (1 or 0)
function duscr_journal_scrap() {
YYYY=$1;
JOURNALNO=$2;
LOG_FILE_PATH=$3;
STDOUT_LOGS_FLAG=$4;
duscr_bulk_download "$BASE_URL/$YYYY/wydanie/$JOURNALNO" 0 0 0 "$LOG_FILE_PATH" "$STDOUT_LOGS_FLAG" > /dev/null;
}
# $1 - YYYY
# $2 - actrangeno
# $3 - headpoint save flag
# $4 - sync flag
# $5 - log file path
# $6 - stdout logs flag (1 or 0)
# $7 - old headpoint
function duscr_actrange_scrap() {
YYYY=$1;
ACTRANGENO=$2;
HEADPOINT_SAVE_FLAG=$3;
SYNC_FLAG=$4;
LOG_FILE_PATH=$5;
STDOUT_LOGS_FLAG=$6;
OLD_HEADPOINT=$7;
duscr_bulk_download "$BASE_URL/$YYYY/$ACTRANGENO" "$HEADPOINT_SAVE_FLAG" "$SYNC_FLAG" "$OLD_HEADPOINT" "$LOG_FILE_PATH" "$STDOUT_LOGS_FLAG"; #FIXME this echo
}
# $1 - YYYY
# $2 - sync flag
# $3 - log file path
# $4 - stdout logs flag (1 or 0)
function duscr_year_scrap() {
YYYY=$1;
SYNC_FLAG=$2;
LOG_FILE_PATH=$3;
STDOUT_LOGS_FLAG=$4;
HEADPOINT_SAVE_FLAG=0;
HEADPOINT_OLD=0;
if [ "$YYYY" = "$CURRENT_YEAR" ]; then
HEADPOINT_SAVE_FLAG=1;
fi;
if [ "$SYNC_FLAG" = "1" ]; then
if [ ! -f "$DUSCR_DIR_RELPATH/$DUSCR_HEADPOINT_RELPATH" ]; then
echo "Sync: missing headpoint! The duscr scraping data directory was not initialized correctly (interrupted download process?). You need to empty the directory '$DATA_DIR' (or choose a different one) and then run 'duscr init <directory_path>'. Quit" >> "$LOG_FILE_PATH";
if [ "$STDOUT_LOGS_FLAG" = "1" ]; then
echo "Sync: missing headpoint! The duscr scraping data directory was not initialized correctly (interrupted download process?). You need to empty the directory '$DATA_DIR' (or choose a different one) and then run 'duscr init <directory_path>'. Quit";
fi;
exit 1;
fi;
HEADPOINT_OLD=$(cat "$DUSCR_DIR_RELPATH/$DUSCR_HEADPOINT_RELPATH");
fi;
if [ "$YYYY" -gt "$CURRENT_YEAR" ]; then
echo "Invalid attempt to scrap the future. Quit";
exit 1;
elif [ "$YYYY" -ge "$FIRST_YEAR_F02" ]; then
#echo "[dbg] LOG_FILE_PATH=$LOG_FILE_PATH";
echo "Scraping year $YYYY... " >> "$LOG_FILE_PATH";
if [ "$STDOUT_LOGS_FLAG" = "1" ]; then
echo "Scraping year $YYYY...";
fi;
#echo "[dbg] SYNC_FLAG = $SYNC_FLAG";
if [ "$SYNC_FLAG" = "1" ]; then
HEADPOINT_SAVE_FLAG=$(duscr_bulk_download "$BASE_URL/$YYYY" "$HEADPOINT_SAVE_FLAG" "$SYNC_FLAG" "$HEADPOINT_OLD" "$LOG_FILE_PATH" "$STDOUT_LOGS_FLAG");
else
# scrap ranges
echo "Processing act ranges for year $YYYY" >> "$LOG_FILE_PATH";
if [ "$STDOUT_LOGS_FLAG" = "1" ]; then
echo "Processing act ranges for year $YYYY";
fi;
ACTRANGENO_MAX_SET_FLAG=1;
ACTRANGENO_MAX=0;
while read -r actrangeno; do
if [ "$ACTRANGENO_MAX_SET_FLAG" = "1" ]; then
ACTRANGENO_MAX="$actrangeno";
ACTRANGENO_MAX_SET_FLAG=0;
echo "Number of act ranges: $ACTRANGENO_MAX" >> "$LOG_FILE_PATH";
if [ "$STDOUT_LOGS_FLAG" = "1" ]; then
echo "Number of act ranges: $ACTRANGENO_MAX";
fi;
fi;
PROGRESSBAR_PROGRESS=$((ACTRANGENO_MAX - actrangeno + 1));
progressbar "Scraping year $YYYY, act range no $actrangeno..." "$PROGRESSBAR_PROGRESS" "$ACTRANGENO_MAX";
HEADPOINT_SAVE_FLAG=$(duscr_actrange_scrap "$YYYY" "$actrangeno" "$HEADPOINT_SAVE_FLAG" "$SYNC_FLAG" "$LOG_FILE_PATH" "$STDOUT_LOGS_FLAG" "$OLD_HEADPOINT");
#if [ "$SYNC_FLAG" = "0" ]; then
# duscr_actrange_scrap "$YYYY" "$actrangeno" 0 "$LOG_FILE_PATH" "$STDOUT_LOGS_FLAG";
#else
# duscr_actrange_scrap "$YYYY" "$actrangeno" 1 "$LOG_FILE_PATH" "$STDOUT_LOGS_FLAG";
#fi;
done < <(until curl -s "$BASE_URL/$YYYY"; do sleep 5; done | pup 'div.frigth a' | sed -n 's/.*href=\"\([^"]*\)".*/\1/p' | tac | awk -F '/' '{print $5}');
fi;
echo "Done" >> "$LOG_FILE_PATH";
if [ "$STDOUT_LOGS_FLAG" = "1" ]; then
echo "Done";
fi;
elif [ "$YYYY" -ge "$FIRST_YEAR_F01" ]; then
# Scan through the available journals
echo "Processing journal list for year $YYYY" >> "$LOG_FILE_PATH";
if [ "$STDOUT_LOGS_FLAG" = "1" ]; then
echo "Processing journal list for year $YYYY";
fi;
JOURNALNO_MAX_SET_FLAG=1;
JOURNALNO_MAX=0;
while read -r journalno; do
if [ "$JOURNALNO_MAX_SET_FLAG" = "1" ]; then
JOURNALNO_MAX="$journalno";
JOURNALNO_MAX_SET_FLAG=0;
echo "Number of journals: $JOURNALNO_MAX" >> "$LOG_FILE_PATH";
if [ "$STDOUT_LOGS_FLAG" = "1" ]; then
echo "Number of journals: $JOURNALNO_MAX";
fi;
fi;
PROGRESSBAR_PROGRESS=$((JOURNALNO_MAX - journalno + 1));
progressbar "Scraping year $YYYY, journal $journalno... " "$PROGRESSBAR_PROGRESS" "$JOURNALNO_MAX";
duscr_journal_scrap "$YYYY" "$journalno" "$LOG_FILE_PATH" "$STDOUT_LOGS_FLAG";
done < <(until curl -s "$BASE_URL/$YYYY"; do sleep 5; done | pup '#c_table tbody tr td.numberAlign a' | sed -n 's/.*href=\"\([^"]*\)".*/\1/p' | grep wydanie | awk -F '/' '{print $6}');
else
echo "Invalid attempt to scrap distant past before $FIRST_YEAR_F01" >> "$STDOUT_LOGS_FLAG";
if [ "$STDOUT_LOGS_FLAG" = "1" ]; then
echo "Invalid attempt to scrap distant past before $FIRST_YEAR_F01";
fi;
exit 1;
fi;
}
# $1 - mode option
# $2 - data directory path
# $3 - log file path
# $4 - stdout logs flag
function duscr_arg_common_sanity_checks() {
MODE=$1;
DATA_DIR=$2;
LOG_FILE_PATH=$3;
STDOUT_LOGS_FLAG=$4;
if [ ! -d "$DATA_DIR" ]; then
echo "The provided directory \"$DATA_DIR\" doesn't exist!";
exit 1;
fi;
if [ "$DATA_DIR" = "" ]; then
echo "Missing data directory path as second argument";
exit 1;
fi;
if [ "$LOG_FILE_PATH" = "" ]; then
echo "Missing log file path as third argument";
exit 1;
fi;
if [ -d "$LOG_FILE_PATH" ]; then
echo "$LOG_FILE_PATH is a directory";
exit 1;
fi;
if [ "$STDOUT_LOGS_FLAG" = "" ]; then
echo "Missing stdout_logs_flag as fourth argument";
exit 1;
fi;
if [[ ! "$STDOUT_LOGS_FLAG" =~ ^[01]$ ]]; then
echo "Invalid value of fourth argument: stdout_logs_flag should be either '0' or '1'";
exit 1;
fi;
}
# $1 - mode option
# $2 - data directory path
# $3 - log file path
# $4 - stdout logs flag (1 or 0)
function duscr_args_handler() {
MODE=$1;
DATA_DIR=$2;
LOG_FILE_PATH=$3;
STDOUT_LOGS_FLAG=$4;
case $MODE in
init)
duscr_arg_common_sanity_checks "$MODE" "$DATA_DIR" "$LOG_FILE_PATH" "$STDOUT_LOGS_FLAG";
LOG_FILE_PATH="$(realpath "$LOG_FILE_PATH")";
cd "$DATA_DIR" || (echo "Failed to cd $DATA_DIR"; exit 1);
# check if .duscr exists
if [ -d "$DUSCR_DIR_RELPATH" ]; then
echo "$DATA_DIR already is a duscr initialized directory. Quit.";
exit 1;
fi;
if [ -n "$( ls -A . )" ]; then
read -p "$DATA_DIR is a non-empty directory. Are you sure you want to use it instead of an empty directory? " -n 1 -r
echo;
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
echo "Exiting";
exit 1;
fi;
fi;
# Create .duscr
mkdir "$DUSCR_DIR_RELPATH";
# download everything starting from 1944 and ending CURRENT_YEAR
for year in $(seq "$FIRST_YEAR" "$CURRENT_YEAR");
do
#echo "[dbg1] LOG_FILE_PATH = $LOG_FILE_PATH";
duscr_year_scrap "$year" 0 "$LOG_FILE_PATH" "$STDOUT_LOGS_FLAG";
done;
cd - > /dev/null || (echo "Failed to cd -"; exit 1);
;;
sync)
# check for new stuff and update the dataset if needed
duscr_arg_common_sanity_checks "$MODE" "$DATA_DIR" "$LOG_FILE_PATH" "$STDOUT_LOGS_FLAG";
LOG_FILE_PATH="$(realpath "$LOG_FILE_PATH")";
cd "$DATA_DIR" || (echo "Failed to cd $DATA_DIR"; exit 1);
# check if .duscr doesn't exist
if [ ! -d "$DUSCR_DIR_RELPATH" ]; then
echo "$DATA_DIR is not a duscr data directory. Use 'duscr init <directory_path>' to initialize a duscr scraping data directory. Quit";
exit 1;
fi;
# sync (check for any new acts available)"
duscr_year_scrap "$CURRENT_YEAR" 1 "$LOG_FILE_PATH" "$STDOUT_LOGS_FLAG";
cd - > /dev/null || (echo "Failed to cd -"; exit 1);
;;
*)
echo "------ duscr (the Dziennik Ustaw SCRaper)------";
echo "Usage: duscr.sh [mode] [data_dir] [log_file] [stdout_logs_flag]";
echo " mode - one of the following options:";
echo " init - downloads everything starting from 1944 and ending today";
echo " sync - checks for new stuff and updates the dataset if needed";
echo " stdout_logs_flag - one of the following values:";
echo " 0 - stdout logs disabled";
echo " 1 - stdout logs enabled";
;;
esac;
}
# shellcheck source=/dev/null
source "progressbar.sh" || (echo "Missing progressbar.sh script from https://github.com/roddhjav/progressbar"; exit 1);
#echo "Third argument is: $3";
#echo "realpath: $(realpath $3)";
#echo "realpath fixed: $(realpath /dev/stdout)";
duscr_args_handler "$1" "$2" "$3" "$4";