This repository has been archived by the owner on Apr 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
api.py
526 lines (455 loc) · 18.5 KB
/
api.py
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
# -*- coding: utf-8 -*-
import platform
import json
import os
import requests
from http.cookiejar import Cookie, LWPCookieJar
from encrypt import encrypted_request
import random
from hashlib import md5
DEFAULT_TIMEOUT = 10
BASE_URL = "https://music.163.com"
class NetEase(object):
def __init__(self, username=''):
self.header = {
"Accept": "*/*",
"Accept-Encoding": "gzip,deflate,sdch",
"Accept-Language": "zh-CN,zh;q=0.8,gl;q=0.6,zh-TW;q=0.4",
"Connection": "keep-alive",
"Content-Type": "application/x-www-form-urlencoded",
"Host": "music.163.com",
"Referer": "https://music.163.com",
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36",
}
username = str(username)
self.username = username
self.session = requests.Session()
cookie_file = self.get_cookie_file(username)
if username and cookie_file:
cookie_jar = LWPCookieJar(cookie_file)
cookie_jar.load()
else:
cookie_jar = LWPCookieJar()
self.session.cookies = cookie_jar
def get_cookie_file(self, filename):
if len(filename) == 0:
return None
data_dir = os.path.join(os.path.expanduser("."), ".user_data")
user_path = os.path.join(data_dir, filename)
cookie_file = os.path.join(user_path, "cookie")
if not os.path.exists(data_dir):
try:
os.makedirs(data_dir)
except:
return None
if not os.path.exists(user_path):
try:
os.makedirs(user_path)
except:
return None
if not os.path.exists(cookie_file):
try:
with open(cookie_file, "w", encoding="utf-8") as f:
f.write('#LWP-Cookies-2.0\nSet-Cookie3:')
f.close()
except:
return None
return cookie_file
def _raw_request(self, method, endpoint, data=None):
if method == "GET":
resp = self.session.get(
endpoint, params=data, headers=self.header, timeout=DEFAULT_TIMEOUT
)
elif method == "POST":
resp = self.session.post(
endpoint, data=data, headers=self.header, timeout=DEFAULT_TIMEOUT
)
return resp
# 生成Cookie对象
def make_cookie(self, name, value):
return Cookie(
version=0,
name=name,
value=value,
port=None,
port_specified=False,
domain="music.163.com",
domain_specified=True,
domain_initial_dot=False,
path="/",
path_specified=True,
secure=False,
expires=None,
discard=False,
comment=None,
comment_url=None,
rest={},
)
def request(self, method, path, params={}, base_url=BASE_URL, default={"code": -1}, custom_cookies={'os': 'pc'}):
endpoint = "{}{}".format(BASE_URL, path)
csrf_token = ""
for cookie in self.session.cookies:
if cookie.name == "__csrf":
csrf_token = cookie.value
break
params.update({"csrf_token": csrf_token})
data = default
for key, value in custom_cookies.items():
cookie = self.make_cookie(key, value)
self.session.cookies.set_cookie(cookie)
params = encrypted_request(params)
try:
resp = self._raw_request(method, endpoint, params)
data = resp.json()
except requests.exceptions.RequestException as e:
print(e)
except ValueError as e:
print("Path: {}, response: {}".format(path, resp.text[:200]))
finally:
return data
def login(self, username, password, countrycode='86'):
username = str(username)
cookie_file = self.get_cookie_file(username)
if cookie_file:
if self.username != username:
cookie_jar = LWPCookieJar(cookie_file)
cookie_jar.load()
self.session.cookies = cookie_jar
self.username = username
if len(password) < 32:
password = md5(password.encode(encoding='UTF-8')).hexdigest()
if username.isdigit():
path = "/weapi/login/cellphone"
if len(countrycode) == 0:
countrycode = '86'
params = dict(phone=username, countrycode=countrycode,
password=password, rememberLogin="true")
else:
# magic token for login
# see https://github.com/Binaryify/NeteaseCloudMusicApi/blob/master/router/login.js#L15
client_token = (
"1_jVUMqWEPke0/1/Vu56xCmJpo5vP1grjn_SOVVDzOc78w8OKLVZ2JH7IfkjSXqgfmh"
)
path = "/weapi/login"
params = dict(username=username, password=password,
rememberLogin="true", clientToken=client_token)
data = self.request("POST", path, params)
if cookie_file:
self.session.cookies.save()
return data
# 每日签到
def daily_task(self, type=0):
path = "/weapi/point/dailyTask"
params = dict(type=type)
return self.request("POST", path, params, custom_cookies={'os': 'android'})
# 用户歌单
def user_playlist(self, uid, offset=0, limit=50, includeVideo=True):
path = "/weapi/user/playlist"
params = dict(uid=uid, offset=offset, limit=limit,
includeVideo=includeVideo)
return self.request("POST", path, params)
# 创建歌单 privacy:0 为普通歌单,10 为隐私歌单;type:NORMAL正常|VIDEO视频|SHARED共享
def playlist_create(self, name, privacy=0, ptype='NORMAL'):
path = "/weapi/playlist/create"
params = dict(name=name, privacy=privacy, type=ptype)
return self.request("POST", path, params)
# 添加/删除单曲到歌单
# op:'add'|'del'
def playlist_tracks(self, pid, ids, op='add'):
path = "/weapi/playlist/manipulate/tracks"
params = {'op': op, 'pid': pid,
'trackIds': json.dumps(ids), 'imme': 'true'}
result = self.request("POST", path, params)
if result['code'] == 512:
ids.extend(ids)
params = {'op': op, 'pid': pid,
'trackIds': json.dumps(ids), 'imme': 'true'}
result = self.request("POST", path, params)
return result
# 更新歌单描述
def playlist_desc_update(self, id, desc):
path = "/weapi/playlist/desc/update"
params = dict(id=id, desc=desc)
return self.request("POST", path, params)
# 每日推荐歌单
def recommend_resource(self):
path = "/weapi/v1/discovery/recommend/resource"
return self.request("POST", path).get("recommend", [])
# 推荐歌单
def personalized_playlist(self, limit=9):
path = "/weapi/personalized/playlist"
params = dict(limit=limit)
return self.request("POST", path, params).get("result", [])
# 私人FM
def personal_fm(self):
path = "/weapi/v1/radio/get"
return self.request("POST", path) # .get("data", [])
# 歌单详情
def playlist_detail(self, playlist_id):
path = "/weapi/v3/playlist/detail"
params = dict(id=playlist_id, total="true",
limit=1000, n=1000, offest=0)
# cookie添加os字段
custom_cookies = dict(os=platform.system())
return self.request("POST", path, params, {"code": -1}, custom_cookies)
# 专辑详情
def album(self, album_id):
path = "/weapi/v1/album/{}".format(album_id)
return self.request("POST", path) # .get("songs", [])
# 歌曲详情
def songs_detail(self, ids):
path = "/weapi/v3/song/detail"
params = dict(c=json.dumps([{"id": _id}
for _id in ids]), ids=json.dumps(ids))
return self.request("POST", path, params)
# 关注用户
def user_follow(self, id):
path = "/weapi/user/follow/{}".format(id)
return self.request("POST", path)
# 听歌排行 type: 0 全部时间 1最近一周
def play_record(self, uid, time_type=0, limit=1000, offset=0, total=True):
path = "/weapi/v1/play/record"
params = dict(uid=uid, type=time_type, limit=limit,
offset=offset, total=total)
return self.request("POST", path, params)
# 创建歌单 privacy:0 为普通歌单,10 为隐私歌单;type:NORMAL|VIDEO
def playlist_creat(self, name, privacy=0, ptype='NORMAL'):
path = "/weapi/playlist/create"
params = dict(name=name, privacy=privacy, type=ptype)
return self.request("POST", path, params)
# 打卡
def daka(self, song_datas):
path = "/weapi/feedback/weblog"
songs = []
for i in range(len(song_datas)):
song = {
'action': 'play',
'json': song_datas[i]
}
songs.append(song)
params = {'logs': json.dumps(songs)}
return self.request("POST", path, params)
# 用户信息
def user_detail(self, uid):
path = "/weapi/v1/user/detail/{}".format(uid)
return self.request("POST", path)
def user_level(self):
path = "/weapi/user/level"
return self.request("POST", path)
# 云贝所有任务
def yunbei_task(self):
path = "/weapi/usertool/task/list/all"
return self.request("POST", path) # .get("data", [])
# 云贝todo任务
def yunbei_task_todo(self):
path = "/weapi/usertool/task/todo/query"
return self.request("POST", path) # .get("data", [])
# 完成云贝任务
def yunbei_task_finish(self, userTaskId, depositCode):
path = "/weapi/usertool/task/point/receive"
params = dict(userTaskId=userTaskId, depositCode=depositCode)
return self.request("POST", path, params)
def share_resource(self, type='playlist', msg='', id=''):
path = "/weapi/share/friends/resource"
params = dict(type=type, msg=msg, id=id)
return self.request("POST", path, params)
# 删除动态
def event_delete(self, id):
path = "/weapi/event/delete"
params = dict(id=id)
return self.request("POST", path, params)
# 删除歌单
def playlist_delete(self, ids):
path = "/weapi/playlist/remove"
params = dict(ids=ids)
return self.request("POST", path, params)
###########################
# 音乐人
# 概况
def musician_data(self):
path = '/weapi/creator/musician/statistic/data/overview/get'
return self.request("POST", path)
# 获取任务
def mission_cycle_get(self, actionType='', platform=''):
path = '/weapi/nmusician/workbench/mission/cycle/list'
if actionType == '' and platform == '':
return self.request("POST", path)
else:
params = dict(actionType=actionType, platform=platform)
return self.request("POST", path, params)
# 获取任务
def mission_stage_get(self):
path = '/weapi/nmusician/workbench/mission/stage/list'
return self.request("POST", path)
# 领取云豆
def reward_obtain(self, userMissionId, period):
path = '/weapi/nmusician/workbench/mission/reward/obtain/new'
params = dict(userMissionId=userMissionId, period=period)
return self.request("POST", path, params)
# 账号云豆数
def cloudbean(self):
path = "/weapi/cloudbean/get"
return self.request("POST", path)
def user_access(self):
path = '/weapi/creator/user/access'
return self.request("POST", path)
# 完成云贝任务: 访问商城
def visit_mall(self):
path = "/weapi/yunbei/task/visit/mall"
return self.request("POST", path)
# 对歌曲进行评论
def comments_add(self, song_id, content):
path = "/weapi/v1/resource/comments/add"
params = dict(threadId='R_SO_4_'+str(song_id), content=content)
return self.request("POST", path, params, custom_cookies={'os': 'android'})
# 回复歌曲评论
def comments_reply(self, song_id, commentId, content):
path = "/weapi/v1/resource/comments/reply"
params = dict(commentId=commentId, threadId='R_SO_4_' +
str(song_id), content=content)
return self.request("POST", path, params, custom_cookies={'os': 'android'})
# 删除评论
def comments_delete(self, song_id, commentId):
path = "/weapi/resource/comments/delete"
params = dict(commentId=commentId, threadId='R_SO_4_'+str(song_id))
return self.request("POST", path, params)
# 发送私信
def msg_send(self, msg, userIds, type='text'):
path = "/weapi/msg/private/send"
params = dict(type=type, msg=msg, userIds=userIds)
return self.request("POST", path, params)
def update_playcount(self, id):
path = "/weapi/playlist/update/playcount"
params = dict(id=id)
return self.request("POST", path, params)
# 云贝推歌
def yunbei_rcmd_submit(self, songId, yunbeiNum=10, reason='有些美好会迟到,但音乐能带你找到', scene='', fromUserId=-1):
path = "/weapi/yunbei/rcmd/song/submit"
params = dict(songId=songId, reason=reason, scene=scene,
yunbeiNum=yunbeiNum, fromUserId=fromUserId)
return self.request("POST", path, params)
# vip level
def vip_level(self):
path = "/weapi/music-vip-membership/client/vip/info"
return self.request("POST", path)
# vip任务列表
def vip_task_list(self):
path = "/weapi/vipnewcenter/app/level/task/list"
return self.request("POST", path)
# 领取会员成长值
def vip_reward_get(self, taskIds):
path = "/weapi/vipnewcenter/app/level/task/reward/get"
params = dict(taskIds=','.join(taskIds))
return self.request("POST", path, params)
# 新vip任务列表
def vip_task_newlist(self):
path = "/weapi/vipnewcenter/app/level/task/newlist"
return self.request("POST", path)
# 领取所有会员成长值
def vip_reward_getall(self):
path = "/weapi/vipnewcenter/app/level/task/reward/getall"
return self.request("POST", path)
# 云贝过期提醒
def expire_attention(self):
path = "/weapi/usertool/yunbei/center/attention"
return self.request("POST", path)
# 签到进度
def signin_progress(self, moduleId):
path = "/weapi/act/modules/signin/v2/progress"
params = dict(moduleId=moduleId)
return self.request("POST", path, params)
def mlog_nos_token(self, filepath):
path = "/weapi/nos/token/whalealloc"
bizKey = ''
for i in range(8):
bizKey += hex(random.randint(0, 15)).replace('0x', '')
_, filename = os.path.split(filepath)
with open(filepath, 'rb') as f:
contents = f.read()
file_md5 = md5(contents).hexdigest()
params = dict(
bizKey=bizKey,
filename=filename,
bucket='yyimgs',
md5=file_md5,
type='image',
fileSize=os.path.getsize(filepath),
)
return self.request("POST", path, params)
def upload_file(self, filepath, token):
data = token['data']
path = "http://45.127.129.8/{}/{}?offset=0&complete=true&version=1.0".format(
data['bucket'], data['objectKey'])
content_type = ''
if filepath.endswith('jpg'):
content_type = 'image/jpeg'
elif filepath.endswith('png'):
content_type = 'image/png'
elif filepath.endswith('gif'):
content_type = 'image/gif'
elif filepath.endswith('mpg'):
content_type = 'audio/mp3'
elif filepath.endswith('flac'):
content_type = 'audio/mpeg'
headers = {
'x-nos-token': data['token'],
'Content-Type': content_type,
}
with open(filepath, 'rb') as f:
res = requests.post(url=path, data=f, headers=headers)
return res
def mlog_pub(self, token, height, width, songId, songName='', text='share'):
path = "/weapi/mlog/publish/v1"
params = {
'type': 1,
'mlog': json.dumps({
'content': {
'image': [{
'height': height,
'width': width,
'more': False,
'nosKey': token['data']['bucket'] + '/' + token['data']['objectKey'],
'picKey': token['data']['resourceId']
}],
'needAudio': False,
'song': {
'endTime': 0,
'name': songName,
'songId': songId,
'startTime': 30000
},
'text': text,
},
'from': 0,
'type': 1,
})
}
return self.request("POST", path, params)
# 获取歌曲评论
def song_comments(self, music_id, offset=0, total="false", limit=100):
path = "/weapi/v1/resource/comments/R_SO_4_{}/".format(music_id)
params = dict(rid=music_id, offset=offset, total=total, limit=limit)
return self.request("POST", path, params)
# 音乐人专辑列表
def musician_album(self):
path = "/weapi/nmusician/production/common/artist/album/item/list/get"
return self.request("POST", path)
def watch_college_lesson(self):
path = "/weapi/nmusician/workbench/creator/watch/college/lesson"
return self.request("POST", path)
def artist_homepage(self, artistId):
path = "/weapi/personal/home/page/artist"
params = dict(artistId=artistId)
return self.request("POST", path, params)
def circle_get(self, circleId):
path = "/weapi/circle/get"
params = dict(circleId=circleId)
return self.request("POST", path, params)
def vipcenter_task_external(self, type):
path = "/weapi/vipnewcenter/app/level/task/external"
params = dict(type=type)
return self.request("POST", path, params)
def vipcenter_task_handle(self, type):
path = "/weapi/vipnewcenter/app/level/task/handle"
params = dict(actionType=type)
return self.request("POST", path, params)