forked from Nandaka/PixivUtil2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PixivConfig.py
369 lines (324 loc) · 16.7 KB
/
PixivConfig.py
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
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
# -*- coding: utf-8 -*-
import configparser
import itertools
import os
import os.path
import shutil
import sys
import time
import re
from colorama import Fore, Style
import PixivHelper
script_path = PixivHelper.module_path()
def stringNotEmpty(value):
return value is not None and len(value) > 0
class ConfigItem():
section = None
option = None
default = None
restriction = None
followup = None
error_message = None
def __init__(self, section, option, default, *, followup=None, restriction=None, error_message=None):
self.section = section
self.option = option
self.default = default
self.followup = followup
self.restriction = restriction
self.error_message = error_message
def process_value(self, value):
return_value = value
if self.restriction:
result = self.restriction(value)
if not result:
if self.error_message is not None:
raise ValueError(f"{self.error_message} {self.option}: [{value}]")
else:
raise ValueError(f"Illegal value for {self.option}: [{value}]")
if self.followup:
return_value = self.followup(value)
return return_value
class PixivConfig():
'''Configuration class'''
__logger = PixivHelper.get_logger()
configFileLocation = "config.ini"
__items = [
ConfigItem("Network", "useProxy", False),
ConfigItem("Network", "proxyAddress", ""),
ConfigItem("Network", "useragent",
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36"),
ConfigItem("Network", "useRobots", True),
ConfigItem("Network", "timeout", 60),
ConfigItem("Network", "retry", 3),
ConfigItem("Network", "retryWait", 5),
ConfigItem("Network", "downloadDelay", 5),
ConfigItem("Network", "checkNewVersion", True),
ConfigItem("Network", "notifyBetaVersion", True),
ConfigItem("Network", "openNewVersion", True),
ConfigItem("Network", "enableSSLVerification", True),
ConfigItem("Debug", "logLevel", "DEBUG",
followup=str.upper,
restriction=lambda x: x.upper() in ['CRITICAL', 'ERROR', 'WARN', 'WARNING', 'INFO', 'DEBUG', 'NOTSET']),
ConfigItem("Debug", "enableDump", True),
ConfigItem("Debug", "skipDumpFilter", ""),
ConfigItem("Debug", "dumpMediumPage", False),
ConfigItem("Debug", "dumpTagSearchPage", False),
ConfigItem("Debug", "debugHttp", False),
ConfigItem("Debug", "disableLog", False),
ConfigItem("Debug", "disableScreenClear", False),
ConfigItem("IrfanView", "IrfanViewPath", r"C:\Program Files\IrfanView", followup=os.path.expanduser),
ConfigItem("IrfanView", "startIrfanView", False),
ConfigItem("IrfanView", "startIrfanSlide", False),
ConfigItem("IrfanView", "createDownloadLists", False),
ConfigItem("Settings", "downloadListDirectory", ".", followup=os.path.expanduser),
ConfigItem("Settings", "useList", False),
ConfigItem("Settings", "processFromDb", True),
ConfigItem("Settings", "rootDirectory", "."),
ConfigItem("Settings", "downloadAvatar", False),
ConfigItem("Settings", "useSuppressTags", False),
ConfigItem("Settings", "tagsLimit", -1),
ConfigItem("Settings", "writeImageJSON", False),
ConfigItem("Settings", "writeImageInfo", False),
ConfigItem("Settings", "writeRawJSON", False),
ConfigItem("Settings", "RawJSONFilter",
"id,title,description,alt,userIllusts,storableTags,zoneConfig,extraData,comicPromotion,fanboxPromotion"),
ConfigItem("Settings", "includeSeriesJSON", False),
ConfigItem("Settings", "writeImageXMP", False),
ConfigItem("Settings", "writeImageXMPPerImage", False),
ConfigItem("Settings", "verifyImage", False),
ConfigItem("Settings", "writeUrlInDescription", False),
ConfigItem("Settings", "stripHTMLTagsFromCaption", False),
ConfigItem("Settings", "urlBlacklistRegex", ""),
ConfigItem("Settings", "dbPath", ""),
ConfigItem("Settings", "setLastModified", True),
ConfigItem("Settings", "useLocalTimezone", False),
ConfigItem("Settings", "defaultSketchOption", ""),
ConfigItem("Filename",
"filenameFormat",
"%artist% (%member_id%)" + os.sep + "%urlFilename% - %title%",
restriction=stringNotEmpty),
ConfigItem("Filename",
"filenameMangaFormat",
"%artist% (%member_id%)" + os.sep + "%urlFilename% - %title%",
restriction=lambda x: stringNotEmpty(x) and (x.find("%urlFilename%") >= 0 or (x.find('%page_index%') >= 0 or x.find('%page_number%') >= 0)),
error_message="At least %urlFilename%, %page_index%, or %page_number% is required in"),
ConfigItem("Filename", "filenameInfoFormat",
"%artist% (%member_id%)" + os.sep + "%urlFilename% - %title%",
restriction=stringNotEmpty),
ConfigItem("Filename", "filenameMangaInfoFormat",
"%artist% (%member_id%)" + os.sep + "%urlFilename% - %title%",
restriction=stringNotEmpty),
ConfigItem("Filename", "filenameSeriesJSON",
"%artist% (%member_id%)" + os.sep + "%manga_series_id% - %manga_series_title%",
restriction=stringNotEmpty),
ConfigItem("Filename", "filenameFormatSketch", "%artist% (%member_id%)" + os.sep + "%urlFilename% - %title%",
restriction=stringNotEmpty),
ConfigItem("Filename", "filenameFormatNovel",
"%artist% (%member_id%)" + os.sep + "%manga_series_id% %manga_series_order% %urlFilename% - %title%",
restriction=stringNotEmpty),
ConfigItem("Filename", "avatarNameFormat", ""),
ConfigItem("Filename", "backgroundNameFormat", ""),
ConfigItem("Filename", "tagsSeparator", ", "),
ConfigItem("Filename", "createMangaDir", False),
ConfigItem("Filename", "useTagsAsDir", False),
ConfigItem("Filename", "urlDumpFilename", "url_list_%Y%m%d"),
ConfigItem("Filename", "useTranslatedTag", False),
ConfigItem("Filename", "tagTranslationLocale", "en"),
ConfigItem("Filename", "customBadChars", "", followup=PixivHelper.parse_custom_sanitizer),
ConfigItem("Filename", "customCleanUpRe", "", followup=PixivHelper.parse_custom_clean_up_re),
ConfigItem("Authentication", "username", ""),
ConfigItem("Authentication", "password", ""),
ConfigItem("Authentication", "cookie", ""),
ConfigItem("Authentication", "cookieFanbox", ""),
ConfigItem("Authentication", "refresh_token", ""),
ConfigItem("Pixiv", "numberOfPage", 0),
ConfigItem("Pixiv", "r18mode", False),
ConfigItem("Pixiv", "r18Type", 0), # Issue #439
ConfigItem("Pixiv", "dateFormat", ""),
ConfigItem("Pixiv", "autoAddMember", False),
ConfigItem("Pixiv", "aiDisplayFewer", False),
ConfigItem("FANBOX", "filenameFormatFanboxCover",
"FANBOX %artist% (%member_id%)" + os.sep + "%urlFilename% - %title%",
restriction=stringNotEmpty),
ConfigItem("FANBOX", "filenameFormatFanboxContent",
"FANBOX %artist% (%member_id%)" + os.sep + "%urlFilename% - %title%",
restriction=lambda x: stringNotEmpty(x) and (x.find("%urlFilename%") >= 0 or (x.find('%page_index%') >= 0 or x.find('%page_number%') >= 0)),
error_message="At least %urlFilename%, %page_index%, or %page_number% is required in"),
ConfigItem("FANBOX", "filenameFormatFanboxInfo",
"FANBOX %artist% (%member_id%)" + os.sep + "%urlFilename% - %title%",
restriction=stringNotEmpty),
ConfigItem("FANBOX", "writeHtml", False),
ConfigItem("FANBOX", "minTextLengthForNonArticle", 45),
ConfigItem("FANBOX", "minImageCountForNonArticle", 3),
ConfigItem("FANBOX", "useAbsolutePathsInHtml", False),
ConfigItem("FANBOX", "downloadCoverWhenRestricted", False),
ConfigItem("FANBOX", "downloadCover", True),
ConfigItem("FANBOX", "checkDBProcessHistory", False),
ConfigItem("FANBOX", "listPathFanbox", "listfanbox.txt"),
ConfigItem("FFmpeg", "ffmpeg", "ffmpeg.exe"),
ConfigItem("FFmpeg", "ffmpegCodec", "libvpx-vp9"),
ConfigItem("FFmpeg", "ffmpegExt", "webm"),
ConfigItem("FFmpeg", "ffmpegParam", "-lossless 0 -crf 15 -b 0 -vsync 0"),
ConfigItem("FFmpeg", "mkvCodec", "copy"),
ConfigItem("FFmpeg", "mkvParam", ""),
ConfigItem("FFmpeg", "webpCodec", "libwebp"),
ConfigItem("FFmpeg", "webpParam", "-lossless 0 -compression_level 5 -quality 100 -loop 0 -vsync 0"),
ConfigItem("FFmpeg", "gifParam",
"-filter_complex [0:v]split[a][b];[a]palettegen=stats_mode=diff[p];[b][p]paletteuse=dither=bayer:bayer_scale=5:diff_mode=rectangle -vsync 0"),
ConfigItem("FFmpeg", "apngParam", "-plays 0 -vsync 0"),
ConfigItem("FFmpeg", "verboseOutput", False),
ConfigItem("Ugoira", "writeUgoiraInfo", False),
ConfigItem("Ugoira", "createUgoira", False),
ConfigItem("Ugoira", "createMkv", False),
ConfigItem("Ugoira", "createWebm", False),
ConfigItem("Ugoira", "createWebp", False),
ConfigItem("Ugoira", "createGif", False),
ConfigItem("Ugoira", "createApng", False),
ConfigItem("Ugoira", "deleteUgoira", False),
ConfigItem("Ugoira", "deleteZipFile", False),
ConfigItem("DownloadControl", "minFileSize", 0),
ConfigItem("DownloadControl", "maxFileSize", 0),
ConfigItem("DownloadControl", "checkLastModified", True),
ConfigItem("DownloadControl", "alwaysCheckFileSize", False),
ConfigItem("DownloadControl", "overwrite", False),
ConfigItem("DownloadControl", "backupOldFile", False),
ConfigItem("DownloadControl", "dayLastUpdated", 7),
ConfigItem("DownloadControl", "checkUpdatedLimit", 0),
ConfigItem("DownloadControl", "useBlacklistTags", False),
ConfigItem("DownloadControl", "useBlacklistTitles", False),
ConfigItem("DownloadControl", "useBlacklistTitlesRegex", False),
ConfigItem("DownloadControl", "dateDiff", 0),
ConfigItem("DownloadControl", "enableInfiniteLoop", False),
ConfigItem("DownloadControl", "useBlacklistMembers", False),
ConfigItem("DownloadControl", "downloadResized", False),
ConfigItem("DownloadControl", "skipUnknownSize", False),
ConfigItem("DownloadControl", "enablePostProcessing", False),
ConfigItem("DownloadControl", "postProcessingCmd", ""),
ConfigItem("DownloadControl", "extensionFilter", ""),
ConfigItem("DownloadControl", "downloadBuffer", 512, restriction=lambda x: int(x) > 0),
]
def __init__(self):
for item in self.__items:
setattr(self, item.option, item.process_value(item.default))
@property
def proxy(self):
value = getattr(self, "proxyAddress", None)
if not value:
return None
match = re.match(r"^(?:(https?|socks[45]h?)://)?([\w.-]+)(:\d+)?$", value)
if not match:
return None
scheme, netloc, port = match.groups()
scheme = scheme or "http"
value = f"{scheme}://{netloc}{port}"
return {"http": value, "https": value}
def loadConfig(self, path=None):
if path is not None:
self.configFileLocation = path
else:
self.configFileLocation = script_path + os.sep + 'config.ini'
print('Reading', self.configFileLocation, '...')
config = configparser.RawConfigParser()
try:
with PixivHelper.open_text_file(self.configFileLocation) as reader:
content = reader.read()
except BaseException:
print('Error at loadConfig() reading file:', self.configFileLocation, "\n", sys.exc_info())
self.__logger.exception('Error at loadConfig() reading file: %s', self.configFileLocation)
self.writeConfig(error=True, path=self.configFileLocation)
return
haveError = False
config.read_string(content)
for item in PixivConfig.__items:
option_type = type(item.default)
method = config.get
if option_type == int:
method = config.getint
elif option_type == bool:
method = config.getboolean
value = None
try:
try:
value = method(item.section, item.option)
except (configparser.NoSectionError, configparser.NoOptionError):
haveError = True
for section in config.sections():
try:
value = method(section, item.option)
break
except (configparser.NoSectionError, configparser.NoOptionError):
continue
if value is None:
raise
except BaseException:
print(item.option, "=", item.default)
value = item.default
haveError = True
# Issue #743
try:
value = item.process_value(value)
except ValueError:
print(Fore.RED + Style.BRIGHT + f"{sys.exc_info()}" + Style.RESET_ALL)
self.__logger.exception('Error at process_value() of : %s', item.option)
print(Fore.YELLOW + Style.BRIGHT + f"{item.option} = {item.default}" + Style.RESET_ALL)
value = item.default
haveError = True
# assign the value to the actual configuration attribute
self.__setattr__(item.option, value)
if haveError:
print(Fore.RED + Style.BRIGHT + 'Configurations with invalid value are set to default value.' + Style.RESET_ALL)
self.writeConfig(error=True, path=self.configFileLocation)
print('Configuration loaded.')
# -UI01B------write config
def writeConfig(self, error=False, path=None):
'''Backup old config if exist and write updated config.ini'''
print('Writing config file...', end=' ')
config = configparser.RawConfigParser()
config.optionxform = lambda option: option
groups = itertools.groupby(PixivConfig.__items, lambda x: x.section)
for k, g in groups:
config.add_section(k)
for item in g:
config.set(item.section, item.option, self.__getattribute__(item.option))
if path is not None:
configlocation = path
else:
configlocation = 'config.ini'
try:
# with codecs.open('config.ini.bak', encoding = 'utf-8', mode = 'wb') as configfile:
with open(configlocation + '.tmp', 'w', encoding='utf8') as configfile:
config.write(configfile)
configfile.close()
if os.path.exists(configlocation):
if error:
backupName = configlocation + '.error-' + str(int(time.time()))
print("Backing up old config (error exist!) to " + backupName)
shutil.move(configlocation, backupName)
else:
print("Backing up old config to config.ini.bak")
shutil.move(configlocation, configlocation + '.bak')
self.__logger.debug(f"renaming {configlocation}.tmp to {configlocation}")
os.rename(configlocation + '.tmp', configlocation)
except BaseException:
self.__logger.exception('Error at writeConfig()')
raise
print('Configuration saved.')
def printConfig(self):
print('Configuration: ')
groups = {k: list(g) for k, g in itertools.groupby(PixivConfig.__items, lambda x: x.section)}
sections = ["Authentication", "Network", "Debug", "IrfanView", "Settings", "Filename", "Pixiv", "FANBOX",
"FFmpeg", "Ugoira", "DownloadControl"]
sections.extend([k for k in groups if k not in sections])
for section in sections:
g = groups.get(section)
if g:
print(f" [{section}]")
for item in g:
print(f" - {item.option:{25}} = {self.__getattribute__(item.option)}")
print('')
if __name__ == '__main__':
cfg = PixivConfig()
cfg.loadConfig("./config.ini")
test_filename = "C:\\haha\\hehe\\ ()\\filename.jpg"
print(f"[{cfg.customCleanUpRe}]")
print(f"{test_filename} ==> {re.sub(cfg.customCleanUpRe, '', test_filename)}")