跳转至

app

Ariadne 实例

Ariadne 🔗

Ariadne, 一个优雅且协议完备的 Python QQ Bot 框架.

Source code in src/graia/ariadne/app.py
  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
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
class Ariadne:
    """Ariadne, 一个优雅且协议完备的 Python QQ Bot 框架."""

    options: ClassVar[AriadneOptions] = {}
    service: ClassVar[ElizabethService]
    launch_manager: ClassVar[Launart]
    instances: ClassVar[Dict[int, "Ariadne"]] = {}

    account: int
    connection: ConnectionInterface
    default_send_action: SendMessageActionProtocol
    log_config: LogConfig

    @class_property
    def broadcast(cls) -> Broadcast:
        """获取 Ariadne 的事件系统.

        Returns:
            Broadcast: 事件系统
        """
        return cls.service.broadcast

    @class_property
    def default_account(cls) -> int:
        """获取默认账号.

        Returns:
            int: 默认账号
        """
        if "default_account" in Ariadne.options:
            return Ariadne.options["default_account"]
        raise ValueError("No default account configured")

    @classmethod
    def _ensure_config(cls):
        if not hasattr(cls, "service"):
            cls.service = ElizabethService()
        if not hasattr(cls, "launch_manager"):
            cls.launch_manager = Launart()
        if "install_log" not in cls.options:
            sys.excepthook = loguru_exc_callback
            traceback.print_exception = loguru_exc_callback
        cls.service.loop.set_exception_handler(loguru_exc_callback_async)
        cls.options["installed_log"] = True

    @classmethod
    def config(
        cls,
        *,
        launch_manager: Optional[Launart] = None,
        default_account: Optional[int] = None,
        install_log: Union[bool, RichLogInstallOptions] = False,
        inject_bypass_listener: bool = False,
    ) -> None:
        """配置 Ariadne 全局参数, 未提供的值会自动生成合理的默认值

        注:请在实例化 Ariadne 前配置完成

        Args:
            launch_manager (Optional[LaunchManager], optional): 启动管理器
            default_account (Optional[int], optional): 默认账号
            install_log (Union[bool, RichLogInstallOptions], optional): 是否安装 rich 日志, 默认为 False
            inject_bypass_listener (bool, optional): 是否注入透传 Broadcast, 默认为 False
        """

        if launch_manager:
            if getattr(cls, "launch_manager", launch_manager) is not launch_manager:
                raise AriadneConfigurationError("Inconsistent launch manager")
            cls.launch_manager = launch_manager

        if default_account:
            if "default_account" not in cls.options:
                cls.options["default_account"] = default_account
            elif cls.options["default_account"] != default_account:
                raise AriadneConfigurationError("Inconsistent default account")

        if install_log and "installed_log" not in cls.options:
            import richuru

            option = (
                install_log if isinstance(install_log, RichLogInstallOptions) else RichLogInstallOptions()
            )

            richuru.install(**option._asdict())
            traceback.print_exception = option.exc_hook
            cls.options["installed_log"] = True

        if inject_bypass_listener and "inject_bypass_listener" not in cls.options:
            import creart

            from .util import inject_bypass_listener as inject

            inject(creart.it(Broadcast))

    def __init__(
        self,
        connection: Iterable[U_Info] = (),
        log_config: Optional[LogConfig] = None,
    ) -> None:
        """针对单个账号初始化 Ariadne 实例.

        若需全局配置, 请使用 `Ariadne.config()`

        Args:
            connection (Iterable[U_Info]): 连接信息, 通过 `graia.ariadne.connection.config` 生成
            log_config (Optional[LogConfig], optional): 日志配置

        Returns:
            None: 无返回值
        """
        self._ensure_config()
        from .util.send import Strict

        self.default_send_action = Strict
        conns, account = Ariadne.service.add_infos(connection)
        for conn in conns:
            Ariadne.launch_manager.add_launchable(conn)
        if account in Ariadne.instances:
            raise AriadneConfigurationError("You can't configure an account twice!")
        Ariadne.instances[account] = self
        self.account: int = account
        if account not in Ariadne.service.connections:
            raise AriadneConfigurationError(f"{account} is not configured")
        self.connection: ConnectionInterface = Ariadne.service.get_interface(ConnectionInterface).bind(
            account
        )
        self.log_config: LogConfig = log_config or LogConfig()
        self.connection.add_callback(self.log_config.event_hook(self))
        self.connection.add_callback(self._event_hook)

    async def _event_hook(self, event: MiraiEvent):
        with ExitStack() as stack:
            stack.enter_context(enter_context(self, event))
            sys.audit("AriadnePostRemoteEvent", event)
            cache_set = self.launch_manager.get_interface(Memcache).set

            if isinstance(event, (MessageEvent, ActiveMessage)):
                await cache_set(f"account.{self.account}.message.{int(event)}", event, timedelta(seconds=120))
                if not event.message_chain:
                    event.message_chain.append("<! 不支持的消息类型 !>")

            if isinstance(event, FriendEvent):
                stack.enter_context(enter_message_send_context(UploadMethod.Friend))

                friend: Optional[Friend] = getattr(event, "sender", None) or getattr(event, "friend", None)
                if friend:
                    await cache_set(
                        f"account.{self.account}.friend.{int(friend)}", friend, timedelta(seconds=120)
                    )

            elif isinstance(event, GroupEvent):
                stack.enter_context(enter_message_send_context(UploadMethod.Group))
                group = cast(Optional[Group], getattr(event, "group", None))

                member = cast(
                    Optional[Member],
                    getattr(event, "sender", None)
                    or getattr(event, "member", None)
                    or getattr(event, "operator", None)
                    or getattr(event, "inviter", None),
                )
                if member:
                    if not group:
                        group = member.group
                    await cache_set(
                        f"account.{self.account}.group.{int(group)}.member.{int(member)}",
                        member,
                        timedelta(seconds=120),
                    )

                if group:
                    await cache_set(
                        f"account.{self.account}.group.{int(group)}", group, timedelta(seconds=120)
                    )

            self.service.broadcast.postEvent(event)

    @classmethod
    def _patch_launch_manager(cls) -> None:
        from graia.amnesia.builtins.aiohttp import AiohttpClientInterface
        from graia.amnesia.transport.common.server import AbstractRouter

        with suppress(ImportError):
            import creart

            from graia.scheduler import GraiaScheduler
            from graia.scheduler.service import SchedulerService

            if SchedulerService not in cls.launch_manager._service_bind:
                cls.launch_manager.add_service(SchedulerService(creart.it(GraiaScheduler)))

        if AiohttpClientInterface not in cls.launch_manager._service_bind:
            from graia.amnesia.builtins.aiohttp import AiohttpClientService

            cls.launch_manager.add_service(AiohttpClientService())

        if AbstractRouter in cls.service.required and AbstractRouter not in cls.launch_manager._service_bind:
            from graia.amnesia.builtins.aiohttp import AiohttpServerService

            cls.launch_manager.add_service(AiohttpServerService())

        if "elizabeth.service" not in cls.launch_manager.launchables:
            cls.launch_manager.add_service(cls.service)

        if "default_account" not in cls.options and len(cls.service.connections) == 1:
            cls.options["default_account"] = next(iter(cls.service.connections))

        if CacheStorage not in cls.launch_manager._service_bind:
            cls.launch_manager.add_service(MemcacheService())

    @classmethod
    def launch_blocking(cls, stop_signals: Iterable[signal.Signals] = (signal.SIGINT,)):
        """以阻塞方式启动 Ariadne

        Args:
            stop_signals (Iterable[signal.Signals], optional): 要监听的停止信号,默认为 `(signal.SIGINT,)`
        """
        if not cls.instances:
            raise ValueError("No account specified.")
        cls._patch_launch_manager()
        try:
            cls.launch_manager.launch_blocking(stop_signal=stop_signals)
        except asyncio.CancelledError:
            logger.info("Launch manager exited.", style="red")

    @classmethod
    def stop(cls):
        """计划停止 Ariadne"""
        mgr = cls.launch_manager
        mgr.status.exiting = True
        if mgr.task_group is not None:
            mgr.task_group.stop = True
            task = mgr.task_group.blocking_task
            if task and not task.done():
                task.cancel()

    @classmethod
    def create(cls, typ: Type[T], reuse: bool = True) -> T:
        """利用 Ariadne 已有的信息协助创建实例.

        Args:
            cls (Type[T]): 需要创建的类.
            reuse (bool, optional): 是否允许复用, 默认为 True.

        Returns:
            T: 创建的类.
        """
        import creart

        return creart.it(typ, cache=reuse)

    @classmethod
    def current(cls, account: Optional[int] = None) -> "Ariadne":
        """获取 Ariadne 的当前实例.

        Returns:
            Ariadne: 当前实例.
        """
        if account:
            assert account in Ariadne.service.connections, f"{account} is not configured"
            return Ariadne.instances[account]
        from .context import ariadne_ctx

        if ariadne_ctx.get(None):
            return ariadne_ctx.get()
        if "default_account" not in cls.options:
            raise ValueError("Ambiguous account reference, set Ariadne.default_account")
        return Ariadne.instances[cls.options["default_account"]]

    @ariadne_api
    async def get_version(self, *, cache: bool = False) -> str:
        """获取后端 Mirai HTTP API 版本.

        Args:
            cache (bool, optional): 是否缓存结果, 默认为 False.

        Returns:
            str: 版本信息.
        """
        interface = self.launch_manager.get_interface(Memcache)
        if cache and (version := await interface.get(f"account.{self.account}.version")):
            return version
        version = (await self.connection.call("about", CallMethod.GET, {}, in_session=False))["version"]
        await interface.set(f"account.{self.account}.version", version, timedelta(seconds=120))
        return version

    @ariadne_api
    async def get_bot_list(self) -> List[int]:
        """获取所有当前登录账号. 需要 Mirai API HTTP 2.6.0+.

        Returns:
            List[int]: 机器人列表.
        """
        return await self.connection.call("botList", CallMethod.GET, {}, in_session=False)

    async def get_file_iterator(
        self,
        target: Union[Group, int],
        id: str = "",
        offset: int = 0,
        size: int = 1,
        with_download_info: bool = False,
    ) -> AsyncGenerator[FileInfo, None]:
        """
        以生成器形式列出指定文件夹下的所有文件.

        Args:
            target (Union[Group, int]): 要列出文件的根位置, \
            为群组或群号 (当前仅支持群组)
            id (str): 文件夹ID, 空串为根目录
            offset (int): 起始分页偏移
            size (int): 单次分页大小
            with_download_info (bool): 是否携带下载信息, 无必要不要携带

        Returns:
            AsyncGenerator[FileInfo, None]: 文件信息生成器.
        """
        target = int(target)
        current_offset = offset
        cache: List[FileInfo] = []
        while True:
            for file_info in cache:
                yield file_info
            cache = await self.get_file_list(target, id, current_offset, size, with_download_info)
            current_offset += len(cache)
            if not cache:
                return

    @ariadne_api
    async def get_file_list(
        self,
        target: Union[Group, int],
        id: str = "",
        offset: Optional[int] = 0,
        size: Optional[int] = 1,
        with_download_info: bool = False,
    ) -> List[FileInfo]:
        """
        列出指定文件夹下的所有文件.

        Args:
            target (Union[Group, int]): 要列出文件的根位置, \
            为群组或群号 (当前仅支持群组)
            id (str): 文件夹ID, 空串为根目录
            offset (int): 分页偏移
            size (int): 分页大小
            with_download_info (bool): 是否携带下载信息, 无必要不要携带

        Returns:
            List[FileInfo]: 返回的文件信息列表.
        """
        target = int(target)

        result = await self.connection.call(
            "file_list",
            CallMethod.GET,
            {
                "id": id,
                "target": target,
                "withDownloadInfo": str(with_download_info),  # yarl don't accept boolean
                "offset": offset,
                "size": size,
            },
        )
        return [FileInfo.parse_obj(i) for i in result]

    @ariadne_api
    async def get_file_info(
        self,
        target: Union[Friend, Group, int],
        id: str = "",
        with_download_info: bool = False,
    ) -> FileInfo:
        """
        获取指定文件的信息.

        Args:
            target (Union[Friend, Group, int]): 要列出文件的根位置, \
            为群组或好友或QQ号 (当前仅支持群组)
            id (str): 文件ID, 空串为根目录
            with_download_info (bool): 是否携带下载信息, 无必要不要携带

        Returns:
            FileInfo: 返回的文件信息.
        """
        if isinstance(target, Friend):
            raise NotImplementedError("Not implemented for friend")

        target = target.id if isinstance(target, Friend) else target
        target = target.id if isinstance(target, Group) else target

        result = await self.connection.call(
            "file_info",
            CallMethod.GET,
            {
                "id": id,
                "target": target,
                "withDownloadInfo": str(with_download_info),  # yarl don't accept boolean
            },
        )

        return FileInfo.parse_obj(result)

    @ariadne_api
    async def make_directory(
        self,
        target: Union[Friend, Group, int],
        name: str,
        id: str = "",
    ) -> FileInfo:
        """
        在指定位置创建新文件夹.

        Args:
            target (Union[Friend, Group, int]): 要列出文件的根位置, \
            为群组或好友或QQ号 (当前仅支持群组)
            name (str): 要创建的文件夹名称.
            id (str): 上级文件夹ID, 空串为根目录

        Returns:
            FileInfo: 新创建文件夹的信息.
        """
        if isinstance(target, Friend):
            raise NotImplementedError("Not implemented for friend")

        target = target.id if isinstance(target, Friend) else target
        target = target.id if isinstance(target, Group) else target

        result = await self.connection.call(
            "file_mkdir",
            CallMethod.POST,
            {
                "id": id,
                "directoryName": name,
                "target": target,
            },
        )

        return FileInfo.parse_obj(result)

    @ariadne_api
    async def delete_file(
        self,
        target: Union[Friend, Group, int],
        id: str = "",
    ) -> None:
        """
        删除指定文件.

        Args:
            target (Union[Friend, Group, int]): 要列出文件的根位置, \
            为群组或好友或QQ号 (当前仅支持群组)
            id (str): 文件ID

        Returns:
            None: 没有返回.
        """
        if isinstance(target, Friend):
            raise NotImplementedError("Not implemented for friend")

        target = target.id if isinstance(target, Friend) else target
        target = target.id if isinstance(target, Group) else target

        await self.connection.call(
            "file_delete",
            CallMethod.POST,
            {
                "id": id,
                "target": target,
            },
        )

    @ariadne_api
    async def move_file(
        self,
        target: Union[Friend, Group, int],
        id: str = "",
        dest_id: str = "",
    ) -> None:
        """
        移动指定文件.

        Args:
            target (Union[Friend, Group, int]): 要列出文件的根位置, \
            为群组或好友或QQ号 (当前仅支持群组)
            id (str): 源文件ID
            dest_id (str): 目标文件夹ID

        Returns:
            None: 没有返回.
        """
        if isinstance(target, Friend):
            raise NotImplementedError("Not implemented for friend")

        target = target.id if isinstance(target, Friend) else target
        target = target.id if isinstance(target, Group) else target

        await self.connection.call(
            "file_move",
            CallMethod.POST,
            {
                "id": id,
                "target": target,
                "moveTo": dest_id,
            },
        )

    @ariadne_api
    async def rename_file(
        self,
        target: Union[Friend, Group, int],
        id: str = "",
        dest_name: str = "",
    ) -> None:
        """
        重命名指定文件.

        Args:
            target (Union[Friend, Group, int]): 要列出文件的根位置, \
            为群组或好友或QQ号 (当前仅支持群组)
            id (str): 源文件ID
            dest_name (str): 目标文件新名称.

        Returns:
            None: 没有返回.
        """
        if isinstance(target, Friend):
            raise NotImplementedError("Not implemented for friend")

        target = target.id if isinstance(target, Friend) else target
        target = target.id if isinstance(target, Group) else target

        await self.connection.call(
            "file_rename",
            CallMethod.POST,
            {
                "id": id,
                "target": target,
                "renameTo": dest_name,
            },
        )

    @ariadne_api
    async def upload_file(
        self,
        data: Union[bytes, IO[bytes], os.PathLike],
        method: Union[str, UploadMethod, None] = None,
        target: Union[Friend, Group, int] = -1,
        path: str = "",
        name: str = "",
    ) -> "FileInfo":
        """
        上传文件到指定目标, 需要提供: 文件的原始数据(bytes), 文件的上传类型, \
        上传目标, (可选)上传目录ID.

        Args:
            data (Union[bytes, IO[bytes], os.PathLike]): 文件的原始数据
            method (str | UploadMethod, optional): 文件的上传类型
            target (Union[Friend, Group, int]): 文件上传目标, 即群组
            path (str): 目标路径, 默认为根路径.
            name (str): 文件名, 可选, 若 path 存在斜杠可从 path 推断.

        Returns:
            FileInfo: 文件信息
        """
        method = str(method or UploadMethod[target.__class__.__name__]).lower()

        if method != "group":
            raise NotImplementedError(f"Not implemented for {method}")

        target = target.id if isinstance(target, (Friend, Group)) else target

        if "/" in path and not name:
            path, name = path.rsplit("/", 1)

        if isinstance(data, os.PathLike):
            data = open(data, "rb")

        result = await self.connection.call(
            "file_upload",
            CallMethod.MULTIPART,
            {
                "type": method,
                "target": str(target),
                "path": path,
                "file": {"value": data, **({"filename": name} if name else {})},
            },
        )

        return FileInfo.parse_obj(result)

    @ariadne_api
    async def upload_image(
        self, data: Union[bytes, IO[bytes], os.PathLike], method: Union[None, str, UploadMethod] = None
    ) -> "Image":
        """上传一张图片到远端服务器, 需要提供: 图片的原始数据(bytes), 图片的上传类型.

        Args:
            data (Union[bytes, IO[bytes], os.PathLike]): 图片的原始数据
            method (str | UploadMethod, optional): 图片的上传类型, 可从上下文推断
        Returns:
            Image: 生成的图片消息元素
        """
        from .context import upload_method_ctx
        from .message.element import Image

        method = str(method or upload_method_ctx.get()).lower()

        if isinstance(data, os.PathLike):
            data = open(data, "rb")

        result = await self.connection.call(
            "uploadImage",
            CallMethod.MULTIPART,
            {
                "type": method,
                "img": data,
            },
        )

        return Image.parse_obj(result)

    @ariadne_api
    async def upload_voice(
        self, data: Union[bytes, IO[bytes], os.PathLike], method: Union[None, str, UploadMethod] = None
    ) -> "Voice":
        """上传语音到远端服务器, 需要提供: 语音的原始数据(bytes), 语音的上传类型.

        Args:
            data (Union[bytes, IO[bytes], os.PathLike]): 语音的原始数据
            method (str | UploadMethod, optional): 语音的上传类型, 可从上下文推断
        Returns:
            Voice: 生成的语音消息元素
        """
        from .context import upload_method_ctx
        from .message.element import Voice

        method = str(method or upload_method_ctx.get()).lower()

        if isinstance(data, os.PathLike):
            data = open(data, "rb")

        result = await self.connection.call(
            "uploadVoice",
            CallMethod.MULTIPART,
            {
                "type": method,
                "voice": data,
            },
        )

        return Voice.parse_obj(result)

    async def get_announcement_iterator(
        self,
        target: Union[Group, int],
        offset: int = 0,
        size: int = 10,
    ) -> AsyncGenerator[Announcement, None]:
        """
        获取群公告列表.

        Args:
            target (Union[Group, int]): 指定的群组.
            offset (Optional[int], optional): 起始偏移量. 默认为 0.
            size (Optional[int], optional): 列表大小. 默认为 10.

        Returns:
            AsyncGenerator[Announcement, None]: 列出群组下所有的公告.
        """
        target = int(target)
        current_offset = offset
        cache: List[Announcement] = []
        while True:
            for announcement in cache:
                yield announcement
            cache = await self.get_announcement_list(target, current_offset, size)
            current_offset += len(cache)
            if not cache:
                return

    @ariadne_api
    async def get_announcement_list(
        self,
        target: Union[Group, int],
        offset: Optional[int] = 0,
        size: Optional[int] = 10,
    ) -> List[Announcement]:
        """
        列出群组下所有的公告.

        Args:
            target (Union[Group, int]): 指定的群组.
            offset (Optional[int], optional): 起始偏移量. 默认为 0.
            size (Optional[int], optional): 列表大小. 默认为 10.

        Returns:
            List[Announcement]: 列出群组下所有的公告.
        """
        result = await self.connection.call(
            "anno_list",
            CallMethod.GET,
            {
                "target": int(target),
                "offset": offset,
                "size": size,
            },
        )

        return [Announcement.parse_obj(announcement) for announcement in result]

    @ariadne_api
    async def publish_announcement(
        self,
        target: Union[Group, int],
        content: str,
        *,
        send_to_new_member: bool = False,
        pinned: bool = False,
        show_edit_card: bool = False,
        show_popup: bool = False,
        require_confirmation: bool = False,
        image: Optional[Union[str, bytes, os.PathLike, io.IOBase]] = None,
    ) -> Announcement:
        """
        发布一个公告.

        Args:
            target (Union[Group, int]): 指定的群组.
            content (str): 公告内容.
            send_to_new_member (bool, optional): 是否公开. 默认为 False.
            pinned (bool, optional): 是否置顶. 默认为 False.
            show_edit_card (bool, optional): 是否自动删除. 默认为 False.
            show_popup (bool, optional): 是否在阅读后自动删除. 默认为 False.
            require_confirmation (bool, optional): 是否需要确认. 默认为 False.
            image (Union[str, bytes, os.PathLike, io.IOBase, Image], optional): 图片. 默认为 None. \
            为 str 时代表 url, 为 bytes / os.PathLike / io.IOBase 代表原始数据

        Raises:
            TypeError: 提供了错误的参数, 阅读有关文档得到问题原因

        Returns:
            None: 没有返回.
        """
        data: Dict[str, Any] = {
            "target": int(target),
            "content": content,
            "sendToNewMember": send_to_new_member,
            "pinned": pinned,
            "showEditCard": show_edit_card,
            "showPopup": show_popup,
            "requireConfirmation": require_confirmation,
        }

        if image:
            if isinstance(image, bytes):
                data["imageBase64"] = base64.b64encode(image).decode("ascii")
            elif isinstance(image, os.PathLike):
                data["imageBase64"] = base64.b64encode(open(image, "rb").read()).decode("ascii")
            elif isinstance(image, io.IOBase):
                data["imageBase64"] = base64.b64encode(image.read()).decode("ascii")
            elif isinstance(image, str):
                data["imageUrl"] = image

        result = await self.connection.call(
            "anno_publish",
            CallMethod.POST,
            data,
        )
        return Announcement.parse_obj(result)

    @ariadne_api
    async def delete_announcement(self, target: Union[Group, int], anno: Union[Announcement, int]) -> None:
        """
        删除一条公告.

        Args:
            target (Union[Group, int]): 指定的群组.
            anno (Union[Announcement, int]): 指定的公告.

        Raises:
            TypeError: 提供了错误的参数, 阅读有关文档得到问题原因
        """
        await self.connection.call(
            "anno_delete",
            CallMethod.POST,
            {
                "target": int(target),
                "anno": anno.fid if isinstance(anno, Announcement) else anno,
            },
        )

    @ariadne_api
    async def delete_friend(self, target: Union[Friend, int]) -> None:
        """
        删除指定好友.

        Args:
            target (Union[Friend, int]): 好友对象或QQ号.

        Returns:
            None: 没有返回.
        """
        friend_id = target.id if isinstance(target, Friend) else target

        await self.connection.call(
            "deleteFriend",
            CallMethod.POST,
            {
                "target": friend_id,
            },
        )

    @ariadne_api
    async def mute_member(self, group: Union[Group, int], member: Union[Member, int], time: int) -> None:
        """
        在指定群组禁言指定群成员; 需要具有相应权限(管理员/群主);
        `time` 不得大于 `30*24*60*60=2592000` 或小于 `0`, 否则会自动修正;
        当 `time` 小于等于 `0` 时, 不会触发禁言操作;
        禁言对象极有可能触发 `PermissionError`, 在这之前请对其进行判断!

        Args:
            group (Union[Group, int]): 指定的群组
            member (Union[Member, int]): 指定的群成员(只能是普通群员或者是管理员, 后者则要求群主权限)
            time (int): 禁言事件, 单位秒, 修正规则: `0 < time <= 2592000`

        Raises:
            PermissionError: 没有相应操作权限.

        Returns:
            None: 没有返回.
        """
        time = max(0, min(time, 2592000))  # Fix time parameter
        if not time:
            return
        await self.connection.call(
            "mute",
            CallMethod.POST,
            {
                "target": group.id if isinstance(group, Group) else group,
                "memberId": member.id if isinstance(member, Member) else member,
                "time": time,
            },
        )

    @ariadne_api
    async def unmute_member(self, group: Union[Group, int], member: Union[Member, int]) -> None:
        """
        在指定群组解除对指定群成员的禁言;
        需要具有相应权限(管理员/群主);
        对象极有可能触发 `PermissionError`, 在这之前请对其进行判断!

        Args:
            group (Union[Group, int]): 指定的群组
            member (Union[Member, int]): 指定的群成员(只能是普通群员或者是管理员, 后者则要求群主权限)

        Raises:
            PermissionError: 没有相应操作权限.

        Returns:
            None: 没有返回.
        """
        await self.connection.call(
            "unmute",
            CallMethod.POST,
            {
                "target": group.id if isinstance(group, Group) else group,
                "memberId": member.id if isinstance(member, Member) else member,
            },
        )

    @ariadne_api
    async def mute_all(self, group: Union[Group, int]) -> None:
        """在指定群组开启全体禁言, 需要当前会话账号在指定群主有相应权限(管理员或者群主权限)

        Args:
            group (Union[Group, int]): 指定的群组.

        Returns:
            None: 没有返回.
        """
        await self.connection.call(
            "muteAll",
            CallMethod.POST,
            {
                "target": group.id if isinstance(group, Group) else group,
            },
        )

    @ariadne_api
    async def unmute_all(self, group: Union[Group, int]) -> None:
        """在指定群组关闭全体禁言, 需要当前会话账号在指定群主有相应权限(管理员或者群主权限)

        Args:
            group (Union[Group, int]): 指定的群组.

        Returns:
            None: 没有返回.
        """
        await self.connection.call(
            "unmuteAll",
            CallMethod.POST,
            {
                "target": group.id if isinstance(group, Group) else group,
            },
        )

    @ariadne_api
    async def kick_member(
        self, group: Union[Group, int], member: Union[Member, int], message: str = "", block: bool = False
    ) -> None:
        """
        将目标群组成员从指定群组踢出; 需要具有相应权限(管理员/群主)

        Args:
            group (Union[Group, int]): 指定的群组
            member (Union[Member, int]): 指定的群成员(只能是普通群员或者是管理员, 后者则要求群主权限)
            message (str, optional): 对踢出对象要展示的消息
            block (bool, optional): 是否不再接受该成员加群申请

        Returns:
            None: 没有返回.
        """
        await self.connection.call(
            "kick",
            CallMethod.POST,
            {
                "target": group.id if isinstance(group, Group) else group,
                "memberId": member.id if isinstance(member, Member) else member,
                "msg": message,
                "block": block,
            },
        )

    @ariadne_api
    async def quit_group(self, group: Union[Group, int]) -> None:
        """
        主动从指定群组退出

        Args:
            group (Union[Group, int]): 需要退出的指定群组

        Returns:
            None: 没有返回.
        """
        await self.connection.call(
            "quit",
            CallMethod.POST,
            {
                "target": group.id if isinstance(group, Group) else group,
            },
        )

    @ariadne_api
    async def set_essence(
        self,
        message: Union[GroupMessage, ActiveGroupMessage, Source, int],
        target: Optional[Union[Group, int]] = None,
    ) -> None:
        """
        添加指定消息为群精华消息; 需要具有相应权限(管理员/群主).

        请自行判断消息来源是否为群组.

        Note:
            后端 Mirai HTTP API 版本 >= 2.6.0, 仅指定 message 且类型为 Source 或 int 时, \
                将尝试使用缓存获得消息事件或以当前事件来源作为 target.

        Args:
            message (Union[GroupMessage, ActiveGroupMessage, Source, int]): 指定的消息.
            target (Union[Group, int], optional): 指定的群组. message 类型为 Source 或 int 时必需.

        Returns:
            None: 没有返回.
        """
        if isinstance(message, GroupMessage):
            target = message.sender.group
        elif isinstance(message, ActiveGroupMessage):
            target = message.subject

        if tuple(map(int, (await self.get_version(cache=True)).split("."))) >= (2, 6, 0):
            if target is not None:
                pass
            elif (
                event := await self.launch_manager.get_interface(Memcache).get(
                    f"account.{self.account}.message.{int(message)}"
                )
            ) and isinstance(event, (GroupMessage, ActiveGroupMessage)):
                return await self.set_essence(event)
            elif (
                target := await DispatcherInterface.ctx.get().lookup_param("target", Optional[Group], None)
            ) is None:
                raise TypeError("set_essence() missing 1 required positional argument: 'target'")

            params = {
                "messageId": int(message),
                "target": int(target),
            }
        else:
            params = {
                "target": int(message),
            }

        await self.connection.call("setEssence", CallMethod.POST, params)

    @ariadne_api
    async def get_group_config(self, group: Union[Group, int]) -> GroupConfig:
        """
        获取指定群组的群设置

        Args:
            group (Union[Group, int]): 需要获取群设置的指定群组

        Returns:
            GroupConfig: 指定群组的群设置
        """
        result = await self.connection.call(
            "groupConfig",
            CallMethod.RESTGET,
            {
                "target": group.id if isinstance(group, Group) else group,
            },
        )

        return GroupConfig.parse_obj({camel_to_snake(k): v for k, v in result.items()})

    @ariadne_api
    async def modify_group_config(self, group: Union[Group, int], config: GroupConfig) -> None:
        """修改指定群组的群设置; 需要具有相应权限(管理员/群主).

        Args:
            group (Union[Group, int]): 需要修改群设置的指定群组
            config (GroupConfig): 经过修改后的群设置

        Returns:
            None: 没有返回.
        """
        await self.connection.call(
            "groupConfig",
            CallMethod.RESTPOST,
            {
                "target": group.id if isinstance(group, Group) else group,
                "config": config.dict(exclude_unset=True, exclude_none=True, to_camel=True),
            },
        )

    @ariadne_api
    async def modify_member_info(
        self,
        member: Union[Member, int],
        info: MemberInfo,
        group: Optional[Union[Group, int]] = None,
    ) -> None:
        """
        修改指定群组成员的可修改状态; 需要具有相应权限(管理员/群主).

        Args:
            member (Union[Member, int]): \
                指定的群组成员, 可为 Member 实例, 若前设成立, 则不需要提供 group.
            info (MemberInfo): 已修改的指定群组成员的可修改状态
            group (Optional[Union[Group, int]], optional): \
                如果 member 为 Member 实例, 则不需要提供本项, 否则需要. 默认为 None.

        Raises:
            TypeError: 提供了错误的参数, 阅读有关文档得到问题原因

        Returns:
            None: 没有返回.
        """
        if group is None:
            if isinstance(member, Member):
                group = member.group
            else:
                raise TypeError(
                    "you should give a Member instance if you cannot give a Group instance to me."
                )
        await self.connection.call(
            "memberInfo",
            CallMethod.RESTPOST,
            {
                "target": group.id if isinstance(group, Group) else group,
                "memberId": member.id if isinstance(member, Member) else member,
                "info": info.dict(exclude_none=True, exclude_unset=True),
            },
        )

    @ariadne_api
    async def modify_member_admin(
        self,
        assign: bool,
        member: Union[Member, int],
        group: Optional[Union[Group, int]] = None,
    ) -> None:
        """
        修改一位群组成员管理员权限; 需要有相应权限(群主)

        Args:
            member (Union[Member, int]): 指定群成员, 可为 Member 实例, 若前设成立, 则不需要提供 group.
            assign (bool): 是否设置群成员为管理员.
            group (Optional[Union[Group, int]], optional): \
                如果 member 为 Member 实例, 则不需要提供本项, 否则需要. 默认为 None.

        Raises:
            TypeError: 提供了错误的参数, 阅读有关文档得到问题原因
            PermissionError: 没有相应操作权限.

        Returns:
            None: 没有返回.
        """
        if group is None:
            if isinstance(member, Member):
                group = member.group
            else:
                raise TypeError(
                    "you should give a Member instance if you cannot give a Group instance to me."
                )
        await self.connection.call(
            "memberAdmin",
            CallMethod.POST,
            {
                "target": group.id if isinstance(group, Group) else group,
                "memberId": member.id if isinstance(member, Member) else member,
                "assign": assign,
            },
        )

    @ariadne_api
    async def register_command(
        self, name: str, alias: Iterable[str] = (), usage: str = "", description: str = ""
    ) -> None:
        """注册一个 mirai-console 指令

        Args:
            name (str): 指令名
            alias (Iterable[str], optional): 指令别名. Defaults to ().
            usage (str, optional): 使用方法字符串. Defaults to "".
            description (str, optional): 描述字符串. Defaults to "".

        """
        await self.connection.call(
            "cmd_register",
            CallMethod.POST,
            {
                "name": name,
                "alias": alias,
                "usage": usage,
                "description": description,
            },
        )

    @ariadne_api
    async def execute_command(self, command: Union[str, Iterable[str]]) -> None:
        """执行一条 mirai-console 指令

        Args:
            command (Union[str, Iterable[str]]): 指令字符串.

        """
        if isinstance(command, str):
            command = command.split(" ")
        await self.connection.call(
            "cmd_execute",
            CallMethod.POST,
            {
                "command": command,
            },
        )

    @ariadne_api
    async def get_friend_list(self) -> List[Friend]:
        """获取本实例账号添加的好友列表.

        Returns:
            List[Friend]: 添加的好友.
        """
        result = [
            Friend.parse_obj(i)
            for i in await self.connection.call(
                "friendList",
                CallMethod.GET,
                {},
            )
        ]

        cache_set = self.launch_manager.get_interface(Memcache).set
        await asyncio.gather(
            *(cache_set(f"account.{self.account}.friend.{int(i)}", i, timedelta(seconds=120)) for i in result)
        )
        return result

    @overload
    async def get_friend(
        self, friend_id: int, *, assertion: Literal[False] = False, cache: bool = False
    ) -> Optional[Friend]:
        """从已知的可能的好友 ID, 获取 Friend 实例.

        Args:
            friend_id (int): 已知的可能的好友 ID.
            assertion (bool, optional): 检查是否存在. Defaults to False.
            cache (bool, optional): 是否使用缓存. Defaults to False.

        Returns:
            Friend: 操作成功, 你得到了你应得的.
            None: 未能获取到.
        """
        ...

    @overload
    async def get_friend(self, friend_id: int, *, assertion: Literal[True], cache: bool = False) -> Friend:
        """从已知的可能的好友 ID, 获取 Friend 实例.

        Args:
            friend_id (int): 已知的可能的好友 ID.
            assertion (bool, optional): 检查是否存在. Defaults to False.
            cache (bool, optional): 是否使用缓存. Defaults to False.

        Returns:
            Friend: 操作成功, 你得到了你应得的.
            None: 未能获取到.
        """
        ...

    @ariadne_api
    async def get_friend(
        self, friend_id: int, *, assertion: bool = False, cache: bool = False
    ) -> Optional[Friend]:
        """从已知的可能的好友 ID, 获取 Friend 实例.

        Args:
            friend_id (int): 已知的可能的好友 ID.
            assertion (bool, optional): 检查是否存在. Defaults to False.
            cache (bool, optional): 是否使用缓存. Defaults to False.

        Returns:
            Friend: 操作成功, 你得到了你应得的.
            None: 未能获取到.
        """
        cache_get = self.launch_manager.get_interface(Memcache).get
        key = f"account.{self.account}.friend.{friend_id}"

        if cache and (friend := await cache_get(key)):
            return friend

        await self.get_friend_list()

        if friend := await cache_get(key):
            return friend

        if assertion:
            raise ValueError(f"Friend {friend_id} not found.")

    @ariadne_api
    async def get_group_list(self) -> List[Group]:
        """获取本实例账号加入的群组列表.

        Returns:
            List[Group]: 加入的群组.
        """
        result = [
            Group.parse_obj(i)
            for i in await self.connection.call(
                "groupList",
                CallMethod.GET,
                {},
            )
        ]

        cache_set = self.launch_manager.get_interface(Memcache).set
        await asyncio.gather(
            *(cache_set(f"account.{self.account}.group.{int(i)}", i, timedelta(120)) for i in result)
        )
        return result

    @overload
    async def get_group(
        self, group_id: int, *, assertion: Literal[False] = False, cache: bool = False
    ) -> Optional[Group]:
        """尝试从已知的群组唯一ID, 获取对应群组的信息; 可能返回 None.

        Args:
            group_id (int): 尝试获取的群组的唯一 ID.
            assertion (bool, optional): 是否强制验证. Defaults to False.
            cache (bool, optional): 是否使用缓存. Defaults to False.

        Returns:
            Group: 操作成功, 你得到了你应得的.
            None: 未能获取到.
        """
        ...

    @overload
    async def get_group(self, group_id: int, *, assertion: Literal[True], cache: bool = False) -> Group:
        """尝试从已知的群组唯一ID, 获取对应群组的信息; 可能返回 None.

        Args:
            group_id (int): 尝试获取的群组的唯一 ID.
            assertion (bool, optional): 是否强制验证. Defaults to False.
            cache (bool, optional): 是否使用缓存. Defaults to False.

        Returns:
            Group: 操作成功, 你得到了你应得的.
            None: 未能获取到.
        """
        ...

    @ariadne_api
    async def get_group(
        self, group_id: int, *, assertion: bool = False, cache: bool = False
    ) -> Optional[Group]:
        """尝试从已知的群组唯一ID, 获取对应群组的信息; 可能返回 None.

        Args:
            group_id (int): 尝试获取的群组的唯一 ID.
            assertion (bool, optional): 是否强制验证. Defaults to False.
            cache (bool, optional): 是否使用缓存. Defaults to False.

        Returns:
            Group: 操作成功, 你得到了你应得的.
            None: 未能获取到.
        """
        cache_get = self.launch_manager.get_interface(Memcache).get
        key = f"account.{self.account}.group.{group_id}"

        if cache and (group := await cache_get(key)):
            return group

        await self.get_group_list()

        if group := await cache_get(key):
            return group

        if assertion:
            raise ValueError(f"Group {group_id} not found.")

    @ariadne_api
    async def get_member_list(self, group: Union[Group, int], *, cache: bool = True) -> List[Member]:
        """尝试从已知的群组获取对应成员的列表.

        Args:
            group (Union[Group, int]): 已知的群组
            cache (bool, optional): 是否使用缓存. Defaults to True.

        Returns:
            List[Member]: 群内成员的 Member 对象.
        """
        group_id = int(group)

        result = [
            Member.parse_obj(i)
            for i in await (
                self.connection.call(
                    "memberList",
                    CallMethod.GET,
                    {
                        "target": group_id,
                    },
                )
                if cache
                else self.connection.call(
                    "latestMemberList",
                    CallMethod.GET,
                    {
                        "target": group_id,
                        "memberIds": [],
                    },
                )
            )
        ]

        cache_set = self.launch_manager.get_interface(Memcache).set

        await asyncio.gather(
            cache_set(f"account.{self.account}.group.{group_id}", result[0].group, timedelta(seconds=120)),
            *(
                cache_set(
                    f"account.{self.account}.group.{group_id}.member.{int(i)}", i, timedelta(seconds=120)
                )
                for i in result
            ),
        )

        return result

    @ariadne_api
    async def get_member(self, group: Union[Group, int], member_id: int, *, cache: bool = False) -> Member:
        """尝试从已知的群组唯一 ID 和已知的群组成员的 ID, 获取对应成员的信息.

        Args:
            group (Union[Group, int]): 已知的群组唯一 ID
            member_id (int): 已知的群组成员的 ID
            cache (bool, optional): 是否使用缓存. Defaults to False.

        Returns:
            Member: 对应群成员对象
        """
        interface = self.launch_manager.get_interface(Memcache)
        group_id = int(group)
        key = f"account.{self.account}.group.{group_id}.member.{member_id}"

        if cache and (member := await interface.get(key)):
            return member

        result = Member.parse_obj(
            await self.connection.call(
                "memberInfo",
                CallMethod.RESTGET,
                {
                    "target": group_id,
                    "memberId": member_id,
                },
            )
        )

        await asyncio.gather(
            interface.set(f"account.{self.account}.group.{group_id}", result.group, timedelta(seconds=120)),
            interface.set(key, result, timedelta(seconds=120)),
        )

        return result

    @ariadne_api
    async def get_bot_profile(self) -> Profile:
        """获取本实例绑定账号的 Profile.

        Returns:
            Profile: 找到的 Profile.
        """
        result = await self.connection.call(
            "botProfile",
            CallMethod.GET,
            {},
        )
        return Profile.parse_obj(result)

    @ariadne_api
    async def get_user_profile(self, target: Union[int, Friend, Member, Stranger]) -> Profile:
        """获取任意 QQ 用户的 Profile. 需要 mirai-api-http 2.5.0+.

        Args:
            target (Union[int, Friend, Member, Stranger]): 任意 QQ 用户.

        Returns:
            Profile: 找到的 Profile.
        """
        result = await self.connection.call(
            "userProfile",
            CallMethod.GET,
            {
                "target": int(target),
            },
        )
        return Profile.parse_obj(result)

    @ariadne_api
    async def get_friend_profile(self, friend: Union[Friend, int]) -> Profile:
        """获取好友的 Profile.

        Args:
            friend (Union[Friend, int]): 查找的好友.

        Returns:
            Profile: 找到的 Profile.
        """
        result = await self.connection.call(
            "friendProfile",
            CallMethod.GET,
            {
                "target": int(friend),
            },
        )
        return Profile.parse_obj(result)

    @ariadne_api
    async def get_member_profile(
        self, member: Union[Member, int], group: Optional[Union[Group, int]] = None
    ) -> Profile:
        """获取群员的 Profile.

        Args:
            member (Union[Member, int]): 群员对象.
            group (Optional[Union[Group, int]], optional): \
                检索的群. 提供 Member 形式的 member 参数后可以不提供.

        Raises:
            ValueError: 没有提供可检索的群 ID.

        Returns:
            Profile: 找到的 Profile 对象.
        """
        member_id = member.id if isinstance(member, Member) else member
        group = group or (member.group if isinstance(member, Member) else None)
        group_id = group.id if isinstance(group, Group) else group
        if not group_id:
            raise ValueError("Missing necessary argument: group")
        result = await self.connection.call(
            "memberProfile",
            CallMethod.GET,
            {
                "target": group_id,
                "memberId": member_id,
            },
        )
        return Profile.parse_obj(result)

    @ariadne_api
    async def get_message_from_id(
        self,
        message: Union[Source, int],
        target: Optional[Union[Friend, Group, Member, Stranger, Client, int]] = None,
    ) -> Union[MessageEvent, ActiveMessage]:
        """从 消息 ID 提取 消息事件.

        Note:
            后端 Mirai HTTP API 版本 >= 2.6.0, 仅指定 message 时,
            将尝试使用缓存获得消息事件或以当前事件来源作为 target.

        Args:
            message (Union[Source, int]): 指定的消息.
            target (Union[Friend, Group, Member, Stranger, Client, int], optional): 指定的好友或群组. \
                message 类型为 Source 或 int 时必需.

        Returns:
            MessageEvent: 提取的事件.
        """

        if tuple(map(int, (await self.get_version(cache=True)).split("."))) >= (2, 6, 0):
            if target is not None:
                pass
            elif event := await self.launch_manager.get_interface(Memcache).get(
                f"account.{self.account}.message.{message}"
            ):
                return event
            elif (
                target := await DispatcherInterface.ctx.get().lookup_param(
                    "target", Optional[Union[Friend, Group, Member, Stranger, Client]], None
                )
            ) is None:
                raise TypeError("get_message_from_id() missing 1 required positional argument: 'target'")

            params = {
                "messageId": int(message),
                "target": self.account if isinstance(target, Client) else int(target),
            }
        else:
            params = {
                "id": int(message),
            }

        return cast(
            Union[MessageEvent, ActiveMessage],
            build_event(await self.connection.call("messageFromId", CallMethod.GET, params)),
        )

    @ariadne_api
    async def send_friend_message(
        self,
        target: Union[Friend, int],
        message: MessageContainer,
        *,
        quote: Optional[Union[Source, int]] = None,
        action: Union[SendMessageActionProtocol, Literal[Sentinel], None] = Sentinel,
    ) -> ActiveFriendMessage:
        """发送消息给好友, 可以指定回复的消息.

        Args:
            target (Union[Friend, int]): 指定的好友
            message (MessageContainer): 有效的消息容器.
            quote (Optional[Union[Source, int]], optional): 需要回复的消息, 不要忽视我啊喂?!!, 默认为 None.

        Returns:
            ActiveFriendMessage: 即当前会话账号所发出消息的事件, 可用于回复.
        """
        from .event.message import ActiveFriendMessage

        message = MessageChain(message)
        if isinstance(quote, MessageChain):
            raise TypeError(
                "Using MessageChain as quote target is removed! Get a `Source` from event instead!"
            )

        if action is not None:  # TODO: REFACTOR
            return cast(
                ActiveFriendMessage,
                await self.send_message(
                    (
                        await self.get_friend(target, assertion=True, cache=True)
                        if isinstance(target, int)
                        else target
                    ),
                    message,
                    quote=quote or False,
                    action=action,
                ),
            )

        if isinstance(quote, Source):
            quote = quote.id

        with enter_message_send_context(UploadMethod.Friend):
            message = message.as_sendable()
            try:
                result = await self.connection.call(
                    "sendFriendMessage",
                    CallMethod.POST,
                    {
                        "target": int(target),
                        "messageChain": message.dict()["__root__"],
                        **({"quote": quote} if quote else {}),
                    },
                )
                event = ActiveFriendMessage(
                    messageChain=MessageChain(message),
                    source=Source(id=result["messageId"], time=datetime.now()),
                    subject=(await self.get_friend(int(target), assertion=True, cache=True)),
                )
                with enter_context(self, event):
                    await self.log_config.log(self, event)
                    self.service.broadcast.postEvent(event)
                if result["messageId"] < 0:
                    logger.warning("Failed to send message, your account may be blocked.")
                return event
            except UnknownTarget:
                await self.launch_manager.get_interface(Memcache).delete(
                    f"account.{self.account}.friend.{int(target)}"
                )
                raise

    @ariadne_api
    async def send_group_message(
        self,
        target: Union[Group, Member, int],
        message: MessageContainer,
        *,
        quote: Optional[Union[Source, int]] = None,
        action: Union[SendMessageActionProtocol, Literal[Sentinel], None] = Sentinel,
    ) -> ActiveGroupMessage:
        """发送消息到群组内, 可以指定回复的消息.

        Args:
            target (Union[Group, Member, int]): 指定的群组, 可以是群组的 ID 也可以是 Group 或 Member 实例.
            message (MessageContainer): 有效的消息容器.
            quote (Optional[Union[Source, int]], optional): 需要回复的消息, 不要忽视我啊喂?!!, 默认为 None.
            action (SendMessageActionProtocol, optional): 消息发送的处理 action

        Returns:
            ActiveGroupMessage: 即当前会话账号所发出消息的事件, 可用于回复.
        """
        from .event.message import ActiveGroupMessage

        message = MessageChain(message)
        if isinstance(target, Member):
            target = target.group

        if action is not None:  # TODO: REFACTOR
            return cast(
                ActiveGroupMessage,
                await self.send_message(
                    (
                        await self.get_group(target, assertion=True, cache=True)
                        if isinstance(target, int)
                        else target
                    ),
                    message,
                    quote=quote or False,
                    action=action,
                ),
            )

        if isinstance(quote, MessageChain):
            raise TypeError(
                "Using MessageChain as quote target is removed! Get a `Source` from event instead!"
            )

        if isinstance(quote, Source):
            quote = quote.id

        with enter_message_send_context(UploadMethod.Group):
            message = message.as_sendable().copy()
            try:
                result = await self.connection.call(
                    "sendGroupMessage",
                    CallMethod.POST,
                    {
                        "target": int(target),
                        "messageChain": message.dict()["__root__"],
                        **({"quote": quote} if quote else {}),
                    },
                )
                event = ActiveGroupMessage(
                    messageChain=MessageChain(message),
                    source=Source(id=result["messageId"], time=datetime.now()),
                    subject=(await self.get_group(int(target), assertion=True, cache=True)),
                )
                with enter_context(self, event):
                    await self.log_config.log(self, event)
                    self.service.broadcast.postEvent(event)
                if result["messageId"] < 0:
                    logger.warning("Failed to send message, your account may be blocked.")
                return event
            except UnknownTarget:
                await self.launch_manager.get_interface(Memcache).delete(
                    f"account.{self.account}.group.{int(target)}"
                )
                raise

    @ariadne_api
    async def send_temp_message(
        self,
        target: Union[Member, int],
        message: MessageContainer,
        group: Optional[Union[Group, int]] = None,
        *,
        quote: Optional[Union[Source, int]] = None,
        action: Union[SendMessageActionProtocol, Literal[Sentinel], None] = Sentinel,
    ) -> ActiveTempMessage:
        """发送临时会话给群组中的特定成员, 可指定回复的消息.

        Warning:
            本 API 大概率会导致账号风控/冻结. 请谨慎使用.

        Args:
            group (Union[Group, int]): 指定的群组, 可以是群组的 ID 也可以是 Group 实例.
            target (Union[Member, int]): 指定的群组成员, 可以是成员的 ID 也可以是 Member 实例.
            message (MessageContainer): 有效的消息容器.
            quote (Optional[Union[Source, int]], optional): 需要回复的消息, 不要忽视我啊喂?!!, 默认为 None.
            action (SendMessageActionProtocol, optional): 消息发送的处理 action

        Returns:
            ActiveTempMessage: 即当前会话账号所发出消息的事件, 可用于回复.
        """
        from .event.message import ActiveTempMessage

        message = MessageChain(message)

        if isinstance(quote, MessageChain):
            raise TypeError(
                "Using MessageChain as quote target is removed! Get a `Source` from event instead!"
            )

        new_msg = message.copy().as_sendable()
        group = target.group if (isinstance(target, Member) and not group) else group
        if not group:
            raise ValueError("Missing necessary argument: group")

        if action is not None:  # TODO: REFACTOR
            return cast(
                ActiveTempMessage,
                await self.send_message(
                    await self.get_member(group, target, cache=True) if isinstance(target, int) else target,
                    message,
                    quote=quote or False,
                    action=action,
                ),
            )

        if isinstance(quote, Source):
            quote = quote.id

        with enter_message_send_context(UploadMethod.Temp):
            try:
                result = await self.connection.call(
                    "sendTempMessage",
                    CallMethod.POST,
                    {
                        "group": int(group),
                        "qq": int(target),
                        "messageChain": new_msg.dict()["__root__"],
                        **({"quote": quote} if quote else {}),
                    },
                )
                event: ActiveTempMessage = ActiveTempMessage(
                    messageChain=MessageChain(message),
                    source=Source(id=result["messageId"], time=datetime.now()),
                    subject=(await self.get_member(int(group), int(target), cache=True)),
                )
                with enter_context(self, event):
                    await self.log_config.log(self, event)
                    self.service.broadcast.postEvent(event)
                if result["messageId"] < 0:
                    logger.warning("Failed to send message, your account may be limited.")
                return event
            except UnknownTarget:
                await self.launch_manager.get_interface(Memcache).delete(
                    f"account.{self.account}.group.{int(group)}.member.{int(target)}"
                )
                raise

    @overload
    async def send_message(
        self,
        target: Union[MessageEvent, Group, Friend, Member],
        message: MessageContainer,
        *,
        quote: Union[bool, int, Source, MessageChain] = False,
        action: SendMessageActionProtocol["T"],
    ) -> "T":
        """
        依据传入的 `target` 自动发送消息.

        请注意发送给群成员时会自动作为临时消息发送.

        Args:
            target (Union[MessageEvent, Group, Friend, Member]): 消息发送目标.
            message (Union[MessageChain, List[Union[Element, str]], str]): 要发送的消息链.
            quote (Union[bool, int, Source]): 若为布尔类型, 则会尝试通过传入对象解析要回复的消息, \
            否则会视为 `messageId` 处理.
            action (SendMessageCaller[T], optional): 消息发送的处理 action, \
            可以在 graia.ariadne.util.send 查看自带的 action, \
            未传入使用默认 action

        Returns:
            Union[T, R]: 默认实现为 ActiveMessage
        """
        ...

    @overload
    async def send_message(
        self,
        target: Union[MessageEvent, Group, Friend, Member],
        message: MessageContainer,
        *,
        quote: Union[bool, int, Source, MessageChain] = False,
        action: Literal[Sentinel] = Sentinel,
    ) -> ActiveMessage:
        """
        依据传入的 `target` 自动发送消息.

        请注意发送给群成员时会自动作为临时消息发送.

        Args:
            target (Union[MessageEvent, Group, Friend, Member]): 消息发送目标.
            message (Union[MessageChain, List[Union[Element, str]], str]): 要发送的消息链.
            quote (Union[bool, int, Source]): 若为布尔类型, 则会尝试通过传入对象解析要回复的消息, \
            否则会视为 `messageId` 处理.
            action (SendMessageCaller[T], optional): 消息发送的处理 action, \
            可以在 graia.ariadne.util.send 查看自带的 action, \
            未传入使用默认 action

        Returns:
            Union[T, R]: 默认实现为 ActiveMessage
        """
        ...

    @ariadne_api
    async def send_message(
        self,
        target: Union[MessageEvent, Group, Friend, Member],
        message: MessageContainer,
        *,
        quote: Union[bool, int, Source] = False,
        action: Union[SendMessageActionProtocol["T"], Literal[Sentinel]] = Sentinel,
    ) -> "T":
        """
        依据传入的 `target` 自动发送消息.

        请注意发送给群成员时会自动作为临时消息发送.

        Args:
            target (Union[MessageEvent, Group, Friend, Member]): 消息发送目标.
            message (Union[MessageChain, List[Union[Element, str]], str]): 要发送的消息链.
            quote (Union[bool, int, Source]): 若为布尔类型, 则会尝试通过传入对象解析要回复的消息, \
            否则会视为 `messageId` 处理.
            action (SendMessageCaller[T], optional): 消息发送的处理 action, \
            可以在 graia.ariadne.util.send 查看自带的 action, \
            未传入使用默认 action

        Returns:
            Union[T, R]: 默认实现为 ActiveMessage
        """
        action = action if action is not Sentinel else self.default_send_action
        data: Dict[Any, Any] = {"message": MessageChain(message)}
        # quote
        if isinstance(quote, bool):
            if quote:
                if isinstance(target, MessageEvent):
                    data["quote"] = target.source
                else:
                    raise TypeError("Passing `quote=True` is only valid when passing a MessageEvent.")
        elif isinstance(quote, (int, Source)):
            data["quote"] = quote
        elif isinstance(quote, MessageChain):
            raise TypeError(
                "Using MessageChain as quote target is removed! Get a `Source` from event instead!"
            )
        # target: MessageEvent
        if isinstance(target, GroupMessage):
            data["target"] = target.sender.group
        elif isinstance(target, (FriendMessage, TempMessage)):
            data["target"] = target.sender
        else:  # target: sender
            data["target"] = target
        send_data: SendMessageDict = SendMessageDict(**data)
        # send message
        data = await action.param(send_data)  # type: ignore

        try:
            if isinstance(data["target"], Friend):
                val = await self.send_friend_message(**data, action=None)
            elif isinstance(data["target"], Group):
                val = await self.send_group_message(**data, action=None)
            elif isinstance(data["target"], Member):
                val = await self.send_temp_message(**data, action=None)
            else:
                logger.warning(
                    f"Unable to send {data['message']} to {data['target']} of type {type(data['target'])}"
                )
                return await action.result(
                    ActiveMessage(
                        type="Unknown",
                        messageChain=MessageChain(data["message"]),
                        source=Source(id=-1, time=datetime.now()),
                        subject=data["target"],
                    )
                )
        except SendMessageException as e:
            e.send_data = send_data  # type: ignore
            return await action.exception(e)
        else:
            return await action.result(val)

    @ariadne_api
    async def send_nudge(
        self, target: Union[Friend, Member, int], group: Optional[Union[Group, int]] = None
    ) -> None:
        """
        向指定的群组成员或好友发送戳一戳消息.

        Args:
            target (Union[Friend, Member]): 发送戳一戳的目标.
            group (Union[Group, int], optional): 发送的群组.

        Returns:
            None: 没有返回.
        """
        target_id = target if isinstance(target, int) else target.id

        subject_id = (group.id if isinstance(group, Group) else group) or (
            target.group.id if isinstance(target, Member) else target_id
        )
        kind = "Group" if group or isinstance(target, Member) else "Friend"
        await self.connection.call(
            "sendNudge",
            CallMethod.POST,
            {
                "target": target_id,
                "subject": subject_id,
                "kind": kind,
            },
        )

    @ariadne_api
    async def recall_message(
        self,
        message: Union[MessageEvent, ActiveMessage, Source, int],
        target: Optional[Union[Friend, Group, Member, Stranger, Client, int]] = None,
    ) -> None:
        """撤回指定的消息;
        撤回自己的消息需要在发出后 2 分钟内才能成功撤回;
        如果在群组内, 需要撤回他人的消息则需要管理员/群主权限.

        Note:
            后端 Mirai HTTP API 版本 >= 2.6.0, 仅指定 message 且类型为 Source 或 int 时, \
                将尝试使用缓存获得消息事件或以当前事件来源作为 target.

        Args:
            message (Union[MessageEvent, ActiveMessage, Source, int]): 指定的消息.
            target (Union[Friend, Group, Member, Stranger, Client, int], optional): 指定的好友或群组. \
                message 类型为 Source 或 int 时必需.

        Returns:
            None: 没有返回
        """
        if target is not None:
            pass
        elif isinstance(message, GroupMessage):
            target = message.sender.group
        elif isinstance(message, MessageEvent):
            target = message.sender
        elif isinstance(message, ActiveMessage):
            target = message.subject

        if tuple(map(int, (await self.get_version(cache=True)).split("."))) >= (2, 6, 0):
            if target is not None:
                pass
            elif event := await self.launch_manager.get_interface(Memcache).get(
                f"account.{self.account}.message.{int(message)}"
            ):
                return await self.recall_message(event)
            elif (
                target := await DispatcherInterface.ctx.get().lookup_param(
                    "target", Union[Friend, Group, Member, Stranger, Client, None], None
                )
            ) is None:
                raise TypeError("recall_message() missing 1 required positional argument: 'target'")

            params = {
                "messageId": int(message),
                "target": self.account if isinstance(target, Client) else int(target),
            }
        else:
            params = {
                "target": int(message),
            }

        await self.connection.call("recall", CallMethod.POST, params)

    @ariadne_api
    async def get_roaming_message(
        self, start: datetime, end: datetime, target: Union[Friend, int]
    ) -> List[FriendMessage]:
        """获取漫游消息. 需要 Mirai API HTTP 2.6.0+.

        Args:
            start (datetime): 起始时间.
            end (datetime): 结束时间.
            target (Union[Friend, int]): 漫游消息对象.

        Returns:
            List[FriendMessage]: 漫游消息列表.
        """
        target = target if isinstance(target, int) else target.id
        result = await self.connection.call(
            "roamingMessages",
            CallMethod.POST,
            {
                "target": target,
                "start": start.timestamp(),
                "end": end.timestamp(),
            },
        )

        return [FriendMessage.parse_obj(i) for i in result]

