mirror of
				https://github.com/nonebot/nonebot2.git
				synced 2025-11-04 00:46:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			316 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			316 lines
		
	
	
		
			11 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
import re
 | 
						|
from typing import Set, List, Type, Tuple, Union, Optional
 | 
						|
 | 
						|
from nonebot.matcher import Matcher
 | 
						|
from nonebot.permission import Permission
 | 
						|
from nonebot.dependencies import Dependent
 | 
						|
from nonebot.rule import Rule, ArgumentParser
 | 
						|
from nonebot.typing import T_State, T_Handler, T_RuleChecker, T_PermissionChecker
 | 
						|
 | 
						|
def on(
 | 
						|
    type: str = "",
 | 
						|
    rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
    permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
    *,
 | 
						|
    handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
    temp: bool = ...,
 | 
						|
    priority: int = ...,
 | 
						|
    block: bool = ...,
 | 
						|
    state: Optional[T_State] = ...,
 | 
						|
) -> Type[Matcher]: ...
 | 
						|
def on_metaevent(
 | 
						|
    rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
    *,
 | 
						|
    handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
    temp: bool = ...,
 | 
						|
    priority: int = ...,
 | 
						|
    block: bool = ...,
 | 
						|
    state: Optional[T_State] = ...,
 | 
						|
) -> Type[Matcher]: ...
 | 
						|
def on_message(
 | 
						|
    rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
    permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
    *,
 | 
						|
    handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
    temp: bool = ...,
 | 
						|
    priority: int = ...,
 | 
						|
    block: bool = ...,
 | 
						|
    state: Optional[T_State] = ...,
 | 
						|
) -> Type[Matcher]: ...
 | 
						|
def on_notice(
 | 
						|
    rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
    *,
 | 
						|
    handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
    temp: bool = ...,
 | 
						|
    priority: int = ...,
 | 
						|
    block: bool = ...,
 | 
						|
    state: Optional[T_State] = ...,
 | 
						|
) -> Type[Matcher]: ...
 | 
						|
def on_request(
 | 
						|
    rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
    *,
 | 
						|
    handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
    temp: bool = ...,
 | 
						|
    priority: int = ...,
 | 
						|
    block: bool = ...,
 | 
						|
    state: Optional[T_State] = ...,
 | 
						|
) -> Type[Matcher]: ...
 | 
						|
def on_startswith(
 | 
						|
    msg: Union[str, Tuple[str, ...]],
 | 
						|
    rule: Optional[Optional[Union[Rule, T_RuleChecker]]] = ...,
 | 
						|
    ignorecase: bool = ...,
 | 
						|
    *,
 | 
						|
    permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
    handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
    temp: bool = ...,
 | 
						|
    priority: int = ...,
 | 
						|
    block: bool = ...,
 | 
						|
    state: Optional[T_State] = ...,
 | 
						|
) -> Type[Matcher]: ...
 | 
						|
def on_endswith(
 | 
						|
    msg: Union[str, Tuple[str, ...]],
 | 
						|
    rule: Optional[Optional[Union[Rule, T_RuleChecker]]] = ...,
 | 
						|
    ignorecase: bool = ...,
 | 
						|
    *,
 | 
						|
    permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
    handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
    temp: bool = ...,
 | 
						|
    priority: int = ...,
 | 
						|
    block: bool = ...,
 | 
						|
    state: Optional[T_State] = ...,
 | 
						|
) -> Type[Matcher]: ...
 | 
						|
def on_keyword(
 | 
						|
    keywords: Set[str],
 | 
						|
    rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
    *,
 | 
						|
    permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
    handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
    temp: bool = ...,
 | 
						|
    priority: int = ...,
 | 
						|
    block: bool = ...,
 | 
						|
    state: Optional[T_State] = ...,
 | 
						|
) -> Type[Matcher]: ...
 | 
						|
def on_command(
 | 
						|
    cmd: Union[str, Tuple[str, ...]],
 | 
						|
    rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
    aliases: Optional[Set[Union[str, Tuple[str, ...]]]] = ...,
 | 
						|
    *,
 | 
						|
    permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
    handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
    temp: bool = ...,
 | 
						|
    priority: int = ...,
 | 
						|
    block: bool = ...,
 | 
						|
    state: Optional[T_State] = ...,
 | 
						|
) -> Type[Matcher]: ...
 | 
						|
def on_shell_command(
 | 
						|
    cmd: Union[str, Tuple[str, ...]],
 | 
						|
    rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
    aliases: Optional[Set[Union[str, Tuple[str, ...]]]] = ...,
 | 
						|
    parser: Optional[ArgumentParser] = ...,
 | 
						|
    *,
 | 
						|
    permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
    handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
    temp: bool = ...,
 | 
						|
    priority: int = ...,
 | 
						|
    block: bool = ...,
 | 
						|
    state: Optional[T_State] = ...,
 | 
						|
) -> Type[Matcher]: ...
 | 
						|
def on_regex(
 | 
						|
    pattern: str,
 | 
						|
    flags: Union[int, re.RegexFlag] = ...,
 | 
						|
    rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
    *,
 | 
						|
    permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
    handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
    temp: bool = ...,
 | 
						|
    priority: int = ...,
 | 
						|
    block: bool = ...,
 | 
						|
    state: Optional[T_State] = ...,
 | 
						|
) -> Type[Matcher]: ...
 | 
						|
 | 
						|
class CommandGroup:
 | 
						|
    def __init__(
 | 
						|
        self,
 | 
						|
        cmd: Union[str, Tuple[str, ...]],
 | 
						|
        *,
 | 
						|
        rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
        permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
        handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
        temp: bool = ...,
 | 
						|
        priority: int = ...,
 | 
						|
        block: bool = ...,
 | 
						|
        state: Optional[T_State] = ...,
 | 
						|
    ): ...
 | 
						|
    def command(
 | 
						|
        self,
 | 
						|
        cmd: Union[str, Tuple[str, ...]],
 | 
						|
        *,
 | 
						|
        aliases: Optional[Set[Union[str, Tuple[str, ...]]]],
 | 
						|
        rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
        permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
        handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
        temp: bool = ...,
 | 
						|
        priority: int = ...,
 | 
						|
        block: bool = ...,
 | 
						|
        state: Optional[T_State] = ...,
 | 
						|
    ) -> Type[Matcher]: ...
 | 
						|
    def shell_command(
 | 
						|
        self,
 | 
						|
        cmd: Union[str, Tuple[str, ...]],
 | 
						|
        *,
 | 
						|
        rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
        aliases: Optional[Set[Union[str, Tuple[str, ...]]]],
 | 
						|
        parser: Optional[ArgumentParser] = ...,
 | 
						|
        permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
        handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
        temp: bool = ...,
 | 
						|
        priority: int = ...,
 | 
						|
        block: bool = ...,
 | 
						|
        state: Optional[T_State] = ...,
 | 
						|
    ) -> Type[Matcher]: ...
 | 
						|
 | 
						|
