summaryrefslogtreecommitdiff
path: root/ATRI/service/httppost.py
blob: 75aff8fd870a8b4fa5b7a010dfcccd4057810558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
'''
获取更多帮助 >> https://github.com/howmanybots/onebot/blob/master/v11/specs/api/public.md
'''
import json
from typing import (
    Optional,
    Union,
    Dict,
    Any
)

from ATRI.log import logger
from ATRI.config import config
from ATRI.utils.request import post_bytes


URL = (
    f"http://{config['HttpPost']['host']}:"
    f"{config['HttpPost']['port']}/"
)


class HttpPost:

    @classmethod
    async def send_private_msg(cls,
                               user_id: int,
                               message: str,
                               auto_escape: bool = False): # -> Dict[str, Any]
        url = URL + "send_private_msg?"
        params = {
            "user_id": user_id,
            "message": message,
            "auto_escape": f"{auto_escape}"
        }
        result = json.loads(await post_bytes(url, params))
        logger.debug(result)
        return result

    @classmethod
    def send_group_msg(cls,
                       group_id: int,
                       message: Union[str],
                       auto_escape: Optional[bool] = ...) -> Dict[str, Any]:
        ...

    @classmethod
    def send_msg(cls,
                 message_type: Optional[str] = ...,
                 user_id: Optional[int] = ...,
                 group_id: Optional[int] = ...,
                 message = Union[str],
                 auto_escape: bool = ...) -> Dict[str, Any]:
        ...

    @classmethod
    def delete_msg(cls,
                   message_id: int):
        ...

    @classmethod
    def get_msg(cls,
                message_id: int) -> Dict[str, Any]:
        ...

    @classmethod
    def get_forward_msg(cls,
                        id: int):
        ...

    @classmethod
    def send_like(cls,
                  user_id: int,
                  times: int = ...):
        ...

    @classmethod
    def set_group_kick(cls,
                       group_id: int,
                       user_id: int,
                       reject_add_request: bool = ...):
        ...

    @classmethod
    def set_group_ban(cls,
                      group_id: int,
                      user_id: int,
                      duration: int = ...):
        ...

    @classmethod
    def set_group_anonymous_ban(cls,
                                group_id: int,
                                anonymous: Optional[Dict[str, Any]] = ...,
                                flag: Optional[str] = ...,
                                duration: int = ...):
        ...

    @classmethod
    def set_group_whole_ban(cls,
                            group_id: int,
                            enable: bool = ...):
        ...

    @classmethod
    def set_group_admin(cls,
                        group_id: int,
                        user_id: int,
                        enable: bool = ...):
        ...

    @classmethod
    def set_group_anonymous(cls,
                            group_id: int,
                            enable: bool = ...):
        ...
    
    @classmethod
    def set_group_card(cls):
        ...

    @classmethod
    def set_group_name(cls):
        ...
    
    @classmethod
    def set_group_leave(cls):
        ...
    
    @classmethod
    def set_group_special_title(cls):
        ...
    
    @classmethod
    def set_friend_add_request(cls):
        ...
    
    @classmethod
    def set_group_add_request(cls):
        ...

    @classmethod
    def get_login_info(cls):
        ...
    
    @classmethod
    def get_stranger_info(cls):
        ...
    
    @classmethod
    def get_friend_list(cls):
        ...
    
    @classmethod
    def get_group_info(cls):
        ...
    
    @classmethod
    def get_group_list(cls):
        ...
    
    @classmethod
    def get_group_member_info(cls):
        ...
    
    @classmethod
    def get_group_member_list(cls):
        ...

    @classmethod
    def get_group_honor_info(cls):
        ...
    
    @classmethod
    def get_cookies(cls):
        ...
    
    @classmethod
    def get_csrf_token(cls):
        ...
    
    @classmethod
    def get_credentials(cls):
        ...
    
    @classmethod
    def get_record(cls):
        ...
    
    @classmethod
    def get_image(cls):
        ...
    
    @classmethod
    def can_send_image(cls):
        ...
    
    @classmethod
    def can_send_record(cls):
        ...
    
    @classmethod
    def get_status(cls):
        ...
    
    @classmethod
    def get_version_info(cls):
        ...
    
    @classmethod
    def set_restart(cls):
        ...
    
    @classmethod
    def clean_cache(cls):
        ...