-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathevent.py
297 lines (250 loc) · 7.14 KB
/
event.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
import d
import fileManager
import setbox
import thread
import pica
import aboutme
import sys
log=None
root=None
page=None
tree=None
mself=None
mpica=None
#一些状态标识量
threadaState=0
setboxState=0
aboutState=0
downloadThred=None
#下载的两个下载状态组件列表
DownloadStateList=()
#下载是在暂停、取消还是在正常状态
isStartDownload=1
#正在下载中的那个漫画列组件
downloadingList=None
#获取pica类
def getPica():
global mpica
mpica=pica.pica(mself)
#-----日志交互-----
#打印信息到窗口日志
def printl(text):
log.insert('end',text+'\n')
log.see('end')
#-----列表控制-----
def insertList(data):
tree.insert_tv(data)
#-----配置设置-----
#将配置导入全局设置
def setConfig(data):
d.Email=data['user']
d.Password=data['password']
d.Proxy=data['proxy']
d.Image_quality=data['quality']
d.useProxy=data['useProxy']
#从配置文件中读取配置
def getConfigByFile():
setConfig(fileManager.readConfig())
#打印所有配置到窗口日志
def printConfig():
printl("----------------------")
printl("用户名:"+d.Email)
printl("图片质量:"+d.Image_quality)
printl("代理设置:"+d.Proxy)
printl("----------------------")
#检查是否是初次启动,初始化配置文件
def checkConfig():
if fileManager.isExist(".\\data\\config.json"):
printl("加载配置文件")
getConfigByFile()
printConfig()
huoqu(1)
else:
printl("初次配置")
openMenu()
printConfig()
printl("加载日志")
if fileManager.isExist('.\\data\\downloaded.json'):
setDownloaded()
else:
fileManager.createJsonFile([],'downloaded.json')
#-----下载事务-----
#从下载记录中导入已下载的文件清单
def setDownloaded():
d.Downloaded=fileManager.readDownloaded()
#从全局变量中上传到下载记录文件
def writeToDownFile():
fileManager.updataDownloaded(d.Downloaded)
#添加已下载清单
def addDownloadedList(input):
d.Downloaded.append(input)
writeToDownFile()
#检查一个动漫id是否已经下载完成
def isDownloaded(input):
if input in d.Downloaded:
return True
else: return False
#检查一个动漫是否在下载列表里
def isInDownloadList(input):
for item in mpica.dolwnloadList:
print("id信息:"+item['_id'])
if input==item['_id']:
return True
return False
#获取现在正在下载的漫画id
def getdowning():
return d.Downloading
#-----页码交互-----
#设置窗口中的页码部分
def setPage(nowp,allp):
d.nowPage=nowp
d.AllPage=allp
page.set("第%d页,共%d页"%(nowp,allp))
#获取当前的页码数
def getNowPage():
return d.nowPage
#获取收藏夹的总页码数
def getAllPage():
return d.AllPage
#更改当前页码数
def setNowPage(nowp):
d.nowPage=nowp
page.set("第%d页,共%d页"%(nowp,d.AllPage))
#-----错误处理-----
def checkError(input):
if input==-1:
printl("----------------\n连接超时!正在尝试重新登录...")
reLogin()
return False
elif input==-2:
printl("----------------\n连接错误!请检查你的网络,是否能连接到哔咔服务器")
printl("建议使用VPN或者在设置中配置代理")
return False
elif input==-3:
printl("----------------\n代理错误!请检查设置中的代理设置。如不需要代理,请保持空值")
return False
elif input==-4:
print("-----------------\n发生未知错误!尚没有适配的错误处理")
return False
elif input==-5:
print("-----------------\n多次重连失败,超过重连次数。请检查网络或更改重连次数")
return False
else: return True
#重新登录
def reLogin():
fileManager.removeToken()
mpica.loginByWeb()
#-----事件方法-----
#打开下载文件夹
def openfolder():
fileManager.openFile(".\\comic")
#打开设置窗口
def openMenu():
if setboxState==0:
setbox.setbox(root,mself)
#获取index页的漫画列表
def huoqu(index=0):
if threadaState==1:
printl('请等待页面加载完成...')
else:
if index!=0:
setNowPage(index)
thread1=thread.myThread(tree,mpica,mself)
thread1.start()
#下一页
def nextPage():
tem=getNowPage()
if(tem<getAllPage()):
huoqu(tem+1)
#上一页
def previousPage():
tem=getNowPage()
if(tem>1):
huoqu(tem-1)
#打开关于窗口
def openAbout():
if aboutState==0:
aboutme.about(root,mself)
#启动下载线程
def download():
global downloadThred
thread1=thread.downThread(mpica,mself)
thread1.start()
downloadThred=thread1
#暂停下载
def PauseDownload():
global isStartDownload
if isStartDownload == 1:
isStartDownload=0
printl("暂停下载中,等待当前图片加载完成")
DownloadStateList[0].pack_forget()
DownloadStateList[1].pack(side='right')
refreshStatus(False)
#继续下载
def startDownload():
global isStartDownload
if isStartDownload == 0:
isStartDownload=1
printl('下载继续')
DownloadStateList[1].pack_forget()
DownloadStateList[0].pack(side='right')
refreshStatus(True)
#初始化下载
def fristStartDownload():
DownloadStateList[0].pack(side='right')
refreshStatus(True)
#下载完成
def finishDownload():
DownloadStateList[0].pack_forget()
refreshStatus(False)
def refreshStatus(status):
tmp=len(mpica.dolwnloadList)
if status == True:
DownloadStateList[2].set('下载中 有%d个漫画等待下载'%tmp)
else:
if tmp!=0:
DownloadStateList[2].set('暂停中 有%d个漫画等待下载'%tmp)
else:
DownloadStateList[2].set('闲置中')
#下载此页
def downloadPage():
mpica.putNowPagePicToList()
#取消下载选中
def cancelSelected():
refreshCancer()
mpica.cancelSectctInList(tree.getSelected())
refreshStatus(True if isStartDownload==1 else False)
tree.cancelAll()
refresh()
#下载选中
def downloadSelected():
refresh()
mpica.putSelectPicToList(tree.getSelected())
refreshStatus(True if isStartDownload==1 else False)
tree.cancelAll()
refresh()
#刷新列表下载状态
def refresh():
global downloadingList
for item in tree.getTree().get_children():
tem=tree.getTree().set(item,'id')
if tem==getdowning():
downloadingList=item
elif isDownloaded(tem):
tree.getTree().set(item,'状态','已下载')
elif isInDownloadList(tem):
tree.getTree().set(item,'状态','等待下载')
else:
tree.getTree().set(item,'状态','未下载')
#刷新获取信息提示
def refreshBefore():
tree.getTree().set(downloadingList,'状态','获取信息中')
#刷新取消中提示
def refreshCancer():
tree.getTree().set(downloadingList,'状态','取消中')
#刷新下载中的百分比
def refreshRate(rate):
tree.getTree().set(downloadingList,'状态','下载'+str(rate)+'%')
def close():
downloadThred.stop()
root.destroy()