File tree 2 files changed +15
-8
lines changed
2 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { songUrl } from '$api'
2
2
import { Song , SongPlayUrlInfo } from '$define'
3
3
import { getId } from '$util'
4
4
import { invariant } from 'es-toolkit'
5
- import { get , trimStart } from 'es-toolkit/compat'
5
+ import { get } from 'es-toolkit/compat'
6
6
import { extname } from 'path'
7
7
8
8
const NOT_IMPLEMENTED = 'not NOT_IMPLEMENTED'
@@ -53,6 +53,13 @@ export class BaseAdapter {
53
53
return songDatas . map ( function ( songData , index ) {
54
54
const url = songData . playUrlInfo ?. url
55
55
56
+ let ext : string | undefined
57
+ if ( url ) {
58
+ const pathname = new URL ( url ) . pathname
59
+ ext = extname ( pathname )
60
+ if ( ext . startsWith ( '.' ) ) ext = ext . slice ( 1 )
61
+ }
62
+
56
63
return {
57
64
// 歌手
58
65
singer :
@@ -73,7 +80,7 @@ export class BaseAdapter {
73
80
isFreeTrial : songData . playUrlInfo ? Boolean ( songData . playUrlInfo . freeTrialInfo ) : undefined ,
74
81
75
82
// extension
76
- ext : url && trimStart ( extname ( url ) , '.' ) ,
83
+ ext,
77
84
78
85
// index, first as 01
79
86
index : String ( index + 1 ) . padStart ( len , '0' ) ,
Original file line number Diff line number Diff line change @@ -3,25 +3,25 @@ import { Playlist } from '$define'
3
3
import { BaseAdapter } from './base'
4
4
5
5
export class PlaylistAdapter extends BaseAdapter {
6
- # playlist: Playlist
6
+ private playlist : Playlist
7
7
private async fetchPlaylist ( ) {
8
- if ( this . # playlist) return
9
- this . # playlist = await playlistDetail ( this . id )
8
+ if ( this . playlist ) return
9
+ this . playlist = await playlistDetail ( this . id )
10
10
}
11
11
12
12
async getTitle ( ) {
13
13
await this . fetchPlaylist ( )
14
- return this . # playlist. name
14
+ return this . playlist . name
15
15
}
16
16
17
17
async getCover ( ) {
18
18
await this . fetchPlaylist ( )
19
- return this . # playlist. coverImgUrl
19
+ return this . playlist . coverImgUrl
20
20
}
21
21
22
22
async getSongDatas ( ) {
23
23
await this . fetchPlaylist ( )
24
- const trackIds = this . # playlist. trackIds . map ( ( x ) => x . id )
24
+ const trackIds = this . playlist . trackIds . map ( ( x ) => x . id )
25
25
const songDatas = await songDetail ( trackIds )
26
26
return songDatas
27
27
}
You can’t perform that action at this time.
0 commit comments