Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/CommandGen.py
2020-08-15 14:35:23 +08:00

121 lines
4.1 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import re
import string
from ab import ab
from blacklist import blacklist
from bug import bugtracker
from checkuser import checkuser
from help import help
from mcv import mcv, mcbv, mcdv
from newbie import new
from ping import ping
from rc import rc
from server import ser
from user import Username
from userp import Userp
from wiki import wiki, im, imt, imarc
def findcommand(str1, group=0):
print(group)
str1 = re.sub(r'^', '~', str1)
try:
q = re.match(r'^.*(: ~)(.*)', str1)
return q.group(2)
except Exception:
try:
q = re.match(r'^~(.*)', str1)
return q.group(1)
except Exception:
try:
q = re.match(r'^!(.*\-.*)', str1)
q = str.upper(q.group(1))
return ('bug ' + q)
except Exception:
pass
async def command(text, group=0):
try:
result = findcommand(text, group)
c = result
try:
d = result.split(' ')
d = d[0]
except:
d = c
if d == 'echo':
echo = re.sub(r'^echo ', '', c)
return (echo)
if c == 'help':
return (await help())
elif d == 'paa':
return ('')
elif d == 'mcv':
return (await mcv())
elif d == 'mcbv':
return (await mcbv())
elif d == 'mcdv':
return (await mcdv())
elif d.find('新人') != -1 or d.find('new') != -1:
return (await new())
elif d.find("wiki") != -1 or d.find("Wiki") != -1:
return (await(wiki(c, group)))
elif c.find("bug") != -1 or c.find("MC-") != -1 or c.find("BDS-") != -1 or c.find("MCPE-") != -1 or c.find(
"MCAPI-") != -1 or c.find("MCCE-") != -1 or c.find("MCD-") != -1 or c.find("MCL-") != -1 or c.find(
"REALMS-") != -1 or c.find("MCE-") != -1 or c.find("WEB-") != -1:
return (await bugtracker(c))
elif d == 'server' or d == 'Server':
return (await ser(c))
elif d.find("user") != -1 or d.find("User") != -1:
if c.find("-p") != -1:
f = re.sub(' -p', '', c)
print(f)
try:
z = re.sub(r'^User', 'user', f)
try:
g = re.match(r'^user ~(.*) (.*)', z)
h = g.group(1)
h2 = g.group(2)
h2 = re.sub('_', ' ', h2)
except Exception:
try:
g = re.match(r'^user-(.*?) (.*)', z)
h = 'minecraft-' + g.group(1)
h2 = g.group(2)
h2 = re.sub('_', ' ', h2)
except Exception:
try:
g = re.match(r'^user (.*?):(.*)', z)
h = 'minecraft-' + g.group(1)
h2 = g.group(2)
h2 = re.sub('_', ' ', h2)
except Exception:
try:
g = re.match(r'user (.*)', z)
h = 'minecraft'
h2 = g.group(1)
h2 = re.sub('_', ' ', h2)
except Exception as e:
print(str(e))
if checkuser(h, h2):
h2 = re.sub('User:','',h2)
print(h2)
return (await Userp(h, h2) + "[[usn:" + h2 + "]]")
else:
return ('没有找到此用户。')
except Exception as e:
print(str(e))
else:
return (await Username(c))
elif d == 'rc':
return (await rc())
elif d == 'ab':
return (await ab())
elif d == 'ping':
return (await ping())
else:
pass
except:
pass