__init__ 🔗

__init__(
    connection: Iterable[U_Info] = (), log_config: Optional[LogConfig] = None
) -> None

针对单个账号初始化 Ariadne 实例.

若需全局配置, 请使用 Ariadne.config()

Parameters:

  • connection (Iterable[U_Info]) –

    连接信息, 通过 graia.ariadne.connection.config 生成

  • log_config (Optional[LogConfig]) –

    日志配置

Returns:

  • None( None ) –

    无返回值

Source code in src/graia/ariadne/app.py
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
217
218
219
def __init__(
    self,
    connection: Iterable[U_Info] = (),
    log_config: Optional[LogConfig] = None,
) -> None:
    """针对单个账号初始化 Ariadne 实例.

    若需全局配置, 请使用 `Ariadne.config()`

    Args:
        connection (Iterable[U_Info]): 连接信息, 通过 `graia.ariadne.connection.config` 生成
        log_config (Optional[LogConfig], optional): 日志配置

    Returns:
        None: 无返回值
    """
    self._ensure_config()
    from .util.send import Strict

    self.default_send_action = Strict
    conns, account = Ariadne.service.add_infos(connection)
    for conn in conns:
        Ariadne.launch_manager.add_launchable(conn)
    if account in Ariadne.instances:
        raise AriadneConfigurationError("You can't configure an account twice!")
    Ariadne.instances[account] = self
    self.account: int = account
    if account not in Ariadne.service.connections:
        raise AriadneConfigurationError(f"{account} is not configured")
    self.connection: ConnectionInterface = Ariadne.service.get_interface(ConnectionInterface).bind(
        account
    )
    self.log_config: LogConfig = log_config or LogConfig()
    self.connection.add_callback(self.log_config.event_hook(self))
    self.connection.add_callback(self._event_hook)

