generated from feeluown/feeluown-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix artist_get/song_list_hot_comments
- Loading branch information
Showing
6 changed files
with
77 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
""" | ||
Copied from | ||
https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/docs/misc/sign/wbi.md | ||
""" | ||
|
||
from functools import reduce | ||
from hashlib import md5 | ||
import urllib.parse | ||
import time | ||
|
||
|
||
mixinKeyEncTab = [ | ||
46, 47, 18, 2, 53, 8, 23, 32, 15, 50, 10, 31, 58, 3, 45, 35, 27, 43, 5, 49, | ||
33, 9, 42, 19, 29, 28, 14, 39, 12, 38, 41, 13, 37, 48, 7, 16, 24, 55, 40, | ||
61, 26, 17, 0, 1, 60, 51, 30, 4, 22, 25, 54, 21, 56, 59, 6, 63, 57, 62, 11, | ||
36, 20, 34, 44, 52 | ||
] | ||
|
||
def getMixinKey(orig: str): | ||
'对 imgKey 和 subKey 进行字符顺序打乱编码' | ||
return reduce(lambda s, i: s + orig[i], mixinKeyEncTab, '')[:32] | ||
|
||
|
||
def encWbi(params: dict, img_key: str, sub_key: str): | ||
'为请求参数进行 wbi 签名' | ||
mixin_key = getMixinKey(img_key + sub_key) | ||
curr_time = round(time.time()) | ||
params['wts'] = curr_time # 添加 wts 字段 | ||
params = dict(sorted(params.items())) # 按照 key 重排参数 | ||
# 过滤 value 中的 "!'()*" 字符 | ||
params = { | ||
k : ''.join(filter(lambda chr: chr not in "!'()*", str(v))) | ||
for k, v | ||
in params.items() | ||
} | ||
query = urllib.parse.urlencode(params) # 序列化参数 | ||
wbi_sign = md5((query + mixin_key).encode()).hexdigest() # 计算 w_rid | ||
params['w_rid'] = wbi_sign | ||
return params |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters