File size: 44,961 Bytes
0aee47a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 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 |
"""
bilibili_api.user
用户相关
"""
import json
import time
from enum import Enum
from typing import List, Union, Tuple
from json.decoder import JSONDecodeError
from .utils.utils import get_api, join, raise_for_statement
from .utils.credential import Credential
from .exceptions import ResponseCodeException
from .utils.network import get_session, Api
from .channel_series import ChannelOrder, ChannelSeries, ChannelSeriesType
API = get_api("user")
class VideoOrder(Enum):
"""
视频排序顺序。
+ PUBDATE : 上传日期倒序。
+ FAVORITE: 收藏量倒序。
+ VIEW : 播放量倒序。
"""
PUBDATE = "pubdate"
FAVORITE = "stow"
VIEW = "click"
class MedialistOrder(Enum):
"""
medialist排序顺序。
+ PUBDATE : 上传日期。
+ PLAY : 播放量。
+ COLLECT : 收藏量。
"""
PUBDATE = 1
PLAY = 2
COLLECT = 3
class AudioOrder(Enum):
"""
音频排序顺序。
+ PUBDATE : 上传日期倒序。
+ FAVORITE: 收藏量倒序。
+ VIEW : 播放量倒序。
"""
PUBDATE = 1
VIEW = 2
FAVORITE = 3
class AlbumType(Enum):
"""
相册类型
+ ALL : 全部。
+ DRAW: 绘画。
+ PHOTO : 摄影。
+ DAILY : 日常。
"""
ALL = "all"
DRAW = "draw"
PHOTO = "photo"
DAILY = "daily"
class ArticleOrder(Enum):
"""
专栏排序顺序。
+ PUBDATE : 发布日期倒序。
+ FAVORITE: 收藏量倒序。
+ VIEW : 阅读量倒序。
"""
PUBDATE = "publish_time"
FAVORITE = "fav"
VIEW = "view"
class ArticleListOrder(Enum):
"""
文集排序顺序。
+ LATEST: 最近更新倒序。
+ VIEW : 总阅读量倒序。
"""
LATEST = 0
VIEW = 1
class BangumiType(Enum):
"""
番剧类型。
+ BANGUMI: 番剧。
+ DRAMA : 电视剧/纪录片等。
"""
BANGUMI = 1
DRAMA = 2
class RelationType(Enum):
"""
用户关系操作类型。
+ SUBSCRIBE : 关注。
+ UNSUBSCRIBE : 取关。
+ SUBSCRIBE_SECRETLY: 悄悄关注。已失效
+ BLOCK : 拉黑。
+ UNBLOCK : 取消拉黑。
+ REMOVE_FANS : 移除粉丝。
"""
SUBSCRIBE = 1
UNSUBSCRIBE = 2
# SUBSCRIBE_SECRETLY = 3
BLOCK = 5
UNBLOCK = 6
REMOVE_FANS = 7
class BangumiFollowStatus(Enum):
"""
番剧追番状态类型。
+ ALL : 全部
+ WANT : 想看
+ WATCHING : 在看
+ WATCHED : 已看
"""
ALL = 0
WANT = 1
WATCHING = 2
WATCHED = 3
class HistoryType(Enum):
"""
历史记录分类
+ ALL : 全部
+ archive : 稿件
+ live : 直播
+ article : 专栏
"""
ALL = "all"
archive = "archive"
live = "live"
article = "article"
class HistoryBusinessType(Enum):
"""
历史记录 Business 分类
+ archive:稿件
+ pgc:剧集(番剧 / 影视)
+ live:直播
+ article-list:文集
+ article:文章
"""
archive = "archive"
pgc = "pgc"
live = "live"
article_list = "article-list"
article = "article"
class OrderType(Enum):
"""
排序字段
+ desc:倒序
+ asc:正序
"""
desc = "desc"
asc = "asc"
async def name2uid_sync(names: Union[str, List[str]]):
"""
将用户名转为 uid
Args:
names (str/List[str]): 用户名
Returns:
dict: 调用 API 返回的结果
"""
if isinstance(names, str):
n = names
else:
n = ",".join(names)
params = {"names": n}
return Api(**API["info"]["name_to_uid"]).update_params(**params).result_sync
async def name2uid(names: Union[str, List[str]]):
"""
将用户名转为 uid
Args:
names (str/List[str]): 用户名
Returns:
dict: 调用 API 返回的结果
"""
if isinstance(names, str):
n = names
else:
n = ",".join(names)
params = {"names": n}
return await Api(**API["info"]["name_to_uid"]).update_params(**params).result
class User:
"""
用户相关
"""
def __init__(self, uid: int, credential: Union[Credential, None] = None):
"""
Args:
uid (int) : 用户 UID
credential (Credential | None, optional): 凭据. Defaults to None.
"""
self.__uid = uid
if credential is None:
credential = Credential()
self.credential = credential
self.__self_info = None
def get_user_info_sync(self) -> dict:
"""
获取用户信息(昵称,性别,生日,签名,头像 URL,空间横幅 URL 等)
Returns:
dict: 调用接口返回的内容。
[用户空间详细信息](https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/docs/user/info.md#%E7%94%A8%E6%88%B7%E7%A9%BA%E9%97%B4%E8%AF%A6%E7%BB%86%E4%BF%A1%E6%81%AF)
"""
params = {
"mid": self.__uid,
}
result = Api(
**API["info"]["info"], credential=self.credential, params=params
).result_sync
return result
async def get_user_info(self) -> dict:
"""
获取用户信息(昵称,性别,生日,签名,头像 URL,空间横幅 URL 等)
Returns:
dict: 调用接口返回的内容。
[用户空间详细信息](https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/docs/user/info.md#%E7%94%A8%E6%88%B7%E7%A9%BA%E9%97%B4%E8%AF%A6%E7%BB%86%E4%BF%A1%E6%81%AF)
"""
params = {
"mid": self.__uid,
}
return (
await Api(**API["info"]["info"], credential=self.credential)
.update_params(**params)
.result
)
async def __get_self_info(self) -> dict:
"""
获取自己的信息。如果存在缓存则使用缓存。
Returns:
dict: 调用接口返回的内容。
"""
if self.__self_info is not None:
return self.__self_info
self.__self_info = await self.get_user_info()
return self.__self_info
def get_uid(self) -> int:
"""
获取用户 UID
Returns:
int: 用户 UID
"""
return self.__uid
async def get_user_fav_tag(self, pn: int = 1, ps: int = 20) -> dict:
"""
获取用户关注的 Tag 信息,如果用户设为隐私,则返回 获取登录数据失败
Args:
pn (int, optional): 页码,从 1 开始. Defaults to 1.
ps (int, optional): 每页的数据量. Defaults to 20.
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["user_tag"]
params = {"vmid": self.__uid} # , "pn": pn, "ps": ps}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_space_notice(self) -> dict:
"""
获取用户空间公告
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["space_notice"]
params = {"mid": self.__uid}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def set_space_notice(self, content: str = "") -> dict:
"""
修改用户空间公告
Args:
content(str): 需要修改的内容
Returns:
dict: 调用接口返回的内容。
"""
self.credential.raise_for_no_sessdata()
self.credential.raise_for_no_bili_jct()
api = API["operate"]["set_space_notice"]
data = {"notice": content}
return await Api(**api, credential=self.credential).update_data(**data).result
async def get_relation_info(self) -> dict:
"""
获取用户关系信息(关注数,粉丝数,悄悄关注,黑名单数)
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["relation_stat"]
params = {"vmid": self.__uid}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_up_stat(self) -> dict:
"""
获取 UP 主数据信息(视频总播放量,文章总阅读量,总点赞数)
Returns:
dict: 调用接口返回的内容。
"""
self.credential.raise_for_no_bili_jct()
api = API["info"]["upstat"]
params = {"mid": self.__uid}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_top_videos(self) -> dict:
"""
获取用户的指定视频(代表作)
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["user_top_videos"]
params = {"vmid": self.get_uid()}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_masterpiece(self) -> list:
"""
获取用户代表作
Returns:
list: 调用接口返回的内容。
"""
api = API["info"]["masterpiece"]
params = {"vmid": self.get_uid()}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_user_medal(self) -> dict:
"""
读取用户粉丝牌详细列表,如果隐私则不可以
Returns:
dict: 调用接口返回的内容。
"""
self.credential.raise_for_no_sessdata()
# self.credential.raise_for_no_bili_jct()
api = API["info"]["user_medal"]
params = {"target_id": self.__uid}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_live_info(self) -> dict:
"""
获取用户直播间信息。
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["live"]
params = {"mid": self.__uid}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_videos(
self,
tid: int = 0,
pn: int = 1,
ps: int = 30,
keyword: str = "",
order: VideoOrder = VideoOrder.PUBDATE,
) -> dict:
"""
获取用户投稿视频信息。
Args:
tid (int, optional) : 分区 ID. Defaults to 0(全部).
pn (int, optional) : 页码,从 1 开始. Defaults to 1.
ps (int, optional) : 每一页的视频数. Defaults to 30.
keyword (str, optional) : 搜索关键词. Defaults to "".
order (VideoOrder, optional): 排序方式. Defaults to VideoOrder.PUBDATE
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["video"]
params = {
"mid": self.__uid,
"ps": ps,
"tid": tid,
"pn": pn,
"keyword": keyword,
"order": order.value,
# -352 https://github.com/Nemo2011/bilibili-api/issues/595
"dm_img_list": "[]", # 鼠标/键盘操作记录
# WebGL 1.0 (OpenGL ES 2.0 Chromium)
"dm_img_str": "V2ViR0wgMS4wIChPcGVuR0wgRVMgMi4wIENocm9taXVtKQ",
# ANGLE (Intel, Intel(R) UHD Graphics 630 (0x00003E9B) Direct3D11 vs_5_0 ps_5_0, D3D11)Google Inc. (Intel
"dm_cover_img_str": "QU5HTEUgKEludGVsLCBJbnRlbChSKSBVSEQgR3JhcGhpY3MgNjMwICgweDAwMDAzRTlCKSBEaXJlY3QzRDExIHZzXzVfMCBwc181XzAsIEQzRDExKUdvb2dsZSBJbmMuIChJbnRlbC",
}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_media_list(
self,
oid: Union[int, None] = None,
ps: int = 20,
direction: bool = False,
desc: bool = True,
sort_field: MedialistOrder = MedialistOrder.PUBDATE,
tid: int = 0,
with_current: bool = False,
) -> dict:
"""
以 medialist 形式获取用户投稿信息。
Args:
oid (int, optional) : 起始视频 aid, 默认为列表开头
ps (int, optional) : 每一页的视频数. Defaults to 20. Max 100
direction (bool, optional) : 相对于给定oid的查询方向 True 向列表末尾方向 False 向列表开头方向 Defaults to False.
desc (bool, optional) : 倒序排序. Defaults to True.
sort_field (int, optional) : 用于排序的栏 1 发布时间,2 播放量,3 收藏量
tid (int, optional) : 分区 ID. Defaults to 0(全部). 1 部分(未知)
with_current (bool, optional) : 返回的列表中是否包含给定oid自身 Defaults to False.
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["media_list"]
params = {
"mobi_app": "web",
"type": 1,
"biz_id": self.__uid,
"oid": oid,
"otype": 2,
"ps": ps,
"direction": direction,
"desc": desc,
"sort_field": sort_field.value,
"tid": tid,
"with_current": with_current,
}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_audios(
self, order: AudioOrder = AudioOrder.PUBDATE, pn: int = 1, ps: int = 30
) -> dict:
"""
获取用户投稿音频。
Args:
order (AudioOrder, optional): 排序方式. Defaults to AudioOrder.PUBDATE.
pn (int, optional) : 页码数,从 1 开始。 Defaults to 1.
ps (int, optional) : 每一页的视频数. Defaults to 30.
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["audio"]
params = {"uid": self.__uid, "ps": ps, "pn": pn, "order": order.value}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_album(
self, biz: AlbumType = AlbumType.ALL, page_num: int = 1, page_size: int = 30
) -> dict:
"""
获取用户投稿相簿。
Args:
biz (AlbumType, optional): 排序方式. Defaults to AlbumType.ALL.
page_num (int, optional) : 页码数,从 1 开始。 Defaults to 1.
page_size (int) : 每一页的相簿条目. Defaults to 30.
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["album"]
params = {
"uid": self.__uid,
"page_num": page_num,
"page_size": page_size,
"biz": biz.value,
}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_articles(
self, pn: int = 1, order: ArticleOrder = ArticleOrder.PUBDATE, ps: int = 30
) -> dict:
"""
获取用户投稿专栏。
Args:
order (ArticleOrder, optional): 排序方式. Defaults to ArticleOrder.PUBDATE.
pn (int, optional) : 页码数,从 1 开始。 Defaults to 1.
ps (int, optional) : 每一页的视频数. Defaults to 30.
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["article"]
params = {"mid": self.__uid, "ps": ps, "pn": pn, "sort": order.value}
return (
await Api(**api, credential=self.credential, wbi=True)
.update_params(**params)
.result
)
async def get_article_list(
self, order: ArticleListOrder = ArticleListOrder.LATEST
) -> dict:
"""
获取用户专栏文集。
Args:
order (ArticleListOrder, optional): 排序方式. Defaults to ArticleListOrder.LATEST
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["article_lists"]
params = {"mid": self.__uid, "sort": order.value}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_dynamics(self, offset: int = 0, need_top: bool = False) -> dict:
"""
获取用户动态。
建议使用 user.get_dynamics_new() 新接口。
Args:
offset (str, optional): 该值为第一次调用本方法时,数据中会有个 next_offset 字段,
指向下一动态列表第一条动态(类似单向链表)。
根据上一次获取结果中的 next_offset 字段值,
循环填充该值即可获取到全部动态。
0 为从头开始。
Defaults to 0.
need_top (bool, optional): 显示置顶动态. Defaults to False.
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["dynamic"]
params = {
"host_uid": self.__uid,
"offset_dynamic_id": offset,
"need_top": 1 if need_top else 0,
}
data = (
await Api(**api, credential=self.credential).update_params(**params).result
)
# card 字段自动转换成 JSON。
if "cards" in data:
for card in data["cards"]:
card["card"] = json.loads(card["card"])
card["extend_json"] = json.loads(card["extend_json"])
return data
async def get_dynamics_new(self, offset: int = "") -> dict:
"""
获取用户动态。
Args:
offset (str, optional): 该值为第一次调用本方法时,数据中会有个 offset 字段,
指向下一动态列表第一条动态(类似单向链表)。
根据上一次获取结果中的 next_offset 字段值,
循环填充该值即可获取到全部动态。
空字符串为从头开始。
Defaults to "".
Returns:
dict: 调用接口返回的内容。
"""
self.credential.raise_for_no_sessdata()
api = API["info"]["dynamic_new"]
params = {
"host_mid": self.__uid,
"offset": offset,
"features": "itemOpusStyle",
"timezone_offset": -480,
}
data = (
await Api(**api, credential=self.credential).update_params(**params).result
)
return data
async def get_subscribed_bangumi(
self,
type_: BangumiType = BangumiType.BANGUMI,
follow_status: BangumiFollowStatus = BangumiFollowStatus.ALL,
pn: int = 1,
ps: int = 15,
) -> dict:
"""
获取用户追番/追剧列表。
Args:
pn (int, optional) : 页码数,从 1 开始。 Defaults to 1.
ps (int, optional) : 每一页的番剧数. Defaults to 15.
type_ (BangumiType, optional): 资源类型. Defaults to BangumiType.BANGUMI
follow_status (BangumiFollowStatus, optional): 追番状态. Defaults to BangumiFollowStatus.ALL
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["bangumi"]
params = {
"vmid": self.__uid,
"pn": pn,
"ps": ps,
"type": type_.value,
"follow_status": follow_status.value,
}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_followings(
self,
pn: int = 1,
ps: int = 100,
attention: bool = False,
order: OrderType = OrderType.desc,
) -> dict:
"""
获取用户关注列表(不是自己只能访问前 5 页)
Args:
pn (int, optional) : 页码,从 1 开始. Defaults to 1.
ps (int, optional) : 每页的数据量. Defaults to 100.
attention (bool, optional) : 是否采用“最常访问”排序,否则为“关注顺序”排序. Defaults to False.
order (OrderType, optional) : 排序方式. Defaults to OrderType.desc.
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["all_followings2"]
params = {
"vmid": self.__uid,
"ps": ps,
"pn": pn,
"order_type": "attention" if attention else "",
"order": order.value,
}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_all_followings(self) -> dict:
"""
获取所有的关注列表。(如果用户设置保密会没有任何数据)
Returns:
list: 关注列表
"""
api = API["info"]["all_followings"]
params = {"mid": self.__uid}
sess = get_session()
data = json.loads(
(
await sess.get(
url=api["url"], params=params, cookies=self.credential.get_cookies()
)
).text
)
return data["card"]["attentions"]
async def get_followers(
self, pn: int = 1, ps: int = 100, desc: bool = True
) -> dict:
"""
获取用户粉丝列表(不是自己只能访问前 5 页,是自己也不能获取全部的样子)
Args:
pn (int, optional) : 页码,从 1 开始. Defaults to 1.
ps (int, optional) : 每页的数据量. Defaults to 100.
desc (bool, optional): 倒序排序. Defaults to True.
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["followers"]
params = {
"vmid": self.__uid,
"ps": ps,
"pn": pn,
"order": "desc" if desc else "asc",
}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_self_same_followers(self, pn: int = 1, ps: int = 50) -> dict:
"""
获取用户与自己共同关注的 up 主
Args:
pn (int): 页码. Defaults to 1.
ps (int): 单页数据量. Defaults to 50.
Returns:
dict: 调用 API 返回的结果
"""
self.credential.raise_for_no_sessdata()
api = API["info"]["get_same_followings"]
params = {"vmid": self.get_uid(), "pn": pn, "ps": ps}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def top_followers(self, since=None) -> dict:
"""
获取用户粉丝排行
Args:
since (int, optional) : 开始时间(msec)
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["top_followers"]
params = {}
if since:
params["t"] = int(since)
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_overview_stat(self) -> dict:
"""
获取用户的简易订阅和投稿信息。
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["overview"]
params = {"mid": self.__uid, "jsonp": "jsonp"}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_relation(self, uid: int) -> dict:
"""
获取与某用户的关系
Args:
uid (int): 用户 UID
Returns:
dict: 调用接口返回的内容。
"""
api = API["info"]["relation"]
params = {"mid": uid}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
# 操作用户关系
async def modify_relation(self, relation: RelationType) -> dict:
"""
修改和用户的关系,比如拉黑、关注、取关等。
Args:
relation (RelationType): 用户关系。
Returns:
dict: 调用接口返回的内容。
"""
self.credential.raise_for_no_sessdata()
self.credential.raise_for_no_bili_jct()
api = API["operate"]["modify"]
data = {"fid": self.__uid, "act": relation.value, "re_src": 11}
return await Api(**api, credential=self.credential).update_data(**data).result
# 有关合集与列表
async def get_channel_videos_series(
self,
sid: int,
sort: ChannelOrder = ChannelOrder.DEFAULT,
pn: int = 1,
ps: int = 100,
) -> dict:
"""
查看频道内所有视频。仅供 series_list。
Args:
sid(int): 频道的 series_id
pn(int) : 页数,默认为 1
ps(int) : 每一页显示的视频数量
Returns:
dict: 调用接口返回的内容
"""
api = API["info"]["channel_video_series"]
params = {
"mid": self.__uid,
"series_id": sid,
"pn": pn,
"ps": ps,
"sort": "asc" if sort == ChannelOrder.CHANGE else "desc",
}
return (
await Api(**api, wbi=True, credential=self.credential)
.update_params(**params)
.result
)
async def get_channel_videos_season(
self,
sid: int,
sort: ChannelOrder = ChannelOrder.DEFAULT,
pn: int = 1,
ps: int = 100,
) -> dict:
"""
查看频道内所有视频。仅供 season_list。
Args:
sid(int) : 频道的 season_id
sort(ChannelOrder): 排序方式
pn(int) : 页数,默认为 1
ps(int) : 每一页显示的视频数量
Returns:
dict: 调用接口返回的内容
"""
api = API["info"]["channel_video_season"]
params = {
"mid": self.__uid,
"season_id": sid,
"sort_reverse": sort.value,
"page_num": pn,
"page_size": ps,
}
return (
await Api(**api, wbi=True, credential=self.credential)
.update_params(**params)
.result
)
async def get_channel_list(self) -> dict:
"""
查看用户所有的频道(包括新版)和部分视频。
适用于获取列表。
未处理数据。不推荐。
Returns:
dict: 调用接口返回的结果
"""
api = API["info"]["channel_list"]
params = {"mid": self.__uid, "page_num": 1, "page_size": 1}
res = (
await Api(**api, wbi=True, credential=self.credential)
.update_params(**params)
.result
)
items = res["items_lists"]["page"]["total"]
time.sleep(0.5)
if items == 0:
items = 1
params["page_size"] = items
return (
await Api(**api, wbi=True, credential=self.credential)
.update_params(**params)
.result
)
async def get_channels(self) -> List["ChannelSeries"]:
"""
获取用户所有合集
Returns:
List[ChannelSeries]: 合集与列表类的列表
"""
from . import channel_series
channel_data = await self.get_channel_list()
channels = []
for item in channel_data["items_lists"]["seasons_list"]:
id_ = item["meta"]["season_id"]
meta = item["meta"]
channel_series.channel_meta_cache[
str(ChannelSeriesType.SEASON.value) + "-" + str(id_)
] = meta
channels.append(
ChannelSeries(
self.__uid, ChannelSeriesType.SEASON, id_, self.credential
)
)
for item in channel_data["items_lists"]["series_list"]:
id_ = item["meta"]["series_id"]
meta = item["meta"]
channel_series.channel_meta_cache[
str(ChannelSeriesType.SERIES.value) + "-" + str(id_)
] = meta
channels.append(
ChannelSeries(
self.__uid, ChannelSeriesType.SERIES, id_, self.credential
)
)
return channels
async def get_cheese(self) -> dict:
"""
查看用户的所有课程
Returns:
dict: 调用接口返回的结果
"""
api = API["info"]["pugv"]
params = {"mid": self.__uid}
return (
await Api(**api, wbi=True, credential=self.credential)
.update_params(**params)
.result
)
async def get_reservation(self) -> dict:
"""
获取用户空间预约
Returns:
dict: 调用接口返回的结果
"""
api = API["info"]["reservation"]
params = {"vmid": self.get_uid()}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_elec_user_monthly(self) -> dict:
"""
获取空间充电公示信息
Returns:
dict: 调用接口返回的结果
"""
api = API["info"]["elec_user_monthly"]
params = {"up_mid": self.get_uid()}
return (
await Api(**api, credential=self.credential).update_params(**params).result
)
async def get_uplikeimg(self) -> dict:
"""
视频三联特效
Returns:
dict: 调用 API 返回的结果。
"""
api = API["info"]["uplikeimg"]
params = {"vmid": self.get_uid()}
return await Api(**api).update_params(**params).result
async def get_self_info(credential: Credential) -> dict:
"""
获取自己的信息
Args:
credential (Credential): Credential
"""
api = API["info"]["my_info"]
credential.raise_for_no_sessdata()
return await Api(**api, credential=credential).result
async def edit_self_info(
birthday: str, sex: str, uname: str, usersign: str, credential: Credential
) -> dict:
"""
修改自己的信息 (Web)
Args:
birthday (str) : 生日 YYYY-MM-DD
sex (str) : 性别 男|女|保密
uname (str) : 用户名
usersign (str) : 个性签名
credential (Credential): Credential
"""
credential.raise_for_no_sessdata()
credential.raise_for_no_bili_jct()
api = API["info"]["edit_my_info"]
data = {"birthday": birthday, "sex": sex, "uname": uname, "usersign": usersign}
return await Api(**api, credential=credential).update_data(**data).result
async def create_subscribe_group(name: str, credential: Credential) -> dict:
"""
创建用户关注分组
Args:
name (str) : 分组名
credential (Credential): Credential
Returns:
API 调用返回结果。
"""
credential.raise_for_no_sessdata()
credential.raise_for_no_bili_jct()
api = API["operate"]["create_subscribe_group"]
data = {"tag": name}
return await Api(**api, credential=credential).update_data(**data).result
async def delete_subscribe_group(group_id: int, credential: Credential) -> dict:
"""
删除用户关注分组
Args:
group_id (int) : 分组 ID
credential (Credential): Credential
Returns:
调用 API 返回结果
"""
credential.raise_for_no_sessdata()
credential.raise_for_no_bili_jct()
api = API["operate"]["del_subscribe_group"]
data = {"tagid": group_id}
return await Api(**api, credential=credential).update_data(**data).result
async def rename_subscribe_group(
group_id: int, new_name: str, credential: Credential
) -> dict:
"""
重命名关注分组
Args:
group_id (int) : 分组 ID
new_name (str) : 新的分组名
credential (Credential): Credential
Returns:
调用 API 返回结果
"""
credential.raise_for_no_sessdata()
credential.raise_for_no_bili_jct()
api = API["operate"]["rename_subscribe_group"]
data = {"tagid": group_id, "name": new_name}
return await Api(**api, credential=credential).update_data(**data).result
async def set_subscribe_group(
uids: List[int], group_ids: List[int], credential: Credential
) -> dict:
"""
设置用户关注分组
Args:
uids (List[int]) : 要设置的用户 UID 列表,必须已关注。
group_ids (List[int]) : 要复制到的分组列表
credential (Credential): Credential
Returns:
API 调用结果
"""
credential.raise_for_no_sessdata()
credential.raise_for_no_bili_jct()
api = API["operate"]["set_user_subscribe_group"]
data = {"fids": join(",", uids), "tagids": join(",", group_ids)}
return await Api(**api, credential=credential).update_data(**data).result
async def get_self_history(
page_num: int = 1,
per_page_item: int = 100,
credential: Union[Credential, None] = None,
) -> dict:
"""
获取用户浏览历史记录(旧版)
Args:
page_num (int): 页码数
per_page_item (int): 每页多少条历史记录
credential (Credential): Credential
Returns:
list(dict): 返回当前页的指定历史记录列表
"""
if not credential:
credential = Credential()
credential.raise_for_no_sessdata()
api = API["info"]["history"]
params = {"pn": page_num, "ps": per_page_item}
return await Api(**api, credential=credential).update_params(**params).result
async def get_self_history_new(
credential: Credential,
_type: HistoryType = HistoryType.ALL,
ps: int = 20,
view_at: int = None,
max: int = None,
business: HistoryBusinessType = None,
) -> dict:
"""
获取用户浏览历史记录(新版),与旧版不同有分类参数,但相对缺少视频信息
max、business、view_at 参数用于历史记录列表的 IFS (无限滚动),其用法类似链表的 next 指针
将返回值某历史记录的 oid、business、view_at 作为上述参数传入,即可获取此 oid 之前的历史记录
Args:
credential (Credential) : Credential
_type (HistroyType): 历史记录分类, 默认为 HistroyType.ALL
ps (int) : 每页多少条历史记录, 默认为 20
view_at (int) : 时间戳,获取此时间戳之前的历史记录
max (int) : 历史记录截止目标 oid
Returns:
dict: 调用 API 返回的结果
"""
credential.raise_for_no_sessdata()
api = API["info"]["history_new"]
params = {
"type": _type.value,
"ps": ps,
"view_at": view_at,
"max": max,
"business": business if business is None else business.value,
}
return await Api(**api, credential=credential).update_params(**params).result
async def get_self_coins(credential: Credential) -> int:
"""
获取自己的硬币数量。
Returns:
int: 硬币数量
"""
if credential is None:
credential = Credential()
credential.raise_for_no_sessdata()
credential.raise_for_no_dedeuserid()
api = API["info"]["get_coins"]
return (await Api(**api, credential=credential).result)["money"]
async def get_self_special_followings(
credential: Credential, pn: int = 1, ps: int = 50
) -> dict:
"""
获取自己特殊关注的列表
Args:
credential (Credential) : 凭据类
pn (int, optional): 页码. Defaults to 1.
ps (int, optional): 每页数据大小. Defaults to 50.
"""
credential.raise_for_no_sessdata()
api = API["info"]["get_special_followings"]
params = {"pn": pn, "ps": ps}
return await Api(**api, credential=credential).update_params(**params).result
async def get_self_whisper_followings(
credential: Credential, pn: int = 1, ps: int = 50
) -> dict:
"""
获取自己悄悄关注的列表。
Args:
credential (Credential) : 凭据类
pn (int, optional): 页码. Defaults to 1.
ps (int, optional): 每页数据大小. Defaults to 50.
"""
credential.raise_for_no_sessdata()
api = API["info"]["get_whisper_followings"]
params = {"pn": pn, "ps": ps}
return await Api(**api, credential=credential).update_params(**params).result
async def get_self_friends(credential: Credential) -> dict:
"""
获取与自己互粉的人
Args:
credential (Credential) : 凭据类
"""
credential.raise_for_no_sessdata()
api = API["info"]["get_friends"]
return await Api(**api, credential=credential).result
async def get_self_black_list(
credential: Credential, pn: int = 1, ps: int = 50
) -> dict:
"""
获取自己的黑名单信息
Args:
credential (Credential) : 凭据类
pn (int, optional): 页码. Defaults to 1.
ps (int, optional): 每页数据大小. Defaults to 50.
"""
credential.raise_for_no_sessdata()
api = API["info"]["get_black_list"]
params = {"pn": pn, "ps": ps}
return await Api(**api, credential=credential).update_params(**params).result
async def get_toview_list(credential: Credential):
"""
获取稍后再看列表
Args:
credential (Credential): 凭据类
Returns:
dict: 调用 API 返回的结果
"""
api = get_api("toview")["info"]["list"]
credential.raise_for_no_sessdata()
return await Api(**api, credential=credential).result
async def clear_toview_list(credential: Credential):
"""
清空稍后再看列表
Args:
credential(Credential): 凭据类
Returns:
dict: 调用 API 返回的结果
"""
api = get_api("toview")["operate"]["clear"]
credential.raise_for_no_sessdata()
credential.raise_for_no_bili_jct()
return await Api(**api, credential=credential).result
async def delete_viewed_videos_from_toview(credential: Credential):
"""
删除稍后再看列表已经看过的视频
Args:
credential(Credential): 凭据类
Returns:
dict: 调用 API 返回的结果
"""
api = get_api("toview")["operate"]["del"]
credential.raise_for_no_sessdata()
credential.raise_for_no_bili_jct()
datas = {"viewed": "true"}
return await Api(**api, credential=credential).update_data(**datas).result
async def check_nickname(nick_name: str) -> Tuple[bool, str]:
"""
检验昵称是否可用
Args:
nick_name(str): 昵称
Returns:
List[bool, str]: 昵称是否可用 + 不可用原因
"""
api = get_api("common")["nickname"]["check_nickname"]
params = {"nickName": nick_name}
try:
resp = await Api(**api).update_params(**params).result
except ResponseCodeException as e:
return False, str(e)
else:
return True, ""
async def get_self_events(ts: int = 0, credential: Union[Credential, None] = None):
"""
获取自己入站后每一刻的事件
Args:
ts(int, optional) : 时间戳. Defaults to 0.
credential(Credential | None, optional): 凭据. Defaults to None.
Returns:
dict: 调用 API 返回的结果
"""
credential = credential if credential else Credential()
api = API["info"]["events"]
params = {"ts": ts}
return await Api(**api, credential=credential).update_params(**params).result
async def get_self_notes_info(
page_num: int, page_size: int, credential: Credential
) -> dict:
"""
获取自己的笔记列表
Args:
page_num: 页码
page_size: 每页项数
credential(Credential): 凭据类
Returns:
dict: 调用 API 返回的结果
"""
raise_for_statement(page_num > 0)
raise_for_statement(page_size > 0)
credential.raise_for_no_sessdata()
api = API["info"]["all_notes"]
params = {"pn": page_num, "ps": page_size}
return await Api(**api, credential=credential).update_params(**params).result
async def get_self_public_notes_info(
page_num: int, page_size: int, credential: Credential
) -> dict:
"""
获取自己的公开笔记列表
Args:
page_num: 页码
page_size: 每页项数
credential(Credential): 凭据类
Returns:
dict: 调用 API 返回的结果
"""
raise_for_statement(page_num > 0)
raise_for_statement(page_size > 0)
credential.raise_for_no_sessdata()
api = API["info"]["public_notes"]
params = {"pn": page_num, "ps": page_size}
return await Api(**api, credential=credential).update_params(**params).result
async def get_self_jury_info(credential: Credential) -> dict:
"""
获取自己风纪委员信息
"""
credential.raise_for_no_sessdata()
api = API["info"]["jury"]
return await Api(**api, credential=credential).result
async def get_self_login_log(credential: Credential) -> dict:
"""
获取自己的登录记录
Args:
credential (Credential): 凭证。
Returns:
dict: 调用 API 返回的结果
"""
credential.raise_for_no_sessdata()
api = API["info"]["login_log"]
return await Api(**api, credential=credential).result
async def get_self_moral_log(credential: Credential) -> dict:
"""
获取自己的节操记录
Args:
credential (Credential): 凭证。
Returns:
dict: 调用 API 返回的结果
"""
credential.raise_for_no_sessdata()
api = API["info"]["moral_log"]
return await Api(**api, credential=credential).result
async def get_self_experience_log(credential: Credential) -> dict:
"""
获取自己的经验记录
Args:
credential (Credential): 凭证。
Returns:
dict: 调用 API 返回的结果
"""
credential.raise_for_no_sessdata()
api = API["info"]["exp_log"]
return await Api(**api, credential=credential).result
|