broadcast 🔗

broadcast() -> Broadcast

获取 Ariadne 的事件系统.

Returns:

  • Broadcast( Broadcast ) –

    事件系统

Source code in src/graia/ariadne/app.py
104
105
106
107
108
109
110
111
@class_property
def broadcast(cls) -> Broadcast:
    """获取 Ariadne 的事件系统.

    Returns:
        Broadcast: 事件系统
    """
    return cls.service.broadcast

config classmethod 🔗

config(
    *,
    launch_manager: Optional[Launart] = None,
    default_account: Optional[int] = None,
    install_log: Union[bool, RichLogInstallOptions] = False,
    inject_bypass_listener: bool = False
) -> None

配置 Ariadne 全局参数, 未提供的值会自动生成合理的默认值

注:请在实例化 Ariadne 前配置完成

Parameters:

  • launch_manager (Optional[LaunchManager]) –

    启动管理器

  • default_account (Optional[int]) –

    默认账号

  • install_log (Union[bool, RichLogInstallOptions]) –

    是否安装 rich 日志, 默认为 False

  • inject_bypass_listener (bool) –

    是否注入透传 Broadcast, 默认为 False

Source code in src/graia/ariadne/app.py
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
@classmethod
def config(
    cls,
    *,
    launch_manager: Optional[Launart] = None,
    default_account: Optional[int] = None,
    install_log: Union[bool, RichLogInstallOptions] = False,
    inject_bypass_listener: bool = False,
) -> None:
    """配置 Ariadne 全局参数, 未提供的值会自动生成合理的默认值

    注:请在实例化 Ariadne 前配置完成

    Args:
        launch_manager (Optional[LaunchManager], optional): 启动管理器
        default_account (Optional[int], optional): 默认账号
        install_log (Union[bool, RichLogInstallOptions], optional): 是否安装 rich 日志, 默认为 False
        inject_bypass_listener (bool, optional): 是否注入透传 Broadcast, 默认为 False
    """

    if launch_manager:
        if getattr(cls, "launch_manager", launch_manager) is not launch_manager:
            raise AriadneConfigurationError("Inconsistent launch manager")
        cls.launch_manager = launch_manager

    if default_account:
        if "default_account" not in cls.options:
            cls.options["default_account"] = default_account
        elif cls.options["default_account"] != default_account:
            raise AriadneConfigurationError("Inconsistent default account")

    if install_log and "installed_log" not in cls.options:
        import richuru

        option = (
            install_log if isinstance(install_log, RichLogInstallOptions) else RichLogInstallOptions()
        )

        richuru.install(**option._asdict())
        traceback.print_exception = option.exc_hook
        cls.options["installed_log"] = True

    if inject_bypass_listener and "inject_bypass_listener" not in cls.options:
        import creart

        from .util import inject_bypass_listener as inject

        inject(creart.it(Broadcast))

