forked from Nandaka/PixivUtil2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PixivListHandler.py
144 lines (131 loc) · 6.06 KB
/
PixivListHandler.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
import os
import sys
import PixivArtistHandler
import PixivHelper
import PixivSketchHandler
import PixivTagsHandler
from PixivListItem import PixivListItem
from PixivTags import PixivTags
def process_list(caller, config, list_file_name=None, tags=None, include_sketch=False):
db = caller.__dbManager__
br = caller.__br__
result = None
try:
# Getting the list
if config.processFromDb:
PixivHelper.print_and_log('info', 'Processing from database.')
if config.dayLastUpdated == 0:
result = db.selectAllMember()
else:
print(f'Select only last {config.dayLastUpdated} days.')
result = db.selectMembersByLastDownloadDate(config.dayLastUpdated)
else:
PixivHelper.print_and_log('info', f'Processing from list file: {list_file_name}')
result = PixivListItem.parseList(list_file_name, config.rootDirectory)
ignore_file_list = "ignore_list.txt"
if os.path.exists(ignore_file_list):
PixivHelper.print_and_log('info', f'Processing ignore list for member: {ignore_file_list}')
ignore_list = PixivListItem.parseList(ignore_file_list, config.rootDirectory)
for ignore in ignore_list:
for item in result:
if item.memberId == ignore.memberId:
result.remove(item)
break
PixivHelper.print_and_log('info', f"Found {len(result)} items.")
current_member = 1
for item in result:
retry_count = 0
while True:
try:
prefix = f"[{current_member} of {len(result)}] "
PixivArtistHandler.process_member(caller,
config,
item.memberId,
user_dir=item.path,
tags=tags,
title_prefix=prefix)
break
except KeyboardInterrupt:
raise
except BaseException as ex:
if retry_count > config.retry:
PixivHelper.print_and_log('error', f'Giving up member_id: {item.memberId} ==> {ex}')
break
retry_count = retry_count + 1
print(f'Something wrong, retrying after 2 second ({retry_count}) ==> {ex}')
PixivHelper.print_delay(2)
retry_count = 0
while include_sketch:
try:
# Issue 1007
# fetching artist token...
(artist_model, _) = br.getMemberPage(item.memberId)
prefix = f"[{current_member} ({item.memberId} - {artist_model.artistToken}) of {len(result)}] "
PixivSketchHandler.process_sketch_artists(caller,
config,
artist_model.artistToken,
title_prefix=prefix)
break
except KeyboardInterrupt:
raise
except BaseException as ex:
if retry_count > config.retry:
PixivHelper.print_and_log('error', f'Giving up member_id: {item.memberId} when processing PixivSketch ==> {ex}')
break
retry_count = retry_count + 1
print(f'Something wrong, retrying after 2 second ({retry_count}) ==> {ex}')
PixivHelper.print_delay(2)
current_member = current_member + 1
br.clear_history()
print(f'done for member id = {item.memberId}.')
print('')
except Exception as ex:
if isinstance(ex, KeyboardInterrupt):
raise
caller.ERROR_CODE = getattr(ex, 'errorCode', -1)
PixivHelper.print_and_log('error', f'Error at process_list(): {sys.exc_info()}')
print('Failed')
raise
def process_tags_list(caller,
config,
filename,
page=1,
end_page=0,
wild_card=True,
sort_order='date_d',
bookmark_count=None,
start_date=None,
end_date=None):
try:
print("Reading:", filename)
tags = PixivTags.parseTagsList(filename)
for tag in tags:
PixivTagsHandler.process_tags(caller,
config,
tag,
page=page,
end_page=end_page,
wild_card=wild_card,
start_date=start_date,
end_date=end_date,
use_tags_as_dir=config.useTagsAsDir,
bookmark_count=bookmark_count,
sort_order=sort_order)
PixivHelper.wait(config=config)
except Exception as ex:
if isinstance(ex, KeyboardInterrupt):
raise
caller.ERROR_CODE = getattr(ex, 'errorCode', -1)
PixivHelper.print_and_log('error', f'Error at process_tags_list(): {sys.exc_info()}')
raise
def import_list(caller,
config,
list_name='list.txt'):
list_path = config.downloadListDirectory + os.sep + list_name
if os.path.exists(list_path):
list_txt = PixivListItem.parseList(list_path, config.rootDirectory)
caller.__dbManager__.importList(list_txt)
print(f"Updated {len(list_txt)} items.")
else:
msg = f"List file not found: {list_path}"
PixivHelper.print_and_log('warn', msg)