class MatcherGroup:
 | 
						|
    def __init__(
 | 
						|
        self,
 | 
						|
        *,
 | 
						|
        type: str = ...,
 | 
						|
        rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
        permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
        handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
        temp: bool = ...,
 | 
						|
        priority: int = ...,
 | 
						|
        block: bool = ...,
 | 
						|
        state: Optional[T_State] = ...,
 | 
						|
    ): ...
 | 
						|
    def on(
 | 
						|
        self,
 | 
						|
        *,
 | 
						|
        type: str = ...,
 | 
						|
        rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
        permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
        handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
        temp: bool = ...,
 | 
						|
        priority: int = ...,
 | 
						|
        block: bool = ...,
 | 
						|
        state: Optional[T_State] = ...,
 | 
						|
    ) -> Type[Matcher]: ...
 | 
						|
    def on_metaevent(
 | 
						|
        self,
 | 
						|
        *,
 | 
						|
        rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
        handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
        temp: bool = ...,
 | 
						|
        priority: int = ...,
 | 
						|
        block: bool = ...,
 | 
						|
        state: Optional[T_State] = ...,
 | 
						|
    ) -> Type[Matcher]: ...
 | 
						|
    def on_message(
 | 
						|
        self,
 | 
						|
        *,
 | 
						|
        rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
        permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
        handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
        temp: bool = ...,
 | 
						|
        priority: int = ...,
 | 
						|
        block: bool = ...,
 | 
						|
        state: Optional[T_State] = ...,
 | 
						|
    ) -> Type[Matcher]: ...
 | 
						|
    def on_notice(
 | 
						|
        self,
 | 
						|
        *,
 | 
						|
        rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
        handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
        temp: bool = ...,
 | 
						|
        priority: int = ...,
 | 
						|
        block: bool = ...,
 | 
						|
        state: Optional[T_State] = ...,
 | 
						|
    ) -> Type[Matcher]: ...
 | 
						|
    def on_request(
 | 
						|
        self,
 | 
						|
        *,
 | 
						|
        rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
        handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
        temp: bool = ...,
 | 
						|
        priority: int = ...,
 | 
						|
        block: bool = ...,
 | 
						|
        state: Optional[T_State] = ...,
 | 
						|
    ) -> Type[Matcher]: ...
 | 
						|
    def on_startswith(
 | 
						|
        self,
 | 
						|
        msg: Union[str, Tuple[str, ...]],
 | 
						|
        *,
 | 
						|
        ignorecase: bool = ...,
 | 
						|
        rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
        permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
        handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
        temp: bool = ...,
 | 
						|
        priority: int = ...,
 | 
						|
        block: bool = ...,
 | 
						|
        state: Optional[T_State] = ...,
 | 
						|
    ) -> Type[Matcher]: ...
 | 
						|
    def on_endswith(
 | 
						|
        self,
 | 
						|
        msg: Union[str, Tuple[str, ...]],
 | 
						|
        *,
 | 
						|
        ignorecase: bool = ...,
 | 
						|
        rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
        permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
        handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
        temp: bool = ...,
 | 
						|
        priority: int = ...,
 | 
						|
        block: bool = ...,
 | 
						|
        state: Optional[T_State] = ...,
 | 
						|
    ) -> Type[Matcher]: ...
 | 
						|
    def on_keyword(
 | 
						|
        self,
 | 
						|
        keywords: Set[str],
 | 
						|
        *,
 | 
						|
        rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
        permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
        handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
        temp: bool = ...,
 | 
						|
        priority: int = ...,
 | 
						|
        block: bool = ...,
 | 
						|
        state: Optional[T_State] = ...,
 | 
						|
    ) -> Type[Matcher]: ...
 | 
						|
    def on_command(
 | 
						|
        self,
 | 
						|
        cmd: Union[str, Tuple[str, ...]],
 | 
						|
        aliases: Optional[Set[Union[str, Tuple[str, ...]]]] = ...,
 | 
						|
        *,
 | 
						|
        rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
        permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
        handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
        temp: bool = ...,
 | 
						|
        priority: int = ...,
 | 
						|
        block: bool = ...,
 | 
						|
        state: Optional[T_State] = ...,
 | 
						|
    ) -> Type[Matcher]: ...
 | 
						|
    def on_shell_command(
 | 
						|
        self,
 | 
						|
        cmd: Union[str, Tuple[str, ...]],
 | 
						|
        aliases: Optional[Set[Union[str, Tuple[str, ...]]]] = ...,
 | 
						|
        parser: Optional[ArgumentParser] = ...,
 | 
						|
        *,
 | 
						|
        rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
        permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
        handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
        temp: bool = ...,
 | 
						|
        priority: int = ...,
 | 
						|
        block: bool = ...,
 | 
						|
        state: Optional[T_State] = ...,
 | 
						|
    ) -> Type[Matcher]: ...
 | 
						|
    def on_regex(
 | 
						|
        self,
 | 
						|
        pattern: str,
 | 
						|
        flags: Union[int, re.RegexFlag] = ...,
 | 
						|
        *,
 | 
						|
        rule: Optional[Union[Rule, T_RuleChecker]] = ...,
 | 
						|
        permission: Optional[Union[Permission, T_PermissionChecker]] = ...,
 | 
						|
        handlers: Optional[List[Union[T_Handler, Dependent]]] = ...,
 | 
						|
        temp: bool = ...,
 | 
						|
        priority: int = ...,
 | 
						|
        block: bool = ...,
 | 
						|
        state: Optional[T_State] = ...,
 | 
						|
    ) -> Type[Matcher]: ...
 |