update pixiv

This commit is contained in:
SiHuan 2020-08-02 23:44:45 +08:00
parent 21ac9da11b
commit 484bec7334
2 changed files with 5 additions and 2 deletions

View file

@ -4,6 +4,7 @@ from subprocess import getoutput,call
class Ans(StdAns): class Ans(StdAns):
AllowGroup = [959613860, 125733077, 204097403, 1140391080] AllowGroup = [959613860, 125733077, 204097403, 1140391080]
AllowUser = [1318000868]
def GETMSG(self): def GETMSG(self):
if len(self.parms) < 2: if len(self.parms) < 2:
return '不加参数是坏文明!' return '不加参数是坏文明!'

View file

@ -22,8 +22,7 @@ class Ans(StdAns):
return msg return msg
else: else:
keyword = self.raw_msg['message'][7:] keyword = self.parms[1]
if mysakuya(self, keyword) == False: if mysakuya(self, keyword) == False:
return "不许你们看咲夜的涩图!!" return "不许你们看咲夜的涩图!!"
@ -32,6 +31,9 @@ class Ans(StdAns):
resp = requests.get(url=url,params=params).json() resp = requests.get(url=url,params=params).json()
picurl = resp['data'][0]['url'] picurl = resp['data'][0]['url']
msg = '[CQ:at,qq=' + str(self.uid) + ']' + '咱帮你🔍 ' + keyword + ' 找到了这个\n' + picurl msg = '[CQ:at,qq=' + str(self.uid) + ']' + '咱帮你🔍 ' + keyword + ' 找到了这个\n' + picurl
if len(self.parms) > 2 and self.parms[2] == 'p' :
msg = '[CQ:image,file=' + picurl + ']'
# .replace('https://i.pixiv.cat', 'https://pximg.sihuan.workers.dev') # .replace('https://i.pixiv.cat', 'https://pximg.sihuan.workers.dev')
# msg = picurl.replace('https://i.pixiv.cat', 'https://original.img.cheerfun.dev') # msg = picurl.replace('https://i.pixiv.cat', 'https://original.img.cheerfun.dev')
except Exception as e: except Exception as e: