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
|
# wikiget - CLI tool for downloading files from Wikimedia sites
# Copyright (C) 2018-2023 Cody Logan and contributors
# SPDX-License-Identifier: GPL-3.0-or-later
#
# Wikiget 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.
#
# Wikiget 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 Wikiget. If not, see <https://www.gnu.org/licenses/>.
import logging
import os
import sys
from argparse import Namespace
from concurrent.futures import ThreadPoolExecutor
from mwclient import APIError, InvalidResponse, LoginError
from requests import ConnectionError, HTTPError
from tqdm import tqdm
import wikiget
from wikiget.client import connect_to_site, query_api
from wikiget.exceptions import ParseError
from wikiget.file import File
from wikiget.logging import FileLogAdapter
from wikiget.parse import get_dest, read_batch_file
from wikiget.validations import verify_hash
logger = logging.getLogger(__name__)
def prep_download(dl: str, args: Namespace) -> File:
file = get_dest(dl, args)
# check if the destination file already exists; don't overwrite unless the user says
if os.path.isfile(file.dest) and not args.force:
msg = f"[{file.dest}] File already exists; skipping download (use -f to force)"
raise FileExistsError(msg)
site = connect_to_site(file.site, args)
file.image = query_api(file.name, site)
return file
def process_download(args: Namespace) -> int:
exit_code = 0
if args.batch:
# batch download mode
errors = batch_download(args)
if errors:
# return non-zero exit code if any problems were encountered, even if some
# downloads completed successfully
logger.warning(
f"{errors} problem{'s'[:errors^1]} encountered during batch processing"
)
exit_code = 1 # completed with errors
else:
# single download mode
try:
file = prep_download(args.FILE, args)
except ParseError as e:
logger.error(e)
exit_code = 1
except FileExistsError as e:
logger.warning(e)
exit_code = 1
except (ConnectionError, HTTPError, InvalidResponse, LoginError, APIError):
exit_code = 1
else:
errors = download(file, args)
if errors:
exit_code = 1 # completed with errors
return exit_code
def batch_download(args: Namespace) -> int:
errors = 0
# parse batch file
try:
dl_dict = read_batch_file(args.FILE)
except OSError as e:
logger.error(f"File could not be read: {e}")
sys.exit(1)
# TODO: validate file contents before download process starts
with ThreadPoolExecutor(max_workers=args.threads) as executor:
futures = []
for line_num, line in dl_dict.items():
# keep track of batch file line numbers for debugging/logging purposes
logger.info(f"Processing '{line}' at line {line_num}")
try:
file = prep_download(line, args)
except ParseError as e:
logger.warning(f"{e} (line {line_num})")
errors += 1
continue
except FileExistsError as e:
logger.warning(e)
errors += 1
continue
except (ConnectionError, HTTPError, InvalidResponse, LoginError, APIError):
logger.warning(
f"Unable to download '{line}' (line {line_num}) due to an error"
)
errors += 1
continue
future = executor.submit(download, file, args)
futures.append(future)
# wait for downloads to finish
for future in futures:
errors += future.result()
return errors
def download(f: File, args: Namespace) -> int:
file = f.image
filename = f.name
dest = f.dest
site = file.site
errors = 0
adapter = FileLogAdapter(logger, {"filename": filename})
if file.exists:
# file exists either locally or at a common repository, like Wikimedia Commons
file_url = file.imageinfo["url"]
file_size = file.imageinfo["size"]
file_sha1 = file.imageinfo["sha1"]
filename_log = f"Downloading '{filename}' ({file_size} bytes) from {site.host}"
if args.output:
filename_log += f" to '{dest}'"
adapter.info(filename_log)
adapter.info(f"{file_url}")
if args.dry_run:
adapter.warning("Dry run; download skipped")
return 0
try:
fd = open(dest, "wb")
except OSError as e:
adapter.error(f"File could not be written: {e}")
errors += 1
return errors
# download the file(s)
leave_bars = args.verbose >= wikiget.STD_VERBOSE
with tqdm(
desc=dest,
leave=leave_bars,
total=file_size,
unit="B",
unit_scale=True,
unit_divisor=wikiget.CHUNKSIZE,
) as progress_bar, fd:
res = site.connection.get(file_url, stream=True)
for chunk in res.iter_content(wikiget.CHUNKSIZE):
fd.write(chunk)
progress_bar.update(len(chunk))
# verify file integrity and log details
try:
dl_sha1 = verify_hash(dest)
except OSError as e:
adapter.error(f"File downloaded but could not be verified: {e}")
errors += 1
return errors
adapter.info(f"Remote file SHA1 is {file_sha1}")
adapter.info(f"Local file SHA1 is {dl_sha1}")
if dl_sha1 == file_sha1:
adapter.info("Hashes match!")
# at this point, we've successfully downloaded the file
success_log = f"'{filename}' downloaded"
if args.output:
success_log += f" to '{dest}'"
adapter.info(success_log)
else:
adapter.error("Hash mismatch! Downloaded file may be corrupt.")
errors += 1
else:
# no file information returned
adapter.warning("Target does not appear to be a valid file")
errors += 1
return errors
|