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/core/parser/command.py

82 lines
2.7 KiB
Python
Raw Normal View History

2021-07-19 16:12:29 +00:00
import re
2021-07-18 16:17:09 +00:00
import shlex
2021-09-10 18:05:27 +00:00
from typing import Union
2021-08-07 07:56:48 +00:00
2021-07-19 16:12:29 +00:00
from core.docopt import docopt, DocoptExit
2021-10-14 14:49:12 +00:00
from core.elements import Command, Option, Schedule, StartUp, RegexCommand
2021-07-19 16:12:29 +00:00
class InvalidHelpDocTypeError(BaseException):
def __init__(self, *args, **kwargs):
pass
2021-07-18 16:17:09 +00:00
2021-07-19 05:34:29 +00:00
class InvalidCommandFormatError(BaseException):
2021-07-18 16:17:09 +00:00
def __init__(self, *args, **kwargs):
pass
class CommandParser:
2021-10-14 14:49:12 +00:00
def __init__(self, args: Union[str, list, tuple, Command, Option, Schedule, StartUp, RegexCommand]):
2021-07-19 16:12:29 +00:00
"""
Format: https://github.com/jazzband/docopt-ng#usage-pattern-format
* {} - Detail help information
"""
2021-09-10 18:05:27 +00:00
self.desc = False
2021-10-14 14:49:12 +00:00
if isinstance(args, Command):
2021-09-10 18:05:27 +00:00
if args.help_doc is not None:
args = args.help_doc
2021-10-14 14:49:12 +00:00
if args.desc is not None:
args = args.desc
self.desc = True
if isinstance(args, (Option, Schedule, StartUp, RegexCommand)):
if args.desc is not None:
2021-09-10 18:05:27 +00:00
args = args.desc
self.desc = True
2021-07-19 05:34:29 +00:00
if isinstance(args, str):
2021-07-19 16:12:29 +00:00
args = [args]
if isinstance(args, (list, tuple)):
arglst = []
for x in args:
match_detail_help = re.match('(.*){.*}$', x)
if match_detail_help:
x = match_detail_help.group(1)
arglst.append(x)
2021-08-07 03:59:58 +00:00
self.args = 'Usage:\n ' + '\n '.join(y for y in arglst)
2021-07-19 05:34:29 +00:00
else:
2021-07-19 16:12:29 +00:00
raise InvalidHelpDocTypeError
2021-10-14 15:21:31 +00:00
self.args_raw = args
2021-07-19 16:12:29 +00:00
2021-07-26 12:43:51 +00:00
def return_formatted_help_doc(self) -> str:
2021-07-19 16:12:29 +00:00
args_raw = self.args_raw
2021-09-10 18:05:27 +00:00
if self.desc:
return args_raw
2021-07-19 16:12:29 +00:00
if isinstance(args_raw, str):
args_raw = [args_raw]
if isinstance(args_raw, (list, tuple)):
arglst = []
for x in args_raw:
match_detail_help = re.match('(.*){(.*)}$', x)
if match_detail_help:
x = f'{match_detail_help.group(1)} - {match_detail_help.group(2)}'
arglst.append(x)
args = f'用法:\n ' + '\n '.join(y for y in arglst)
else:
raise InvalidHelpDocTypeError
return args
2021-07-18 16:17:09 +00:00
def parse(self, command):
2021-09-10 18:05:27 +00:00
if self.desc:
return None
2021-07-26 13:28:38 +00:00
command = re.sub('', '"', re.sub('', '"', command))
2021-09-04 13:27:23 +00:00
try:
split_command = shlex.split(command)
except ValueError:
split_command = command.split(' ')
2021-07-19 16:12:29 +00:00
if len(split_command) == 1:
return None
try:
return docopt(self.args, argvs=split_command[1:], default_help=False)
except DocoptExit:
raise InvalidCommandFormatError