create classmethod 🔗

create(typ: Type[T], reuse: bool = True) -> T

利用 Ariadne 已有的信息协助创建实例.

Parameters:

  • cls (Type[T]) –

    需要创建的类.

  • reuse (bool) –

    是否允许复用, 默认为 True.

Returns:

  • T( T ) –

    创建的类.

Source code in src/graia/ariadne/app.py
327
328
329
330
331
332
333
334
335
336
337
338
339
340
@classmethod
def create(cls, typ: Type[T], reuse: bool = True) -> T:
    """利用 Ariadne 已有的信息协助创建实例.

    Args:
        cls (Type[T]): 需要创建的类.
        reuse (bool, optional): 是否允许复用, 默认为 True.

    Returns:
        T: 创建的类.
    """
    import creart

    return creart.it(typ, cache=reuse)

current classmethod 🔗

current(account: Optional[int] = None) -> Ariadne

获取 Ariadne 的当前实例.

Returns:

  • Ariadne( Ariadne ) –

    当前实例.

Source code in src/graia/ariadne/app.py
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
@classmethod
def current(cls, account: Optional[int] = None) -> "Ariadne":
    """获取 Ariadne 的当前实例.

    Returns:
        Ariadne: 当前实例.
    """
    if account:
        assert account in Ariadne.service.connections, f"{account} is not configured"
        return Ariadne.instances[account]
    from .context import ariadne_ctx

    if ariadne_ctx.get(None):
        return ariadne_ctx.get()
    if "default_account" not in cls.options:
        raise ValueError("Ambiguous account reference, set Ariadne.default_account")
    return Ariadne.instances[cls.options["default_account"]]

default_account 🔗

default_account() -> int

获取默认账号.

Returns:

  • int( int ) –

    默认账号

Source code in src/graia/ariadne/app.py
113
114
115
116
117
118
119
120
121
122
@class_property
def default_account(cls) -> int:
    """获取默认账号.

    Returns:
        int: 默认账号
    """
    if "default_account" in Ariadne.options:
        return Ariadne.options["default_account"]
    raise ValueError("No default account configured")

delete_announcement async 🔗

delete_announcement(
    target: Union[Group, int], anno: Union[Announcement, int]
) -> None

删除一条公告.

Parameters:

Raises:

  • TypeError

    提供了错误的参数, 阅读有关文档得到问题原因

Source code in src/graia/ariadne/app.py
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
@ariadne_api
async def delete_announcement(self, target: Union[Group, int], anno: Union[Announcement, int]) -> None:
    """
    删除一条公告.

    Args:
        target (Union[Group, int]): 指定的群组.
        anno (Union[Announcement, int]): 指定的公告.

    Raises:
        TypeError: 提供了错误的参数, 阅读有关文档得到问题原因
    """
    await self.connection.call(
        "anno_delete",
        CallMethod.POST,
        {
            "target": int(target),
            "anno": anno.fid if isinstance(anno, Announcement) else anno,
        },
    )

delete_file async 🔗

delete_file(target: Union[Friend, Group, int], id: str = '') -> None

删除指定文件.

Parameters:

  • target (Union[Friend, Group, int]) –

    要列出文件的根位置, 为群组或好友或QQ号 (当前仅支持群组)

  • id (str) –

    文件ID

Returns:

  • None( None ) –

    没有返回.

Source code in src/graia/ariadne/app.py
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
@ariadne_api
async def delete_file(
    self,
    target: Union[Friend, Group, int],
    id: str = "",
) -> None:
    """
    删除指定文件.

    Args:
        target (Union[Friend, Group, int]): 要列出文件的根位置, \
        为群组或好友或QQ号 (当前仅支持群组)
        id (str): 文件ID

    Returns:
        None: 没有返回.
    """
    if isinstance(target, Friend):
        raise NotImplementedError("Not implemented for friend")

    target = target.id if isinstance(target, Friend) else target
    target = target.id if isinstance(target, Group) else target

    await self.connection.call(
        "file_delete",
        CallMethod.POST,
        {
            "id": id,
            "target": target,
        },
    )

delete_friend async 🔗

delete_friend(target: Union[Friend, int]) -> None

删除指定好友.

Parameters:

Returns:

  • None( None ) –

    没有返回.

Source code in src/graia/ariadne/app.py
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
@ariadne_api
async def delete_friend(self, target: Union[Friend, int]) -> None:
    """
    删除指定好友.

    Args:
        target (Union[Friend, int]): 好友对象或QQ号.

    Returns:
        None: 没有返回.
    """
    friend_id = target.id if isinstance(target, Friend) else target

    await self.connection.call(
        "deleteFriend",
        CallMethod.POST,
        {
            "target": friend_id,
        },
    )

execute_command async 🔗

execute_command(command: Union[str, Iterable[str]]) -> None

执行一条 mirai-console 指令

Parameters:

Source code in src/graia/ariadne/app.py
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
@ariadne_api
async def execute_command(self, command: Union[str, Iterable[str]]) -> None:
    """执行一条 mirai-console 指令

    Args:
        command (Union[str, Iterable[str]]): 指令字符串.

    """
    if isinstance(command, str):
        command = command.split(" ")
    await self.connection.call(
        "cmd_execute",
        CallMethod.POST,
        {
            "command": command,
        },
    )

get_announcement_iterator async 🔗

get_announcement_iterator(
    target: Union[Group, int], offset: int = 0, size: int = 10
) -> AsyncGenerator[Announcement, None]

获取群公告列表.

Parameters:

Returns:

Source code in src/graia/ariadne/app.py
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
async def get_announcement_iterator(
    self,
    target: Union[Group, int],
    offset: int = 0,
    size: int = 10,
) -> AsyncGenerator[Announcement, None]:
    """
    获取群公告列表.

    Args:
        target (Union[Group, int]): 指定的群组.
        offset (Optional[int], optional): 起始偏移量. 默认为 0.
        size (Optional[int], optional): 列表大小. 默认为 10.

    Returns:
        AsyncGenerator[Announcement, None]: 列出群组下所有的公告.
    """
    target = int(target)
    current_offset = offset
    cache: List[Announcement] = []
    while True:
        for announcement in cache:
            yield announcement
        cache = await self.get_announcement_list(target, current_offset, size)
        current_offset += len(cache)
        if not cache:
            return

get_announcement_list async 🔗

get_announcement_list(
    target: Union[Group, int],
    offset: Optional[int] = 0,
    size: Optional[int] = 10,
) -> List[Announcement]

列出群组下所有的公告.

Parameters:

Returns:

Source code in src/graia/ariadne/app.py
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
@ariadne_api
async def get_announcement_list(
    self,
    target: Union[Group, int],
    offset: Optional[int] = 0,
    size: Optional[int] = 10,
) -> List[Announcement]:
    """
    列出群组下所有的公告.

    Args:
        target (Union[Group, int]): 指定的群组.
        offset (Optional[int], optional): 起始偏移量. 默认为 0.
        size (Optional[int], optional): 列表大小. 默认为 10.

    Returns:
        List[Announcement]: 列出群组下所有的公告.
    """
    result = await self.connection.call(
        "anno_list",
        CallMethod.GET,
        {
            "target": int(target),
            "offset": offset,
            "size": size,
        },
    )

    return [Announcement.parse_obj(announcement) for announcement in result]

get_bot_list async 🔗

get_bot_list() -> List[int]

获取所有当前登录账号. 需要 Mirai API HTTP 2.6.0+.

Returns:

  • List[int]

    List[int]: 机器人列表.

Source code in src/graia/ariadne/app.py
377
378
379
380
381
382
383
384
@ariadne_api
async def get_bot_list(self) -> List[int]:
    """获取所有当前登录账号. 需要 Mirai API HTTP 2.6.0+.

    Returns:
        List[int]: 机器人列表.
    """
    return await self.connection.call("botList", CallMethod.GET, {}, in_session=False)

get_bot_profile async 🔗

get_bot_profile() -> Profile

获取本实例绑定账号的 Profile.

Returns:

  • Profile( Profile ) –

    找到的 Profile.

Source code in src/graia/ariadne/app.py
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
@ariadne_api
async def get_bot_profile(self) -> Profile:
    """获取本实例绑定账号的 Profile.

    Returns:
        Profile: 找到的 Profile.
    """
    result = await self.connection.call(
        "botProfile",
        CallMethod.GET,
        {},
    )
    return Profile.parse_obj(result)

get_file_info async 🔗

get_file_info(
    target: Union[Friend, Group, int],
    id: str = "",
    with_download_info: bool = False,
) -> FileInfo

获取指定文件的信息.

Parameters:

  • target (Union[Friend, Group, int]) –

    要列出文件的根位置, 为群组或好友或QQ号 (当前仅支持群组)

  • id (str) –

    文件ID, 空串为根目录

  • with_download_info (bool) –

    是否携带下载信息, 无必要不要携带

Returns:

  • FileInfo( FileInfo ) –

    返回的文件信息.

Source code in src/graia/ariadne/app.py
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
@ariadne_api
async def get_file_info(
    self,
    target: Union[Friend, Group, int],
    id: str = "",
    with_download_info: bool = False,
) -> FileInfo:
    """
    获取指定文件的信息.

    Args:
        target (Union[Friend, Group, int]): 要列出文件的根位置, \
        为群组或好友或QQ号 (当前仅支持群组)
        id (str): 文件ID, 空串为根目录
        with_download_info (bool): 是否携带下载信息, 无必要不要携带

    Returns:
        FileInfo: 返回的文件信息.
    """
    if isinstance(target, Friend):
        raise NotImplementedError("Not implemented for friend")

    target = target.id if isinstance(target, Friend) else target
    target = target.id if isinstance(target, Group) else target

    result = await self.connection.call(
        "file_info",
        CallMethod.GET,
        {
            "id": id,
            "target": target,
            "withDownloadInfo": str(with_download_info),  # yarl don't accept boolean
        },
    )

    return FileInfo.parse_obj(result)

get_file_iterator async 🔗

get_file_iterator(
    target: Union[Group, int],
    id: str = "",
    offset: int = 0,
    size: int = 1,
    with_download_info: bool = False,
) -> AsyncGenerator[FileInfo, None]

以生成器形式列出指定文件夹下的所有文件.

Parameters:

  • target (Union[Group, int]) –

    要列出文件的根位置, 为群组或群号 (当前仅支持群组)

  • id (str) –

    文件夹ID, 空串为根目录

  • offset (int) –

    起始分页偏移

  • size (int) –

    单次分页大小

  • with_download_info (bool) –

    是否携带下载信息, 无必要不要携带

Returns:

Source code in src/graia/ariadne/app.py
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
async def get_file_iterator(
    self,
    target: Union[Group, int],
    id: str = "",
    offset: int = 0,
    size: int = 1,
    with_download_info: bool = False,
) -> AsyncGenerator[FileInfo, None]:
    """
    以生成器形式列出指定文件夹下的所有文件.

    Args:
        target (Union[Group, int]): 要列出文件的根位置, \
        为群组或群号 (当前仅支持群组)
        id (str): 文件夹ID, 空串为根目录
        offset (int): 起始分页偏移
        size (int): 单次分页大小
        with_download_info (bool): 是否携带下载信息, 无必要不要携带

    Returns:
        AsyncGenerator[FileInfo, None]: 文件信息生成器.
    """
    target = int(target)
    current_offset = offset
    cache: List[FileInfo] = []
    while True:
        for file_info in cache:
            yield file_info
        cache = await self.get_file_list(target, id, current_offset, size, with_download_info)
        current_offset += len(cache)
        if not cache:
            return

get_file_list async 🔗

get_file_list(
    target: Union[Group, int],
    id: str = "",
    offset: Optional[int] = 0,
    size: Optional[int] = 1,
    with_download_info: bool = False,
) -> List[FileInfo]

列出指定文件夹下的所有文件.

Parameters:

  • target (Union[Group, int]) –

    要列出文件的根位置, 为群组或群号 (当前仅支持群组)

  • id (str) –

    文件夹ID, 空串为根目录

  • offset (int) –

    分页偏移

  • size (int) –

    分页大小

  • with_download_info (bool) –

    是否携带下载信息, 无必要不要携带

Returns:

  • List[FileInfo]

    List[FileInfo]: 返回的文件信息列表.

Source code in src/graia/ariadne/app.py
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
@ariadne_api
async def get_file_list(
    self,
    target: Union[Group, int],
    id: str = "",
    offset: Optional[int] = 0,
    size: Optional[int] = 1,
    with_download_info: bool = False,
) -> List[FileInfo]:
    """
    列出指定文件夹下的所有文件.

    Args:
        target (Union[Group, int]): 要列出文件的根位置, \
        为群组或群号 (当前仅支持群组)
        id (str): 文件夹ID, 空串为根目录
        offset (int): 分页偏移
        size (int): 分页大小
        with_download_info (bool): 是否携带下载信息, 无必要不要携带

    Returns:
        List[FileInfo]: 返回的文件信息列表.
    """
    target = int(target)

    result = await self.connection.call(
        "file_list",
        CallMethod.GET,
        {
            "id": id,
            "target": target,
            "withDownloadInfo": str(with_download_info),  # yarl don't accept boolean
            "offset": offset,
            "size": size,
        },
    )
    return [FileInfo.parse_obj(i) for i in result]

get_friend async 🔗

get_friend(
    friend_id: int, *, assertion: bool = False, cache: bool = False
) -> Optional[Friend]

从已知的可能的好友 ID, 获取 Friend 实例.

Parameters:

  • friend_id (int) –

    已知的可能的好友 ID.

  • assertion (bool) –

    检查是否存在. Defaults to False.

  • cache (bool) –

    是否使用缓存. Defaults to False.

Returns:

Source code in src/graia/ariadne/app.py
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
@ariadne_api
async def get_friend(
    self, friend_id: int, *, assertion: bool = False, cache: bool = False
) -> Optional[Friend]:
    """从已知的可能的好友 ID, 获取 Friend 实例.

    Args:
        friend_id (int): 已知的可能的好友 ID.
        assertion (bool, optional): 检查是否存在. Defaults to False.
        cache (bool, optional): 是否使用缓存. Defaults to False.

    Returns:
        Friend: 操作成功, 你得到了你应得的.
        None: 未能获取到.
    """
    cache_get = self.launch_manager.get_interface(Memcache).get
    key = f"account.{self.account}.friend.{friend_id}"

    if cache and (friend := await cache_get(key)):
        return friend

    await self.get_friend_list()

    if friend := await cache_get(key):
        return friend

    if assertion:
        raise ValueError(f"Friend {friend_id} not found.")

get_friend_list async 🔗

get_friend_list() -> List[Friend]

获取本实例账号添加的好友列表.

Returns:

Source code in src/graia/ariadne/app.py
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
@ariadne_api
async def get_friend_list(self) -> List[Friend]:
    """获取本实例账号添加的好友列表.

    Returns:
        List[Friend]: 添加的好友.
    """
    result = [
        Friend.parse_obj(i)
        for i in await self.connection.call(
            "friendList",
            CallMethod.GET,
            {},
        )
    ]

    cache_set = self.launch_manager.get_interface(Memcache).set
    await asyncio.gather(
        *(cache_set(f"account.{self.account}.friend.{int(i)}", i, timedelta(seconds=120)) for i in result)
    )
    return result

get_friend_profile async 🔗

get_friend_profile(friend: Union[Friend, int]) -> Profile

获取好友的 Profile.

Parameters:

Returns:

  • Profile( Profile ) –

    找到的 Profile.

Source code in src/graia/ariadne/app.py
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
@ariadne_api
async def get_friend_profile(self, friend: Union[Friend, int]) -> Profile:
    """获取好友的 Profile.

    Args:
        friend (Union[Friend, int]): 查找的好友.

    Returns:
        Profile: 找到的 Profile.
    """
    result = await self.connection.call(
        "friendProfile",
        CallMethod.GET,
        {
            "target": int(friend),
        },
    )
    return Profile.parse_obj(result)

get_group async 🔗

get_group(
    group_id: int, *, assertion: bool = False, cache: bool = False
) -> Optional[Group]

尝试从已知的群组唯一ID, 获取对应群组的信息; 可能返回 None.

Parameters:

  • group_id (int) –

    尝试获取的群组的唯一 ID.

  • assertion (bool) –

    是否强制验证. Defaults to False.

  • cache (bool) –

    是否使用缓存. Defaults to False.

Returns:

Source code in src/graia/ariadne/app.py
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
@ariadne_api
async def get_group(
    self, group_id: int, *, assertion: bool = False, cache: bool = False
) -> Optional[Group]:
    """尝试从已知的群组唯一ID, 获取对应群组的信息; 可能返回 None.

    Args:
        group_id (int): 尝试获取的群组的唯一 ID.
        assertion (bool, optional): 是否强制验证. Defaults to False.
        cache (bool, optional): 是否使用缓存. Defaults to False.

    Returns:
        Group: 操作成功, 你得到了你应得的.
        None: 未能获取到.
    """
    cache_get = self.launch_manager.get_interface(Memcache).get
    key = f"account.{self.account}.group.{group_id}"

    if cache and (group := await cache_get(key)):
        return group

    await self.get_group_list()

    if group := await cache_get(key):
        return group

    if assertion:
        raise ValueError(f"Group {group_id} not found.")

get_group_config async 🔗

get_group_config(group: Union[Group, int]) -> GroupConfig

获取指定群组的群设置

Parameters:

  • group (Union[Group, int]) –

    需要获取群设置的指定群组

Returns:

  • GroupConfig( GroupConfig ) –

    指定群组的群设置

Source code in src/graia/ariadne/app.py
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
@ariadne_api
async def get_group_config(self, group: Union[Group, int]) -> GroupConfig:
    """
    获取指定群组的群设置

    Args:
        group (Union[Group, int]): 需要获取群设置的指定群组

    Returns:
        GroupConfig: 指定群组的群设置
    """
    result = await self.connection.call(
        "groupConfig",
        CallMethod.RESTGET,
        {
            "target": group.id if isinstance(group, Group) else group,
        },
    )

    return GroupConfig.parse_obj({camel_to_snake(k): v for k, v in result.items()})

get_group_list async 🔗

get_group_list() -> List[Group]

获取本实例账号加入的群组列表.

Returns:

  • List[Group]

    List[Group]: 加入的群组.

Source code in src/graia/ariadne/app.py
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
@ariadne_api
async def get_group_list(self) -> List[Group]:
    """获取本实例账号加入的群组列表.

    Returns:
        List[Group]: 加入的群组.
    """
    result = [
        Group.parse_obj(i)
        for i in await self.connection.call(
            "groupList",
            CallMethod.GET,
            {},
        )
    ]

    cache_set = self.launch_manager.get_interface(Memcache).set
    await asyncio.gather(
        *(cache_set(f"account.{self.account}.group.{int(i)}", i, timedelta(120)) for i in result)
    )
    return result

get_member async 🔗

get_member(
    group: Union[Group, int], member_id: int, *, cache: bool = False
) -> Member

尝试从已知的群组唯一 ID 和已知的群组成员的 ID, 获取对应成员的信息.

Parameters:

  • group (Union[Group, int]) –

    已知的群组唯一 ID

  • member_id (int) –

    已知的群组成员的 ID

  • cache (bool) –

    是否使用缓存. Defaults to False.

Returns:

  • Member( Member ) –

    对应群成员对象

Source code in src/graia/ariadne/app.py
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
@ariadne_api
async def get_member(self, group: Union[Group, int], member_id: int, *, cache: bool = False) -> Member:
    """尝试从已知的群组唯一 ID 和已知的群组成员的 ID, 获取对应成员的信息.

    Args:
        group (Union[Group, int]): 已知的群组唯一 ID
        member_id (int): 已知的群组成员的 ID
        cache (bool, optional): 是否使用缓存. Defaults to False.

    Returns:
        Member: 对应群成员对象
    """
    interface = self.launch_manager.get_interface(Memcache)
    group_id = int(group)
    key = f"account.{self.account}.group.{group_id}.member.{member_id}"

    if cache and (member := await interface.get(key)):
        return member

    result = Member.parse_obj(
        await self.connection.call(
            "memberInfo",
            CallMethod.RESTGET,
            {
                "target": group_id,
                "memberId": member_id,
            },
        )
    )

    await asyncio.gather(
        interface.set(f"account.{self.account}.group.{group_id}", result.group, timedelta(seconds=120)),
        interface.set(key, result, timedelta(seconds=120)),
    )

    return result

get_member_list async 🔗

get_member_list(
    group: Union[Group, int], *, cache: bool = True
) -> List[Member]

尝试从已知的群组获取对应成员的列表.

Parameters:

  • group (Union[Group, int]) –

    已知的群组

  • cache (bool) –

    是否使用缓存. Defaults to True.

Returns:

  • List[Member]

    List[Member]: 群内成员的 Member 对象.

Source code in src/graia/ariadne/app.py
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
@ariadne_api
async def get_member_list(self, group: Union[Group, int], *, cache: bool = True) -> List[Member]:
    """尝试从已知的群组获取对应成员的列表.

    Args:
        group (Union[Group, int]): 已知的群组
        cache (bool, optional): 是否使用缓存. Defaults to True.

    Returns:
        List[Member]: 群内成员的 Member 对象.
    """
    group_id = int(group)

    result = [
        Member.parse_obj(i)
        for i in await (
            self.connection.call(
                "memberList",
                CallMethod.GET,
                {
                    "target": group_id,
                },
            )
            if cache
            else self.connection.call(
                "latestMemberList",
                CallMethod.GET,
                {
                    "target": group_id,
                    "memberIds": [],
                },
            )
        )
    ]

    cache_set = self.launch_manager.get_interface(Memcache).set

    await asyncio.gather(
        cache_set(f"account.{self.account}.group.{group_id}", result[0].group, timedelta(seconds=120)),
        *(
            cache_set(
                f"account.{self.account}.group.{group_id}.member.{int(i)}", i, timedelta(seconds=120)
            )
            for i in result
        ),
    )

    return result

