Merge pull request #168 from Admirepowered/master
fix mod switching & add log set
This commit is contained in:
commit
2eaffeab6e
@ -112,8 +112,8 @@ docker-compose logs -f
|
|||||||
>mod x: mod 1为单用户模式 mod 2为多用户模式
|
>mod x: mod 1为单用户模式 mod 2为多用户模式
|
||||||
>add 'yourcookie': 直接 add cookie 添加Cookie,根据提示输入用户存档名称
|
>add 'yourcookie': 直接 add cookie 添加Cookie,根据提示输入用户存档名称
|
||||||
>time x: 设置任务巡查时间,默认720分钟(12小时)
|
>time x: 设置任务巡查时间,默认720分钟(12小时)
|
||||||
|
>set user enable true(设置user.json 的enable属性为true)
|
||||||
set user enable true(设置user.json 的enable属性为true)
|
>show true/false: 开启/关闭20秒的倒计时提示
|
||||||
|
|
||||||
## 使用云函数运行
|
## 使用云函数运行
|
||||||
|
|
||||||
@ -184,4 +184,4 @@ crontab: [github](https://github.com/josiahcarlson/parse-crontab) [pypi](https:/
|
|||||||
|
|
||||||
## 鸣谢
|
## 鸣谢
|
||||||
|
|
||||||
[JetBrains](https://jb.gg/OpenSource)
|
[JetBrains](https://jb.gg/OpenSource)
|
40
server.py
40
server.py
@ -10,7 +10,7 @@ time_interval=720 #默认签到间隔时间,单位minute(分钟)
|
|||||||
mod=1 #单用户模式/自动判断
|
mod=1 #单用户模式/自动判断
|
||||||
def runingtime():
|
def runingtime():
|
||||||
return int(time.time())
|
return int(time.time())
|
||||||
def control(time_interval,mod,event):
|
def control(time_interval,mod,event,detal):
|
||||||
last_time=runingtime()
|
last_time=runingtime()
|
||||||
while True:
|
while True:
|
||||||
now_time=runingtime()
|
now_time=runingtime()
|
||||||
@ -30,12 +30,17 @@ def control(time_interval,mod,event):
|
|||||||
if event.is_set():
|
if event.is_set():
|
||||||
log.info("Stoping threading")
|
log.info("Stoping threading")
|
||||||
break
|
break
|
||||||
log.info("The Next check time is {}s".format(last_time-now_time+time_interval*60))
|
if(detal.is_set()):
|
||||||
|
log.info("The Next check time is {}s".format(last_time-now_time+time_interval*60))
|
||||||
time.sleep(20)
|
time.sleep(20)
|
||||||
def command():
|
def command(detal):
|
||||||
global mod
|
global mod
|
||||||
global time_interval
|
global time_interval
|
||||||
help="command windows\nstop:stop server\nreload:reload config and refish tiem\nsingle:test single config\nmulit:test mulit conifg\nmod x:x is refer single or multi 1 is single 2 is multi\nadd 'yourcookie'\nset user attribute value: such set username(*.json) enable(attribute) Ture(value)\ntime x:set interval time (minute)"
|
global show
|
||||||
|
show=False #显示倒计时信息
|
||||||
|
if show:
|
||||||
|
detal.set()
|
||||||
|
help="command windows\nstop:stop server\nreload:reload config and refish tiem\nsingle:test single config\nmulit:test mulit conifg\nmod x:x is refer single or multi 1 is single 2 is multi\nadd 'yourcookie'\nset user attribute value: such set username(*.json) enable(attribute) Ture(value)\ntime x:set interval time (minute)\nshow true/false:show the time count"
|
||||||
log.info(help)
|
log.info(help)
|
||||||
while True:
|
while True:
|
||||||
command=input()
|
command=input()
|
||||||
@ -71,12 +76,28 @@ def command():
|
|||||||
return True
|
return True
|
||||||
if command[i]=="mod":
|
if command[i]=="mod":
|
||||||
if len(command)==2:
|
if len(command)==2:
|
||||||
|
mod_new=int(command[1])
|
||||||
if mod >2 or mod <0:
|
if mod_new >2 or mod_new <1:
|
||||||
log.info("error mod")
|
log.info("error mod")
|
||||||
else:
|
else:
|
||||||
mod=int(command[1])
|
mod=mod_new
|
||||||
log.info("switching mod to {}".format(mod))
|
log.info("switching mod to {}".format(mod))
|
||||||
|
else:
|
||||||
|
log.info("Error Command")
|
||||||
|
if command[i]=="show":
|
||||||
|
if len(command)==2:
|
||||||
|
|
||||||
|
if command[1]=="true":
|
||||||
|
show=True
|
||||||
|
detal.set()
|
||||||
|
log.info("switching to detail mod")
|
||||||
|
|
||||||
|
if command[1]=="false":
|
||||||
|
detal.unset()
|
||||||
|
show=False
|
||||||
|
log.info("switching to slient mod")
|
||||||
|
|
||||||
|
|
||||||
else:
|
else:
|
||||||
log.info("Error Command")
|
log.info("Error Command")
|
||||||
if command[i]=="add":
|
if command[i]=="add":
|
||||||
@ -156,10 +177,11 @@ if __name__=='__main__':
|
|||||||
while True:
|
while True:
|
||||||
log.info("switching to mod {}".format(mod))
|
log.info("switching to mod {}".format(mod))
|
||||||
t1_stop = threading.Event()
|
t1_stop = threading.Event()
|
||||||
thread1 = threading.Thread(name='time_check',target= control,args=(time_interval,mod,t1_stop))
|
detal = threading.Event()
|
||||||
|
thread1 = threading.Thread(name='time_check',target= control,args=(time_interval,mod,t1_stop,detal))
|
||||||
thread1.start()
|
thread1.start()
|
||||||
try:
|
try:
|
||||||
if command():
|
if command(detal):
|
||||||
t1_stop.set()
|
t1_stop.set()
|
||||||
continue
|
continue
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user