将图片设置为闪照!
This commit is contained in:
parent
73d3f3fe94
commit
afaa5a2ba1
1 changed files with 18 additions and 58 deletions
|
@ -5,77 +5,37 @@ from config import LOLIKEYS
|
||||||
|
|
||||||
|
|
||||||
class Ans(StdAns):
|
class Ans(StdAns):
|
||||||
AllowGroup = [874769998,596678277,794290657,204097403]
|
AllowGroup = [874769998, 596678277, 794290657, 204097403]
|
||||||
|
|
||||||
def GETMSG(self):
|
def GETMSG(self):
|
||||||
|
if len(self.parms) == 1:
|
||||||
keys = LOLIKEYS
|
code, picurl = getsetu()
|
||||||
|
|
||||||
try:
|
|
||||||
nowkey = int(self.DATAGET()['nowkey'])
|
|
||||||
except:
|
|
||||||
nowkey = 0
|
|
||||||
|
|
||||||
if len(self.parms) < 2:
|
|
||||||
keyword = ''
|
|
||||||
else:
|
else:
|
||||||
keyword = self.parms[1]
|
keyword = self.parms[1]
|
||||||
if mysakuya(self, keyword) == False:
|
if mysakuya(self, keyword) == False:
|
||||||
return "不许你们看咲夜的涩图!!"
|
return "不许你们看咲夜的涩图!!"
|
||||||
|
code, picurl = getsetu(keyword)
|
||||||
code, quota, picurl = getsetu(keys[nowkey], keyword)
|
if code == 0:
|
||||||
|
return f'[CQ:reply,id={self.mid}][CQ:image,file={picurl},type=flash]'
|
||||||
msg = ''
|
else:
|
||||||
if code == -1 or code == -2:
|
return f'[CQ:reply,id={self.mid}] 什么东西出错了,code:{code}'
|
||||||
msg += f'>_< 天啦喽,loli 不见了 Code:{code}'
|
|
||||||
elif code == 3:
|
|
||||||
msg += '咱没查到,也有可能是Pixiv坏掉惹'
|
|
||||||
elif code == 0:
|
|
||||||
if len(self.parms) < 2 or (len(self.parms) > 2 and self.parms[2] == 'p'):
|
|
||||||
msg += f'[CQ:image,file={picurl}]'
|
|
||||||
else:
|
|
||||||
msg += f'[CQ:reply,id={self.mid}]咱帮你🔍{keyword}找到了这个\n{picurl}'
|
|
||||||
|
|
||||||
if quota == 0:
|
|
||||||
nowkey = (nowkey+1) % (len(keys))
|
|
||||||
if code == 429:
|
|
||||||
msg += f'>_< 已经没有 loli 啦,帮你换到了key{nowkey},再试一下吧'
|
|
||||||
else:
|
|
||||||
msg += f'额度用光了,下次将使用 key{nowkey}'
|
|
||||||
self.DATASET({'nowkey': nowkey})
|
|
||||||
return msg
|
|
||||||
|
|
||||||
|
|
||||||
def getsetu(apikey, keyword=''):
|
def getsetu(keyword=''):
|
||||||
url = 'https://api.lolicon.app/setu/'
|
url = 'https://api.lolicon.app/setu/'
|
||||||
params = {
|
params = {
|
||||||
'apikey': apikey,
|
'apikey': LOLIKEYS,
|
||||||
'r18': 0,
|
'keyword': keyword,
|
||||||
|
'r18': 0
|
||||||
}
|
}
|
||||||
if keyword != '':
|
|
||||||
params['keyword'] = keyword
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
resp = requests.get(url=url, params=params).json()
|
resp = requests.get(url=url, params=params, timeout=5).json()
|
||||||
except:
|
except:
|
||||||
return -1, -1, ''
|
return 500, ''
|
||||||
|
|
||||||
#quota = str(resp['quota'])
|
picurl = ''
|
||||||
#seconds = resp['quota_min_ttl']
|
|
||||||
#m, s = divmod(seconds, 60)
|
|
||||||
#h, m = divmod(m, 60)
|
|
||||||
#quota_min_ttl = f'{h}时{m}分{s}秒'
|
|
||||||
if resp['code'] == 0:
|
if resp['code'] == 0:
|
||||||
quota = resp['count']
|
picurl = "https://r.zjuyk.site/" + resp['data'][0]['url']
|
||||||
try:
|
|
||||||
picurl = resp['data'][0]['url']
|
return resp['code'], picurl
|
||||||
code = 0
|
|
||||||
except:
|
|
||||||
picurl = ''
|
|
||||||
code = -3
|
|
||||||
return code, quota, picurl
|
|
||||||
elif resp['code'] == 429:
|
|
||||||
return 429, 0, ''
|
|
||||||
else:
|
|
||||||
# print(resp['code'])
|
|
||||||
return -2, -1, ''
|
|
||||||
|
|
Loading…
Reference in a new issue