get_member_profile async 🔗

get_member_profile(
    member: Union[Member, int], group: Optional[Union[Group, int]] = None
) -> Profile

获取群员的 Profile.

Parameters:

Raises:

Returns:

  • Profile( Profile ) –

    找到的 Profile 对象.

Source code in src/graia/ariadne/app.py
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
@ariadne_api
async def get_member_profile(
    self, member: Union[Member, int], group: Optional[Union[Group, int]] = None
) -> Profile:
    """获取群员的 Profile.

    Args:
        member (Union[Member, int]): 群员对象.
        group (Optional[Union[Group, int]], optional): \
            检索的群. 提供 Member 形式的 member 参数后可以不提供.

    Raises:
        ValueError: 没有提供可检索的群 ID.

    Returns:
        Profile: 找到的 Profile 对象.
    """
    member_id = member.id if isinstance(member, Member) else member
    group = group or (member.group if isinstance(member, Member) else None)
    group_id = group.id if isinstance(group, Group) else group
    if not group_id:
        raise ValueError("Missing necessary argument: group")
    result = await self.connection.call(
        "memberProfile",
        CallMethod.GET,
        {
            "target": group_id,
            "memberId": member_id,
        },
    )
    return Profile.parse_obj(result)

get_message_from_id async 🔗

get_message_from_id(
    message: Union[Source, int],
    target: Optional[
        Union[Friend, Group, Member, Stranger, Client, int]
    ] = None,
) -> Union[MessageEvent, ActiveMessage]

从 消息 ID 提取 消息事件.

Note

后端 Mirai HTTP API 版本 >= 2.6.0, 仅指定 message 时, 将尝试使用缓存获得消息事件或以当前事件来源作为 target.

Parameters:

Returns:

Source code in src/graia/ariadne/app.py
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
@ariadne_api
async def get_message_from_id(
    self,
    message: Union[Source, int],
    target: Optional[Union[Friend, Group, Member, Stranger, Client, int]] = None,
) -> Union[MessageEvent, ActiveMessage]:
    """从 消息 ID 提取 消息事件.

    Note:
        后端 Mirai HTTP API 版本 >= 2.6.0, 仅指定 message 时,
        将尝试使用缓存获得消息事件或以当前事件来源作为 target.

    Args:
        message (Union[Source, int]): 指定的消息.
        target (Union[Friend, Group, Member, Stranger, Client, int], optional): 指定的好友或群组. \
            message 类型为 Source 或 int 时必需.

    Returns:
        MessageEvent: 提取的事件.
    """

    if tuple(map(int, (await self.get_version(cache=True)).split("."))) >= (2, 6, 0):
        if target is not None:
            pass
        elif event := await self.launch_manager.get_interface(Memcache).get(
            f"account.{self.account}.message.{message}"
        ):
            return event
        elif (
            target := await DispatcherInterface.ctx.get().lookup_param(
                "target", Optional[Union[Friend, Group, Member, Stranger, Client]], None
            )
        ) is None:
            raise TypeError("get_message_from_id() missing 1 required positional argument: 'target'")

        params = {
            "messageId": int(message),
            "target": self.account if isinstance(target, Client) else int(target),
        }
    else:
        params = {
            "id": int(message),
        }

    return cast(
        Union[MessageEvent, ActiveMessage],
        build_event(await self.connection.call("messageFromId", CallMethod.GET, params)),
    )

get_roaming_message async 🔗

get_roaming_message(
    start: datetime, end: datetime, target: Union[Friend, int]
) -> List[FriendMessage]

获取漫游消息. 需要 Mirai API HTTP 2.6.0+.

Parameters:

Returns:

Source code in src/graia/ariadne/app.py
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
@ariadne_api
async def get_roaming_message(
    self, start: datetime, end: datetime, target: Union[Friend, int]
) -> List[FriendMessage]:
    """获取漫游消息. 需要 Mirai API HTTP 2.6.0+.

    Args:
        start (datetime): 起始时间.
        end (datetime): 结束时间.
        target (Union[Friend, int]): 漫游消息对象.

    Returns:
        List[FriendMessage]: 漫游消息列表.
    """
    target = target if isinstance(target, int) else target.id
    result = await self.connection.call(
        "roamingMessages",
        CallMethod.POST,
        {
            "target": target,
            "start": start.timestamp(),
            "end": end.timestamp(),
        },
    )

    return [FriendMessage.parse_obj(i) for i in result]

get_user_profile async 🔗

get_user_profile(target: Union[int, Friend, Member, Stranger]) -> Profile

获取任意 QQ 用户的 Profile. 需要 mirai-api-http 2.5.0+.

Parameters:

Returns:

  • Profile( Profile ) –

    找到的 Profile.

Source code in src/graia/ariadne/app.py
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
@ariadne_api
async def get_user_profile(self, target: Union[int, Friend, Member, Stranger]) -> Profile:
    """获取任意 QQ 用户的 Profile. 需要 mirai-api-http 2.5.0+.

    Args:
        target (Union[int, Friend, Member, Stranger]): 任意 QQ 用户.

    Returns:
        Profile: 找到的 Profile.
    """
    result = await self.connection.call(
        "userProfile",
        CallMethod.GET,
        {
            "target": int(target),
        },
    )
    return Profile.parse_obj(result)

get_version async 🔗

get_version(*, cache: bool = False) -> str

获取后端 Mirai HTTP API 版本.

Parameters:

  • cache (bool) –

    是否缓存结果, 默认为 False.

Returns:

  • str( str ) –

    版本信息.

Source code in src/graia/ariadne/app.py
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
@ariadne_api
async def get_version(self, *, cache: bool = False) -> str:
    """获取后端 Mirai HTTP API 版本.

    Args:
        cache (bool, optional): 是否缓存结果, 默认为 False.

    Returns:
        str: 版本信息.
    """
    interface = self.launch_manager.get_interface(Memcache)
    if cache and (version := await interface.get(f"account.{self.account}.version")):
        return version
    version = (await self.connection.call("about", CallMethod.GET, {}, in_session=False))["version"]
    await interface.set(f"account.{self.account}.version", version, timedelta(seconds=120))
    return version

kick_member async 🔗

kick_member(
    group: Union[Group, int],
    member: Union[Member, int],
    message: str = "",
    block: bool = False,
) -> None

将目标群组成员从指定群组踢出; 需要具有相应权限(管理员/群主)

Parameters:

  • group (Union[Group, int]) –

    指定的群组

  • member (Union[Member, int]) –

    指定的群成员(只能是普通群员或者是管理员, 后者则要求群主权限)

  • message (str) –

    对踢出对象要展示的消息

  • block (bool) –

    是否不再接受该成员加群申请

Returns:

  • None( None ) –

    没有返回.

Source code in src/graia/ariadne/app.py
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
@ariadne_api
async def kick_member(
    self, group: Union[Group, int], member: Union[Member, int], message: str = "", block: bool = False
) -> None:
    """
    将目标群组成员从指定群组踢出; 需要具有相应权限(管理员/群主)

    Args:
        group (Union[Group, int]): 指定的群组
        member (Union[Member, int]): 指定的群成员(只能是普通群员或者是管理员, 后者则要求群主权限)
        message (str, optional): 对踢出对象要展示的消息
        block (bool, optional): 是否不再接受该成员加群申请

    Returns:
        None: 没有返回.
    """
    await self.connection.call(
        "kick",
        CallMethod.POST,
        {
            "target": group.id if isinstance(group, Group) else group,
            "memberId": member.id if isinstance(member, Member) else member,
            "msg": message,
            "block": block,
        },
    )

launch_blocking classmethod 🔗

launch_blocking(stop_signals: Iterable[signal.Signals] = (signal.SIGINT))

以阻塞方式启动 Ariadne

Parameters:

Source code in src/graia/ariadne/app.py
301
302
303
304
305
306
307
308
309
310
311
312
313
314
@classmethod
def launch_blocking(cls, stop_signals: Iterable[signal.Signals] = (signal.SIGINT,)):
    """以阻塞方式启动 Ariadne

    Args:
        stop_signals (Iterable[signal.Signals], optional): 要监听的停止信号,默认为 `(signal.SIGINT,)`
    """
    if not cls.instances:
        raise ValueError("No account specified.")
    cls._patch_launch_manager()
    try:
        cls.launch_manager.launch_blocking(stop_signal=stop_signals)
    except asyncio.CancelledError:
        logger.info("Launch manager exited.", style="red")

make_directory async 🔗

make_directory(
    target: Union[Friend, Group, int], name: str, id: str = ""
) -> FileInfo

在指定位置创建新文件夹.

Parameters:

  • target (Union[Friend, Group, int]) –

    要列出文件的根位置, 为群组或好友或QQ号 (当前仅支持群组)

  • name (str) –

    要创建的文件夹名称.

  • id (str) –

    上级文件夹ID, 空串为根目录

Returns:

  • FileInfo( FileInfo ) –

    新创建文件夹的信息.

Source code in src/graia/ariadne/app.py
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
@ariadne_api
async def make_directory(
    self,
    target: Union[Friend, Group, int],
    name: str,
    id: str = "",
) -> FileInfo:
    """
    在指定位置创建新文件夹.

    Args:
        target (Union[Friend, Group, int]): 要列出文件的根位置, \
        为群组或好友或QQ号 (当前仅支持群组)
        name (str): 要创建的文件夹名称.
        id (str): 上级文件夹ID, 空串为根目录

    Returns:
        FileInfo: 新创建文件夹的信息.
    """
    if isinstance(target, Friend):
        raise NotImplementedError("Not implemented for friend")

    target = target.id if isinstance(target, Friend) else target
    target = target.id if isinstance(target, Group) else target

    result = await self.connection.call(
        "file_mkdir",
        CallMethod.POST,
        {
            "id": id,
            "directoryName": name,
            "target": target,
        },
    )

    return FileInfo.parse_obj(result)

modify_group_config async 🔗

modify_group_config(group: Union[Group, int], config: GroupConfig) -> None

修改指定群组的群设置; 需要具有相应权限(管理员/群主).

Parameters:

  • group (Union[Group, int]) –

    需要修改群设置的指定群组

  • config (GroupConfig) –

    经过修改后的群设置

Returns:

  • None( None ) –

    没有返回.

Source code in src/graia/ariadne/app.py
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
@ariadne_api
async def modify_group_config(self, group: Union[Group, int], config: GroupConfig) -> None:
    """修改指定群组的群设置; 需要具有相应权限(管理员/群主).

    Args:
        group (Union[Group, int]): 需要修改群设置的指定群组
        config (GroupConfig): 经过修改后的群设置

    Returns:
        None: 没有返回.
    """
    await self.connection.call(
        "groupConfig",
        CallMethod.RESTPOST,
        {
            "target": group.id if isinstance(group, Group) else group,
            "config": config.dict(exclude_unset=True, exclude_none=True, to_camel=True),
        },
    )

modify_member_admin async 🔗

modify_member_admin(
    assign: bool,
    member: Union[Member, int],
    group: Optional[Union[Group, int]] = None,
) -> None

修改一位群组成员管理员权限; 需要有相应权限(群主)

Parameters:

  • member (Union[Member, int]) –

    指定群成员, 可为 Member 实例, 若前设成立, 则不需要提供 group.

  • assign (bool) –

    是否设置群成员为管理员.

  • group (Optional[Union[Group, int]]) –

    如果 member 为 Member 实例, 则不需要提供本项, 否则需要. 默认为 None.

Raises:

  • TypeError

    提供了错误的参数, 阅读有关文档得到问题原因

  • PermissionError

    没有相应操作权限.

Returns:

  • None( None ) –

    没有返回.

Source code in src/graia/ariadne/app.py
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
@ariadne_api
async def modify_member_admin(
    self,
    assign: bool,
    member: Union[Member, int],
    group: Optional[Union[Group, int]] = None,
) -> None:
    """
    修改一位群组成员管理员权限; 需要有相应权限(群主)

    Args:
        member (Union[Member, int]): 指定群成员, 可为 Member 实例, 若前设成立, 则不需要提供 group.
        assign (bool): 是否设置群成员为管理员.
        group (Optional[Union[Group, int]], optional): \
            如果 member 为 Member 实例, 则不需要提供本项, 否则需要. 默认为 None.

    Raises:
        TypeError: 提供了错误的参数, 阅读有关文档得到问题原因
        PermissionError: 没有相应操作权限.

    Returns:
        None: 没有返回.
    """
    if group is None:
        if isinstance(member, Member):
            group = member.group
        else:
            raise TypeError(
                "you should give a Member instance if you cannot give a Group instance to me."
            )
    await self.connection.call(
        "memberAdmin",
        CallMethod.POST,
        {
            "target": group.id if isinstance(group, Group) else group,
            "memberId": member.id if isinstance(member, Member) else member,
            "assign": assign,
        },
    )

modify_member_info async 🔗

modify_member_info(
    member: Union[Member, int],
    info: MemberInfo,
    group: Optional[Union[Group, int]] = None,
) -> None

修改指定群组成员的可修改状态; 需要具有相应权限(管理员/群主).

Parameters:

  • member (Union[Member, int]) –

    指定的群组成员, 可为 Member 实例, 若前设成立, 则不需要提供 group.

  • info (MemberInfo) –

    已修改的指定群组成员的可修改状态

  • group (Optional[Union[Group, int]]) –

    如果 member 为 Member 实例, 则不需要提供本项, 否则需要. 默认为 None.

Raises:

  • TypeError

    提供了错误的参数, 阅读有关文档得到问题原因

Returns:

  • None( None ) –

    没有返回.

Source code in src/graia/ariadne/app.py
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
@ariadne_api
async def modify_member_info(
    self,
    member: Union[Member, int],
    info: MemberInfo,
    group: Optional[Union[Group, int]] = None,
) -> None:
    """
    修改指定群组成员的可修改状态; 需要具有相应权限(管理员/群主).

    Args:
        member (Union[Member, int]): \
            指定的群组成员, 可为 Member 实例, 若前设成立, 则不需要提供 group.
        info (MemberInfo): 已修改的指定群组成员的可修改状态
        group (Optional[Union[Group, int]], optional): \
            如果 member 为 Member 实例, 则不需要提供本项, 否则需要. 默认为 None.

    Raises:
        TypeError: 提供了错误的参数, 阅读有关文档得到问题原因

    Returns:
        None: 没有返回.
    """
    if group is None:
        if isinstance(member, Member):
            group = member.group
        else:
            raise TypeError(
                "you should give a Member instance if you cannot give a Group instance to me."
            )
    await self.connection.call(
        "memberInfo",
        CallMethod.RESTPOST,
        {
            "target": group.id if isinstance(group, Group) else group,
            "memberId": member.id if isinstance(member, Member) else member,
            "info": info.dict(exclude_none=True, exclude_unset=True),
        },
    )

move_file async 🔗

move_file(
    target: Union[Friend, Group, int], id: str = "", dest_id: str = ""
) -> None

移动指定文件.

Parameters:

  • target (Union[Friend, Group, int]) –

    要列出文件的根位置, 为群组或好友或QQ号 (当前仅支持群组)

  • id (str) –

    源文件ID

  • dest_id (str) –

    目标文件夹ID

Returns:

  • None( None ) –

    没有返回.

Source code in src/graia/ariadne/app.py
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
@ariadne_api
async def move_file(
    self,
    target: Union[Friend, Group, int],
    id: str = "",
    dest_id: str = "",
) -> None:
    """
    移动指定文件.

    Args:
        target (Union[Friend, Group, int]): 要列出文件的根位置, \
        为群组或好友或QQ号 (当前仅支持群组)
        id (str): 源文件ID
        dest_id (str): 目标文件夹ID

    Returns:
        None: 没有返回.
    """
    if isinstance(target, Friend):
        raise NotImplementedError("Not implemented for friend")

    target = target.id if isinstance(target, Friend) else target
    target = target.id if isinstance(target, Group) else target

    await self.connection.call(
        "file_move",
        CallMethod.POST,
        {
            "id": id,
            "target": target,
            "moveTo": dest_id,
        },
    )

mute_all async 🔗

mute_all(group: Union[Group, int]) -> None

在指定群组开启全体禁言, 需要当前会话账号在指定群主有相应权限(管理员或者群主权限)

Parameters:

Returns:

  • None( None ) –

    没有返回.

Source code in src/graia/ariadne/app.py
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
@ariadne_api
async def mute_all(self, group: Union[Group, int]) -> None:
    """在指定群组开启全体禁言, 需要当前会话账号在指定群主有相应权限(管理员或者群主权限)

    Args:
        group (Union[Group, int]): 指定的群组.

    Returns:
        None: 没有返回.
    """
    await self.connection.call(
        "muteAll",
        CallMethod.POST,
        {
            "target": group.id if isinstance(group, Group) else group,
        },
    )

mute_member async 🔗

mute_member(
    group: Union[Group, int], member: Union[Member, int], time: int
) -> None

在指定群组禁言指定群成员; 需要具有相应权限(管理员/群主); time 不得大于 30*24*60*60=2592000 或小于 0, 否则会自动修正; 当 time 小于等于 0 时, 不会触发禁言操作; 禁言对象极有可能触发 PermissionError, 在这之前请对其进行判断!

