-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathNetEaseMusicBean.cs
553 lines (487 loc) · 15.9 KB
/
NetEaseMusicBean.cs
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
using System.Collections.Generic;
using System.Linq;
using MusicLyricApp.Utils;
namespace MusicLyricApp.Bean
{
/// <summary>
/// 搜索接口结果
/// </summary>
public class SearchResult
{
/* SearchType = SONG */
public Song[] Songs { get; set; }
public long SongCount { get; set; }
/* SearchType = ALBUM */
public Album[] Albums { get; set; }
public long AlbumCount { get; set; }
/* SearchType = PLAYLIST */
public SimplePlaylist[] Playlists { get; set; }
public long PlaylistCount { get; set; }
/* ----- */
public SearchResultVo Convert(SearchTypeEnum searchType)
{
var vo = new SearchResultVo
{
SearchType = searchType,
SearchSource = SearchSourceEnum.NET_EASE_MUSIC
};
switch (searchType)
{
case SearchTypeEnum.SONG_ID:
if (SongCount > 0)
{
foreach (var song in Songs)
{
vo.SongVos.Add(new SearchResultVo.SongSearchResultVo
{
DisplayId = song.Id,
Title = song.Name,
AuthorName = song.Ar.Select(e => e.Name).ToArray(),
AlbumName = song.Al.Name,
Duration = song.Dt
});
}
}
break;
case SearchTypeEnum.ALBUM_ID:
if (AlbumCount > 0)
{
foreach (var album in Albums)
{
vo.AlbumVos.Add(new SearchResultVo.AlbumSearchResultVo
{
DisplayId = album.Id.ToString(),
AlbumName = album.Name,
AuthorName = album.Artists.Select(e => e.Name).ToArray(),
SongCount = album.Size,
PublishTime = GlobalUtils.FormatDate(album.PublishTime)
});
}
}
break;
case SearchTypeEnum.PLAYLIST_ID:
if (PlaylistCount > 0)
{
foreach (var playlist in Playlists)
{
vo.PlaylistVos.Add(new SearchResultVo.PlaylistResultVo()
{
DisplayId = playlist.Id,
PlaylistName = playlist.Name,
AuthorName = playlist.Creator.Nickname,
Description = playlist.Description,
PlayCount = playlist.PlayCount,
SongCount = playlist.TrackCount,
});
}
}
break;
}
return vo;
}
}
public class SongUrls
{
public Datum[] Data { get; set; }
public long Code { get; set; }
}
public class Datum
{
public string Id { get; set; }
public string Url { get; set; }
public long Br { get; set; }
public long Size { get; set; }
public string Md5 { get; set; }
public long Code { get; set; }
public long Expi { get; set; }
public string Type { get; set; }
public double Gain { get; set; }
public long Fee { get; set; }
public object Uf { get; set; }
public long Payed { get; set; }
public long Flag { get; set; }
public bool CanExtend { get; set; }
}
public class LyricResult
{
public bool Sgc { get; set; }
public bool Sfy { get; set; }
public bool Qfy { get; set; }
public bool Nolyric { get; set; }
public bool Uncollected { get; set; }
public LyricUser TransUser { get; set; }
public LyricUser LyricUser { get; set; }
public Lrc Lrc { get; set; }
public Klyric Klyric { get; set; }
public Lrc Tlyric { get; set; }
public long Code { get; set; }
public LyricVo ToVo()
{
var lyricVo = new LyricVo
{
SearchSource = SearchSourceEnum.NET_EASE_MUSIC
};
if (Lrc != null)
{
lyricVo.SetLyric(Lrc.Lyric);
}
if (Tlyric != null)
{
lyricVo.SetTranslateLyric(Tlyric.Lyric);
}
return lyricVo;
}
}
public class LyricUser
{
public long Id { get; set; }
public long Status { get; set; }
public long Demand { get; set; }
public long Userid { get; set; }
public string Nickname { get; set; }
public long Uptime { get; set; }
}
public class Klyric
{
public long Version { get; set; }
}
public class Lrc
{
public long Version { get; set; }
public string Lyric { get; set; }
}
/// <summary>
/// 歌单接口返回结果
/// </summary>
public class PlaylistResult
{
public long Code { get; set; }
public string Urls { get; set; }
public string RelatedVideos { get; set; }
/// <summary>
/// 歌单作者信息
/// </summary>
public Playlist Playlist { get; set; }
/// <summary>
/// 歌单歌曲权限信息
/// </summary>
public Privilege[] Privileges { get; set; }
public PlaylistVo Convert(SimpleSongVo[] simpleSongVos)
{
var creator = Playlist.Creator;
return new PlaylistVo
{
Name = Playlist.Name,
AuthorName = creator == null ? "" : creator.Nickname,
Description = Playlist.Description,
SimpleSongVos = simpleSongVos
};
}
}
/// <summary>
/// 专辑接口返回结果
/// </summary>
public class AlbumResult
{
public Song[] Songs { get; set; }
public long Code { get; set; }
public Album Album { get; set; }
public AlbumVo Convert()
{
return new AlbumVo
{
Name = Album.Name,
Company = Album.Company,
Desc = Album.Description,
SimpleSongVos = Songs.Select(e => e.ConvertSimple()).ToArray(),
TimePublic = GlobalUtils.FormatDate(Album.PublishTime)
};
}
}
/// <summary>
/// 模糊搜索歌单返回的结果,仅有部分属性
/// </summary>
public class SimplePlaylist
{
public string Id { get; set; }
/// <summary>
/// 歌单名
/// </summary>
public string Name { get; set; }
/// <summary>
/// 歌单封面 URL
/// </summary>
public string CoverImgUrl { get; set; }
/// <summary>
/// 创建者 ID
/// </summary>
public long UserId { get; set; }
/// <summary>
/// 创建者
/// </summary>
public Creator Creator { get; set; }
/// <summary>
/// 歌单描述
/// </summary>
public string Description { get; set; }
/// <summary>
/// 播放数量
/// </summary>
public long PlayCount { get; set; }
/// <summary>
/// 歌曲数量
/// </summary>
public long TrackCount { get; set; }
}
/// <summary>
/// 精确搜索歌单返回的结果
/// </summary>
public class Playlist : SimplePlaylist
{
/// <summary>
/// 歌单名
/// </summary>
public string Name { get; set; }
/// <summary>
/// 歌单创建者
/// </summary>
public Creator Creator { get; set; }
/// <summary>
/// 歌单封面 ID
/// </summary>
public long CoverImgId { get; set; }
/// <summary>
/// 歌单创建时间
/// </summary>
public long CreateTime { get; set; }
/// <summary>
/// 订阅数量
/// </summary>
public long SubscribedCount { get; set; }
/// <summary>
/// 分享数量
/// </summary>
public long ShareCount { get; set; }
/// <summary>
/// 评论数量
/// </summary>
public long CommentCount { get; set; }
/// <summary>
/// 歌单歌曲列表信息
/// </summary>
public SimpleTrack[] TrackIds { get; set; }
}
public class SimpleTrack
{
public long Id { get; set; }
public long Uid { get; set; }
}
/// <summary>
/// 专辑
/// </summary>
public class Album
{
public bool Paid { get; set; }
public bool OnSale { get; set; }
public long PicId { get; set; }
public object[] Alias { get; set; }
public string CommentThreadId { get; set; }
public long PublishTime { get; set; }
public string Company { get; set; }
public long CopyrightId { get; set; }
public string PicUrl { get; set; }
public Artist Artist { get; set; }
public object BriefDesc { get; set; }
public string Tags { get; set; }
public Artist[] Artists { get; set; }
public long Status { get; set; }
public string Description { get; set; }
public object SubType { get; set; }
public string BlurPicUrl { get; set; }
public long CompanyId { get; set; }
public long Pic { get; set; }
public string Name { get; set; }
public long Id { get; set; }
public string Type { get; set; }
/// <summary>
/// 歌曲数量
/// </summary>
public long Size { get; set; }
public string PicIdStr { get; set; }
public Info Info { get; set; }
}
public class Song
{
public string Name { get; set; }
public string Id { get; set; }
public long Pst { get; set; }
public long T { get; set; }
public List<Ar> Ar { get; set; }
public List<object> Alia { get; set; }
public long Pop { get; set; }
public long St { get; set; }
public string Rt { get; set; }
public long Fee { get; set; }
public long V { get; set; }
public object Crbt { get; set; }
public string Cf { get; set; }
public Al Al { get; set; }
/// <summary>
/// 时长,单位ms
/// </summary>
public long Dt { get; set; }
public H H { get; set; }
public H M { get; set; }
public H L { get; set; }
public object A { get; set; }
public string Cd { get; set; }
public long No { get; set; }
public object RtUrl { get; set; }
public long Ftype { get; set; }
public List<object> RtUrls { get; set; }
public object Rurl { get; set; }
public long Rtype { get; set; }
public long Mst { get; set; }
public long Cp { get; set; }
public long Mv { get; set; }
/// <summary>
/// 时间戳,eg 1657900800000
/// </summary>
public long PublishTime { get; set; }
public Privilege Privilege { get; set; }
public SimpleSongVo ConvertSimple()
{
return new SimpleSongVo
{
Id = Id,
DisplayId = Id,
Name = Name,
Singer = Ar.Select(e => e.Name).ToArray()
};
}
}
public class Info
{
public CommentThread CommentThread { get; set; }
public object LatestLikedUsers { get; set; }
public bool Liked { get; set; }
public object Comments { get; set; }
public long ResourceType { get; set; }
public long ResourceId { get; set; }
public long CommentCount { get; set; }
public long LikedCount { get; set; }
public long ShareCount { get; set; }
public string ThreadId { get; set; }
}
public class CommentThread
{
public string Id { get; set; }
public ResourceInfo ResourceInfo { get; set; }
public long ResourceType { get; set; }
public long CommentCount { get; set; }
public long LikedCount { get; set; }
public long ShareCount { get; set; }
public long HotCount { get; set; }
public object LatestLikedUsers { get; set; }
public long ResourceId { get; set; }
public long ResourceOwnerId { get; set; }
public string ResourceTitle { get; set; }
}
public class Artist
{
public long Img1V1Id { get; set; }
public long TopicPerson { get; set; }
public long PicId { get; set; }
public object BriefDesc { get; set; }
public long AlbumSize { get; set; }
public string Img1V1Url { get; set; }
public string PicUrl { get; set; }
public List<string> Alias { get; set; }
public string Trans { get; set; }
public long MusicSize { get; set; }
public string Name { get; set; }
public long Id { get; set; }
public long PublishTime { get; set; }
public long MvSize { get; set; }
public bool Followed { get; set; }
}
/// <summary>
/// 创建者
/// </summary>
public class Creator
{
/// <summary>
/// 用户 ID
/// </summary>
public long UserId { get; set; }
/// <summary>
/// 昵称
/// </summary>
public string Nickname { get; set; }
/// <summary>
/// 个人介绍
/// </summary>
public string Signature { get; set; }
/// <summary>
/// 描述
/// </summary>
public string Description { get; set; }
/// <summary>
/// 头像地址
/// </summary>
public string AvatarUrl { get; set; }
}
public class ResourceInfo
{
public long Id { get; set; }
public long UserId { get; set; }
public string Name { get; set; }
public object ImgUrl { get; set; }
public Creator Creator { get; set; }
}
public class Privilege
{
public long Id { get; set; }
public long Fee { get; set; }
public long Payed { get; set; }
public long St { get; set; }
public long Pl { get; set; }
public long Dl { get; set; }
public long Sp { get; set; }
public long Cp { get; set; }
public long Subp { get; set; }
public bool Cs { get; set; }
public long Maxbr { get; set; }
public long Fl { get; set; }
public bool Toast { get; set; }
public long Flag { get; set; }
}
public class DetailResult
{
public Song[] Songs { get; set; }
public Privilege[] Privileges { get; set; }
public long Code { get; set; }
}
public class Al
{
public long Id { get; set; }
public string Name { get; set; }
public string PicUrl { get; set; }
public List<object> Tns { get; set; }
public long Pic { get; set; }
}
public class Ar
{
public long Id { get; set; }
public string Name { get; set; }
public List<object> Tns { get; set; }
public List<object> Alias { get; set; }
}
public class H
{
public long Br { get; set; }
public long Fid { get; set; }
public long Size { get; set; }
public double Vd { get; set; }
}
}