Parameters:

  • group (Union[Group, int]) –

    指定的群组

  • member (Union[Member, int]) –

    指定的群成员(只能是普通群员或者是管理员, 后者则要求群主权限)

  • time (int) –

    禁言事件, 单位秒, 修正规则: 0 < time <= 2592000

Raises:

Returns:

  • None( None ) –

    没有返回.

Source code in src/graia/ariadne/app.py
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
@ariadne_api
async def mute_member(self, group: Union[Group, int], member: Union[Member, int], time: int) -> None:
    """
    在指定群组禁言指定群成员; 需要具有相应权限(管理员/群主);
    `time` 不得大于 `30*24*60*60=2592000` 或小于 `0`, 否则会自动修正;
    当 `time` 小于等于 `0` 时, 不会触发禁言操作;
    禁言对象极有可能触发 `PermissionError`, 在这之前请对其进行判断!

    Args:
        group (Union[Group, int]): 指定的群组
        member (Union[Member, int]): 指定的群成员(只能是普通群员或者是管理员, 后者则要求群主权限)
        time (int): 禁言事件, 单位秒, 修正规则: `0 < time <= 2592000`

    Raises:
        PermissionError: 没有相应操作权限.

    Returns:
        None: 没有返回.
    """
    time = max(0, min(time, 2592000))  # Fix time parameter
    if not time:
        return
    await self.connection.call(
        "mute",
        CallMethod.POST,
        {
            "target": group.id if isinstance(group, Group) else group,
            "memberId": member.id if isinstance(member, Member) else member,
            "time": time,
        },
    )

publish_announcement async 🔗

publish_announcement(
    target: Union[Group, int],
    content: str,
    *,
    send_to_new_member: bool = False,
    pinned: bool = False,
    show_edit_card: bool = False,
    show_popup: bool = False,
    require_confirmation: bool = False,
    image: Optional[Union[str, bytes, os.PathLike, io.IOBase]] = None
) -> Announcement

发布一个公告.

Parameters:

  • target (Union[Group, int]) –

    指定的群组.

  • content (str) –

    公告内容.

  • send_to_new_member (bool) –

    是否公开. 默认为 False.

  • pinned (bool) –

    是否置顶. 默认为 False.

  • show_edit_card (bool) –

    是否自动删除. 默认为 False.

  • show_popup (bool) –

    是否在阅读后自动删除. 默认为 False.

  • require_confirmation (bool) –

    是否需要确认. 默认为 False.

  • image (Union[str, bytes, os.PathLike, io.IOBase, Image]) –

    图片. 默认为 None. 为 str 时代表 url, 为 bytes / os.PathLike / io.IOBase 代表原始数据

Raises:

  • TypeError

    提供了错误的参数, 阅读有关文档得到问题原因

Returns:

Source code in src/graia/ariadne/app.py
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
@ariadne_api
async def publish_announcement(
    self,
    target: Union[Group, int],
    content: str,
    *,
    send_to_new_member: bool = False,
    pinned: bool = False,
    show_edit_card: bool = False,
    show_popup: bool = False,
    require_confirmation: bool = False,
    image: Optional[Union[str, bytes, os.PathLike, io.IOBase]] = None,
) -> Announcement:
    """
    发布一个公告.

    Args:
        target (Union[Group, int]): 指定的群组.
        content (str): 公告内容.
        send_to_new_member (bool, optional): 是否公开. 默认为 False.
        pinned (bool, optional): 是否置顶. 默认为 False.
        show_edit_card (bool, optional): 是否自动删除. 默认为 False.
        show_popup (bool, optional): 是否在阅读后自动删除. 默认为 False.
        require_confirmation (bool, optional): 是否需要确认. 默认为 False.
        image (Union[str, bytes, os.PathLike, io.IOBase, Image], optional): 图片. 默认为 None. \
        为 str 时代表 url, 为 bytes / os.PathLike / io.IOBase 代表原始数据

    Raises:
        TypeError: 提供了错误的参数, 阅读有关文档得到问题原因

    Returns:
        None: 没有返回.
    """
    data: Dict[str, Any] = {
        "target": int(target),
        "content": content,
        "sendToNewMember": send_to_new_member,
        "pinned": pinned,
        "showEditCard": show_edit_card,
        "showPopup": show_popup,
        "requireConfirmation": require_confirmation,
    }

    if image:
        if isinstance(image, bytes):
            data["imageBase64"] = base64.b64encode(image).decode("ascii")
        elif isinstance(image, os.PathLike):
            data["imageBase64"] = base64.b64encode(open(image, "rb").read()).decode("ascii")
        elif isinstance(image, io.IOBase):
            data["imageBase64"] = base64.b64encode(image.read()).decode("ascii")
        elif isinstance(image, str):
            data["imageUrl"] = image

    result = await self.connection.call(
        "anno_publish",
        CallMethod.POST,
        data,
    )
    return Announcement.parse_obj(result)

quit_group async 🔗

quit_group(group: Union[Group, int]) -> None

主动从指定群组退出

Parameters:

Returns:

  • None( None ) –

    没有返回.

Source code in src/graia/ariadne/app.py
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
@ariadne_api
async def quit_group(self, group: Union[Group, int]) -> None:
    """
    主动从指定群组退出

    Args:
        group (Union[Group, int]): 需要退出的指定群组

    Returns:
        None: 没有返回.
    """
    await self.connection.call(
        "quit",
        CallMethod.POST,
        {
            "target": group.id if isinstance(group, Group) else group,
        },
    )

recall_message async 🔗

recall_message(
    message: Union[MessageEvent, ActiveMessage, Source, int],
    target: Optional[
        Union[Friend, Group, Member, Stranger, Client, int]
    ] = None,
) -> None

撤回指定的消息; 撤回自己的消息需要在发出后 2 分钟内才能成功撤回; 如果在群组内, 需要撤回他人的消息则需要管理员/群主权限.

Note

后端 Mirai HTTP API 版本 >= 2.6.0, 仅指定 message 且类型为 Source 或 int 时, 将尝试使用缓存获得消息事件或以当前事件来源作为 target.

Parameters:

Returns:

  • None( None ) –

    没有返回

Source code in src/graia/ariadne/app.py
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
@ariadne_api
async def recall_message(
    self,
    message: Union[MessageEvent, ActiveMessage, Source, int],
    target: Optional[Union[Friend, Group, Member, Stranger, Client, int]] = None,
) -> None:
    """撤回指定的消息;
    撤回自己的消息需要在发出后 2 分钟内才能成功撤回;
    如果在群组内, 需要撤回他人的消息则需要管理员/群主权限.

    Note:
        后端 Mirai HTTP API 版本 >= 2.6.0, 仅指定 message 且类型为 Source 或 int 时, \
            将尝试使用缓存获得消息事件或以当前事件来源作为 target.

    Args:
        message (Union[MessageEvent, ActiveMessage, Source, int]): 指定的消息.
        target (Union[Friend, Group, Member, Stranger, Client, int], optional): 指定的好友或群组. \
            message 类型为 Source 或 int 时必需.

    Returns:
        None: 没有返回
    """
    if target is not None:
        pass
    elif isinstance(message, GroupMessage):
        target = message.sender.group
    elif isinstance(message, MessageEvent):
        target = message.sender
    elif isinstance(message, ActiveMessage):
        target = message.subject

    if tuple(map(int, (await self.get_version(cache=True)).split("."))) >= (2, 6, 0):
        if target is not None:
            pass
        elif event := await self.launch_manager.get_interface(Memcache).get(
            f"account.{self.account}.message.{int(message)}"
        ):
            return await self.recall_message(event)
        elif (
            target := await DispatcherInterface.ctx.get().lookup_param(
                "target", Union[Friend, Group, Member, Stranger, Client, None], None
            )
        ) is None:
            raise TypeError("recall_message() missing 1 required positional argument: 'target'")

        params = {
            "messageId": int(message),
            "target": self.account if isinstance(target, Client) else int(target),
        }
    else:
        params = {
            "target": int(message),
        }

    await self.connection.call("recall", CallMethod.POST, params)

register_command async 🔗

register_command(
    name: str, alias: Iterable[str] = (), usage: str = "", description: str = ""
) -> None

注册一个 mirai-console 指令

Parameters:

  • name (str) –

    指令名

  • alias (Iterable[str]) –

    指令别名. Defaults to ().

  • usage (str) –

    使用方法字符串. Defaults to "".

  • description (str) –

    描述字符串. Defaults to "".

Source code in src/graia/ariadne/app.py
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
@ariadne_api
async def register_command(
    self, name: str, alias: Iterable[str] = (), usage: str = "", description: str = ""
) -> None:
    """注册一个 mirai-console 指令

    Args:
        name (str): 指令名
        alias (Iterable[str], optional): 指令别名. Defaults to ().
        usage (str, optional): 使用方法字符串. Defaults to "".
        description (str, optional): 描述字符串. Defaults to "".

    """
    await self.connection.call(
        "cmd_register",
        CallMethod.POST,
        {
            "name": name,
            "alias": alias,
            "usage": usage,
            "description": description,
        },
    )

rename_file async 🔗

rename_file(
    target: Union[Friend, Group, int], id: str = "", dest_name: str = ""
) -> None

重命名指定文件.

Parameters:

  • target (Union[Friend, Group, int]) –

    要列出文件的根位置, 为群组或好友或QQ号 (当前仅支持群组)

  • id (str) –

    源文件ID

  • dest_name (str) –

    目标文件新名称.

Returns:

  • None( None ) –

    没有返回.

Source code in src/graia/ariadne/app.py
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
@ariadne_api
async def rename_file(
    self,
    target: Union[Friend, Group, int],
    id: str = "",
    dest_name: str = "",
) -> None:
    """
    重命名指定文件.

    Args:
        target (Union[Friend, Group, int]): 要列出文件的根位置, \
        为群组或好友或QQ号 (当前仅支持群组)
        id (str): 源文件ID
        dest_name (str): 目标文件新名称.

    Returns:
        None: 没有返回.
    """
    if isinstance(target, Friend):
        raise NotImplementedError("Not implemented for friend")

    target = target.id if isinstance(target, Friend) else target
    target = target.id if isinstance(target, Group) else target

    await self.connection.call(
        "file_rename",
        CallMethod.POST,
        {
            "id": id,
            "target": target,
            "renameTo": dest_name,
        },
    )

send_friend_message async 🔗

send_friend_message(
    target: Union[Friend, int],
    message: MessageContainer,
    *,
    quote: Optional[Union[Source, int]] = None,
    action: Union[SendMessageActionProtocol, Literal[Sentinel], None] = Sentinel
) -> ActiveFriendMessage

发送消息给好友, 可以指定回复的消息.

Parameters:

  • target (Union[Friend, int]) –

    指定的好友

  • message (MessageContainer) –

    有效的消息容器.

  • quote (Optional[Union[Source, int]]) –

    需要回复的消息, 不要忽视我啊喂?!!, 默认为 None.

Returns:

  • ActiveFriendMessage( ActiveFriendMessage ) –

    即当前会话账号所发出消息的事件, 可用于回复.

Source code in src/graia/ariadne/app.py
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
@ariadne_api
async def send_friend_message(
    self,
    target: Union[Friend, int],
    message: MessageContainer,
    *,
    quote: Optional[Union[Source, int]] = None,
    action: Union[SendMessageActionProtocol, Literal[Sentinel], None] = Sentinel,
) -> ActiveFriendMessage:
    """发送消息给好友, 可以指定回复的消息.

    Args:
        target (Union[Friend, int]): 指定的好友
        message (MessageContainer): 有效的消息容器.
        quote (Optional[Union[Source, int]], optional): 需要回复的消息, 不要忽视我啊喂?!!, 默认为 None.

    Returns:
        ActiveFriendMessage: 即当前会话账号所发出消息的事件, 可用于回复.
    """
    from .event.message import ActiveFriendMessage

    message = MessageChain(message)
    if isinstance(quote, MessageChain):
        raise TypeError(
            "Using MessageChain as quote target is removed! Get a `Source` from event instead!"
        )

    if action is not None:  # TODO: REFACTOR
        return cast(
            ActiveFriendMessage,
            await self.send_message(
                (
                    await self.get_friend(target, assertion=True, cache=True)
                    if isinstance(target, int)
                    else target
                ),
                message,
                quote=quote or False,
                action=action,
            ),
        )

    if isinstance(quote, Source):
        quote = quote.id

    with enter_message_send_context(UploadMethod.Friend):
        message = message.as_sendable()
        try:
            result = await self.connection.call(
                "sendFriendMessage",
                CallMethod.POST,
                {
                    "target": int(target),
                    "messageChain": message.dict()["__root__"],
                    **({"quote": quote} if quote else {}),
                },
            )
            event = ActiveFriendMessage(
                messageChain=MessageChain(message),
                source=Source(id=result["messageId"], time=datetime.now()),
                subject=(await self.get_friend(int(target), assertion=True, cache=True)),
            )
            with enter_context(self, event):
                await self.log_config.log(self, event)
                self.service.broadcast.postEvent(event)
            if result["messageId"] < 0:
                logger.warning("Failed to send message, your account may be blocked.")
            return event
        except UnknownTarget:
            await self.launch_manager.get_interface(Memcache).delete(
                f"account.{self.account}.friend.{int(target)}"
            )
            raise

send_group_message async 🔗

send_group_message(
    target: Union[Group, Member, int],
    message: MessageContainer,
    *,
    quote: Optional[Union[Source, int]] = None,
    action: Union[SendMessageActionProtocol, Literal[Sentinel], None] = Sentinel
) -> ActiveGroupMessage

发送消息到群组内, 可以指定回复的消息.

Parameters:

  • target (Union[Group, Member, int]) –

    指定的群组, 可以是群组的 ID 也可以是 Group 或 Member 实例.

  • message (MessageContainer) –

    有效的消息容器.

  • quote (Optional[Union[Source, int]]) –

    需要回复的消息, 不要忽视我啊喂?!!, 默认为 None.

  • action (SendMessageActionProtocol) –

    消息发送的处理 action

Returns:

  • ActiveGroupMessage( ActiveGroupMessage ) –

    即当前会话账号所发出消息的事件, 可用于回复.

Source code in src/graia/ariadne/app.py
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
@ariadne_api
async def send_group_message(
    self,
    target: Union[Group, Member, int],
    message: MessageContainer,
    *,
    quote: Optional[Union[Source, int]] = None,
    action: Union[SendMessageActionProtocol, Literal[Sentinel], None] = Sentinel,
) -> ActiveGroupMessage:
    """发送消息到群组内, 可以指定回复的消息.

    Args:
        target (Union[Group, Member, int]): 指定的群组, 可以是群组的 ID 也可以是 Group 或 Member 实例.
        message (MessageContainer): 有效的消息容器.
        quote (Optional[Union[Source, int]], optional): 需要回复的消息, 不要忽视我啊喂?!!, 默认为 None.
        action (SendMessageActionProtocol, optional): 消息发送的处理 action

    Returns:
        ActiveGroupMessage: 即当前会话账号所发出消息的事件, 可用于回复.
    """
    from .event.message import ActiveGroupMessage

    message = MessageChain(message)
    if isinstance(target, Member):
        target = target.group

    if action is not None:  # TODO: REFACTOR
        return cast(
            ActiveGroupMessage,
            await self.send_message(
                (
                    await self.get_group(target, assertion=True, cache=True)
                    if isinstance(target, int)
                    else target
                ),
                message,
                quote=quote or False,
                action=action,
            ),
        )

    if isinstance(quote, MessageChain):
        raise TypeError(
            "Using MessageChain as quote target is removed! Get a `Source` from event instead!"
        )

    if isinstance(quote, Source):
        quote = quote.id

    with enter_message_send_context(UploadMethod.Group):
        message = message.as_sendable().copy()
        try:
            result = await self.connection.call(
                "sendGroupMessage",
                CallMethod.POST,
                {
                    "target": int(target),
                    "messageChain": message.dict()["__root__"],
                    **({"quote": quote} if quote else {}),
                },
            )
            event = ActiveGroupMessage(
                messageChain=MessageChain(message),
                source=Source(id=result["messageId"], time=datetime.now()),
                subject=(await self.get_group(int(target), assertion=True, cache=True)),
            )
            with enter_context(self, event):
                await self.log_config.log(self, event)
                self.service.broadcast.postEvent(event)
            if result["messageId"] < 0:
                logger.warning("Failed to send message, your account may be blocked.")
            return event
        except UnknownTarget:
            await self.launch_manager.get_interface(Memcache).delete(
                f"account.{self.account}.group.{int(target)}"
            )
            raise

send_message async 🔗

send_message(
    target: Union[MessageEvent, Group, Friend, Member],
    message: MessageContainer,
    *,
    quote: Union[bool, int, Source] = False,
    action: Union[SendMessageActionProtocol[T], Literal[Sentinel]] = Sentinel
) -> T

依据传入的 target 自动发送消息.

请注意发送给群成员时会自动作为临时消息发送.

Parameters:

  • target (Union[MessageEvent, Group, Friend, Member]) –

    消息发送目标.

  • message (Union[MessageChain, List[Union[Element, str]], str]) –

    要发送的消息链.

  • quote (Union[bool, int, Source]) –

    若为布尔类型, 则会尝试通过传入对象解析要回复的消息, 否则会视为 messageId 处理.

  • action (SendMessageCaller[T]) –

    消息发送的处理 action, 可以在 graia.ariadne.util.send 查看自带的 action, 未传入使用默认 action

Returns:

  • T

    Union[T, R]: 默认实现为 ActiveMessage

Source code in src/graia/ariadne/app.py
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
@ariadne_api
async def send_message(
    self,
    target: Union[MessageEvent, Group, Friend, Member],
    message: MessageContainer,
    *,
    quote: Union[bool, int, Source] = False,
    action: Union[SendMessageActionProtocol["T"], Literal[Sentinel]] = Sentinel,
) -> "T":
    """
    依据传入的 `target` 自动发送消息.

    请注意发送给群成员时会自动作为临时消息发送.

    Args:
        target (Union[MessageEvent, Group, Friend, Member]): 消息发送目标.
        message (Union[MessageChain, List[Union[Element, str]], str]): 要发送的消息链.
        quote (Union[bool, int, Source]): 若为布尔类型, 则会尝试通过传入对象解析要回复的消息, \
        否则会视为 `messageId` 处理.
        action (SendMessageCaller[T], optional): 消息发送的处理 action, \
        可以在 graia.ariadne.util.send 查看自带的 action, \
        未传入使用默认 action

    Returns:
        Union[T, R]: 默认实现为 ActiveMessage
    """
    action = action if action is not Sentinel else self.default_send_action
    data: Dict[Any, Any] = {"message": MessageChain(message)}
    # quote
    if isinstance(quote, bool):
        if quote:
            if isinstance(target, MessageEvent):
                data["quote"] = target.source
            else:
                raise TypeError("Passing `quote=True` is only valid when passing a MessageEvent.")
    elif isinstance(quote, (int, Source)):
        data["quote"] = quote
    elif isinstance(quote, MessageChain):
        raise TypeError(
            "Using MessageChain as quote target is removed! Get a `Source` from event instead!"
        )
    # target: MessageEvent
    if isinstance(target, GroupMessage):
        data["target"] = target.sender.group
    elif isinstance(target, (FriendMessage, TempMessage)):
        data["target"] = target.sender
    else:  # target: sender
        data["target"] = target
    send_data: SendMessageDict = SendMessageDict(**data)
    # send message
    data = await action.param(send_data)  # type: ignore

    try:
        if isinstance(data["target"], Friend):
            val = await self.send_friend_message(**data, action=None)
        elif isinstance(data["target"], Group):
            val = await self.send_group_message(**data, action=None)
        elif isinstance(data["target"], Member):
            val = await self.send_temp_message(**data, action=None)
        else:
            logger.warning(
                f"Unable to send {data['message']} to {data['target']} of type {type(data['target'])}"
            )
            return await action.result(
                ActiveMessage(
                    type="Unknown",
                    messageChain=MessageChain(data["message"]),
                    source=Source(id=-1, time=datetime.now()),
                    subject=data["target"],
                )
            )
    except SendMessageException as e:
        e.send_data = send_data  # type: ignore
        return await action.exception(e)
    else:
        return await action.result(val)

send_nudge async 🔗

send_nudge(
    target: Union[Friend, Member, int],
    group: Optional[Union[Group, int]] = None,
) -> None

向指定的群组成员或好友发送戳一戳消息.

Parameters:

Returns:

  • None( None ) –

    没有返回.

Source code in src/graia/ariadne/app.py
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
@ariadne_api
async def send_nudge(
    self, target: Union[Friend, Member, int], group: Optional[Union[Group, int]] = None
) -> None:
    """
    向指定的群组成员或好友发送戳一戳消息.

    Args:
        target (Union[Friend, Member]): 发送戳一戳的目标.
        group (Union[Group, int], optional): 发送的群组.

    Returns:
        None: 没有返回.
    """
    target_id = target if isinstance(target, int) else target.id

    subject_id = (group.id if isinstance(group, Group) else group) or (
        target.group.id if isinstance(target, Member) else target_id
    )
    kind = "Group" if group or isinstance(target, Member) else "Friend"
    await self.connection.call(
        "sendNudge",
        CallMethod.POST,
        {
            "target": target_id,
            "subject": subject_id,
            "kind": kind,
        },
    )

send_temp_message async 🔗

send_temp_message(
    target: Union[Member, int],
    message: MessageContainer,
    group: Optional[Union[Group, int]] = None,
    *,
    quote: Optional[Union[Source, int]] = None,
    action: Union[SendMessageActionProtocol, Literal[Sentinel], None] = Sentinel
) -> ActiveTempMessage

发送临时会话给群组中的特定成员, 可指定回复的消息.

Warning

本 API 大概率会导致账号风控/冻结. 请谨慎使用.

Parameters:

  • group (Union[Group, int]) –

    指定的群组, 可以是群组的 ID 也可以是 Group 实例.

  • target (Union[Member, int]) –

    指定的群组成员, 可以是成员的 ID 也可以是 Member 实例.

  • message (MessageContainer) –

    有效的消息容器.

  • quote (Optional[Union[Source, int]]) –

    需要回复的消息, 不要忽视我啊喂?!!, 默认为 None.

  • action (SendMessageActionProtocol) –

    消息发送的处理 action

Returns:

  • ActiveTempMessage( ActiveTempMessage ) –

    即当前会话账号所发出消息的事件, 可用于回复.

Source code in src/graia/ariadne/app.py
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
@ariadne_api
async def send_temp_message(
    self,
    target: Union[Member, int],
    message: MessageContainer,
    group: Optional[Union[Group, int]] = None,
    *,
    quote: Optional[Union[Source, int]] = None,
    action: Union[SendMessageActionProtocol, Literal[Sentinel], None] = Sentinel,
) -> ActiveTempMessage:
    """发送临时会话给群组中的特定成员, 可指定回复的消息.

    Warning:
        本 API 大概率会导致账号风控/冻结. 请谨慎使用.

    Args:
        group (Union[Group, int]): 指定的群组, 可以是群组的 ID 也可以是 Group 实例.
        target (Union[Member, int]): 指定的群组成员, 可以是成员的 ID 也可以是 Member 实例.
        message (MessageContainer): 有效的消息容器.
        quote (Optional[Union[Source, int]], optional): 需要回复的消息, 不要忽视我啊喂?!!, 默认为 None.
        action (SendMessageActionProtocol, optional): 消息发送的处理 action

    Returns:
        ActiveTempMessage: 即当前会话账号所发出消息的事件, 可用于回复.
    """
    from .event.message import ActiveTempMessage

    message = MessageChain(message)

    if isinstance(quote, MessageChain):
        raise TypeError(
            "Using MessageChain as quote target is removed! Get a `Source` from event instead!"
        )

    new_msg = message.copy().as_sendable()
    group = target.group if (isinstance(target, Member) and not group) else group
    if not group:
        raise ValueError("Missing necessary argument: group")

    if action is not None:  # TODO: REFACTOR
        return cast(
            ActiveTempMessage,
            await self.send_message(
                await self.get_member(group, target, cache=True) if isinstance(target, int) else target,
                message,
                quote=quote or False,
                action=action,
            ),
        )

    if isinstance(quote, Source):
        quote = quote.id

    with enter_message_send_context(UploadMethod.Temp):
        try:
            result = await self.connection.call(
                "sendTempMessage",
                CallMethod.POST,
                {
                    "group": int(group),
                    "qq": int(target),
                    "messageChain": new_msg.dict()["__root__"],
                    **({"quote": quote} if quote else {}),
                },
            )
            event: ActiveTempMessage = ActiveTempMessage(
                messageChain=MessageChain(message),
                source=Source(id=result["messageId"], time=datetime.now()),
                subject=(await self.get_member(int(group), int(target), cache=True)),
            )
            with enter_context(self, event):
                await self.log_config.log(self, event)
                self.service.broadcast.postEvent(event)
            if result["messageId"] < 0:
                logger.warning("Failed to send message, your account may be limited.")
            return event
        except UnknownTarget:
            await self.launch_manager.get_interface(Memcache).delete(
                f"account.{self.account}.group.{int(group)}.member.{int(target)}"
            )
            raise

set_essence async 🔗

set_essence(
    message: Union[GroupMessage, ActiveGroupMessage, Source, int],
    target: Optional[Union[Group, int]] = None,
) -> None

添加指定消息为群精华消息; 需要具有相应权限(管理员/群主).

请自行判断消息来源是否为群组.

Note

后端 Mirai HTTP API 版本 >= 2.6.0, 仅指定 message 且类型为 Source 或 int 时, 将尝试使用缓存获得消息事件或以当前事件来源作为 target.

Parameters:

Returns:

  • None( None ) –

    没有返回.

Source code in src/graia/ariadne/app.py
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
@ariadne_api
async def set_essence(
    self,
    message: Union[GroupMessage, ActiveGroupMessage, Source, int],
    target: Optional[Union[Group, int]] = None,
) -> None:
    """
    添加指定消息为群精华消息; 需要具有相应权限(管理员/群主).

    请自行判断消息来源是否为群组.

    Note:
        后端 Mirai HTTP API 版本 >= 2.6.0, 仅指定 message 且类型为 Source 或 int 时, \
            将尝试使用缓存获得消息事件或以当前事件来源作为 target.

    Args:
        message (Union[GroupMessage, ActiveGroupMessage, Source, int]): 指定的消息.
        target (Union[Group, int], optional): 指定的群组. message 类型为 Source 或 int 时必需.

    Returns:
        None: 没有返回.
    """
    if isinstance(message, GroupMessage):
        target = message.sender.group
    elif isinstance(message, ActiveGroupMessage):
        target = message.subject

    if tuple(map(int, (await self.get_version(cache=True)).split("."))) >= (2, 6, 0):
        if target is not None:
            pass
        elif (
            event := await self.launch_manager.get_interface(Memcache).get(
                f"account.{self.account}.message.{int(message)}"
            )
        ) and isinstance(event, (GroupMessage, ActiveGroupMessage)):
            return await self.set_essence(event)
        elif (
            target := await DispatcherInterface.ctx.get().lookup_param("target", Optional[Group], None)
        ) is None:
            raise TypeError("set_essence() missing 1 required positional argument: 'target'")

        params = {
            "messageId": int(message),
            "target": int(target),
        }
    else:
        params = {
            "target": int(message),
        }

    await self.connection.call("setEssence", CallMethod.POST, params)

stop classmethod 🔗

stop()

计划停止 Ariadne

Source code in src/graia/ariadne/app.py
316
317
318
319
320
321
322
323
324
325
@classmethod
def stop(cls):
    """计划停止 Ariadne"""
    mgr = cls.launch_manager
    mgr.status.exiting = True
    if mgr.task_group is not None:
        mgr.task_group.stop = True
        task = mgr.task_group.blocking_task
        if task and not task.done():
            task.cancel()

unmute_all async 🔗

unmute_all(group: Union[Group, int]) -> None

在指定群组关闭全体禁言, 需要当前会话账号在指定群主有相应权限(管理员或者群主权限)

Parameters:

Returns:

  • None( None ) –

    没有返回.

Source code in src/graia/ariadne/app.py
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
@ariadne_api
async def unmute_all(self, group: Union[Group, int]) -> None:
    """在指定群组关闭全体禁言, 需要当前会话账号在指定群主有相应权限(管理员或者群主权限)

    Args:
        group (Union[Group, int]): 指定的群组.

    Returns:
        None: 没有返回.
    """
    await self.connection.call(
        "unmuteAll",
        CallMethod.POST,
        {
            "target": group.id if isinstance(group, Group) else group,
        },
    )

unmute_member async 🔗

unmute_member(group: Union[Group, int], member: Union[Member, int]) -> None

在指定群组解除对指定群成员的禁言; 需要具有相应权限(管理员/群主); 对象极有可能触发 PermissionError, 在这之前请对其进行判断!

Parameters:

  • group (Union[Group, int]) –

    指定的群组

  • member (Union[Member, int]) –

    指定的群成员(只能是普通群员或者是管理员, 后者则要求群主权限)

Raises:

Returns:

  • None( None ) –

    没有返回.

Source code in src/graia/ariadne/app.py
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
@ariadne_api
async def unmute_member(self, group: Union[Group, int], member: Union[Member, int]) -> None:
    """
    在指定群组解除对指定群成员的禁言;
    需要具有相应权限(管理员/群主);
    对象极有可能触发 `PermissionError`, 在这之前请对其进行判断!

    Args:
        group (Union[Group, int]): 指定的群组
        member (Union[Member, int]): 指定的群成员(只能是普通群员或者是管理员, 后者则要求群主权限)

    Raises:
        PermissionError: 没有相应操作权限.

    Returns:
        None: 没有返回.
    """
    await self.connection.call(
        "unmute",
        CallMethod.POST,
        {
            "target": group.id if isinstance(group, Group) else group,
            "memberId": member.id if isinstance(member, Member) else member,
        },
    )

upload_file async 🔗

upload_file(
    data: Union[bytes, IO[bytes], os.PathLike],
    method: Union[str, UploadMethod, None] = None,
    target: Union[Friend, Group, int] = -1,
    path: str = "",
    name: str = "",
) -> FileInfo

上传文件到指定目标, 需要提供: 文件的原始数据(bytes), 文件的上传类型, 上传目标, (可选)上传目录ID.

Parameters:

Returns:

Source code in src/graia/ariadne/app.py
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
@ariadne_api
async def upload_file(
    self,
    data: Union[bytes, IO[bytes], os.PathLike],
    method: Union[str, UploadMethod, None] = None,
    target: Union[Friend, Group, int] = -1,
    path: str = "",
    name: str = "",
) -> "FileInfo":
    """
    上传文件到指定目标, 需要提供: 文件的原始数据(bytes), 文件的上传类型, \
    上传目标, (可选)上传目录ID.

    Args:
        data (Union[bytes, IO[bytes], os.PathLike]): 文件的原始数据
        method (str | UploadMethod, optional): 文件的上传类型
        target (Union[Friend, Group, int]): 文件上传目标, 即群组
        path (str): 目标路径, 默认为根路径.
        name (str): 文件名, 可选, 若 path 存在斜杠可从 path 推断.

    Returns:
        FileInfo: 文件信息
    """
    method = str(method or UploadMethod[target.__class__.__name__]).lower()

    if method != "group":
        raise NotImplementedError(f"Not implemented for {method}")

    target = target.id if isinstance(target, (Friend, Group)) else target

    if "/" in path and not name:
        path, name = path.rsplit("/", 1)

    if isinstance(data, os.PathLike):
        data = open(data, "rb")

    result = await self.connection.call(
        "file_upload",
        CallMethod.MULTIPART,
        {
            "type": method,
            "target": str(target),
            "path": path,
            "file": {"value": data, **({"filename": name} if name else {})},
        },
    )

    return FileInfo.parse_obj(result)

upload_image async 🔗

upload_image(
    data: Union[bytes, IO[bytes], os.PathLike],
    method: Union[None, str, UploadMethod] = None,
) -> Image

上传一张图片到远端服务器, 需要提供: 图片的原始数据(bytes), 图片的上传类型.

Parameters:

Returns:

  • Image( Image ) –

    生成的图片消息元素

Source code in src/graia/ariadne/app.py
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
@ariadne_api
async def upload_image(
    self, data: Union[bytes, IO[bytes], os.PathLike], method: Union[None, str, UploadMethod] = None
) -> "Image":
    """上传一张图片到远端服务器, 需要提供: 图片的原始数据(bytes), 图片的上传类型.

    Args:
        data (Union[bytes, IO[bytes], os.PathLike]): 图片的原始数据
        method (str | UploadMethod, optional): 图片的上传类型, 可从上下文推断
    Returns:
        Image: 生成的图片消息元素
    """
    from .context import upload_method_ctx
    from .message.element import Image

    method = str(method or upload_method_ctx.get()).lower()

    if isinstance(data, os.PathLike):
        data = open(data, "rb")

    result = await self.connection.call(
        "uploadImage",
        CallMethod.MULTIPART,
        {
            "type": method,
            "img": data,
        },
    )

    return Image.parse_obj(result)

upload_voice async 🔗

upload_voice(
    data: Union[bytes, IO[bytes], os.PathLike],
    method: Union[None, str, UploadMethod] = None,
) -> Voice

上传语音到远端服务器, 需要提供: 语音的原始数据(bytes), 语音的上传类型.

Parameters:

Returns:

  • Voice( Voice ) –

    生成的语音消息元素

Source code in src/graia/ariadne/app.py
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
@ariadne_api
async def upload_voice(
    self, data: Union[bytes, IO[bytes], os.PathLike], method: Union[None, str, UploadMethod] = None
) -> "Voice":
    """上传语音到远端服务器, 需要提供: 语音的原始数据(bytes), 语音的上传类型.

    Args:
        data (Union[bytes, IO[bytes], os.PathLike]): 语音的原始数据
        method (str | UploadMethod, optional): 语音的上传类型, 可从上下文推断
    Returns:
        Voice: 生成的语音消息元素
    """
    from .context import upload_method_ctx
    from .message.element import Voice

    method = str(method or upload_method_ctx.get()).lower()

    if isinstance(data, os.PathLike):
        data = open(data, "rb")

    result = await self.connection.call(
        "uploadVoice",
        CallMethod.MULTIPART,
        {
            "type": method,
            "voice": data,
        },
    )

    return Voice.parse_obj(result)