File size: 10,558 Bytes
b58c6cb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { PassThrough } from 'node:stream'

import config from '../../config.js'
import { debugLog, encodeTrack, http1makeRequest, loadHLS } from '../utils.js'
import searchWithDefault from './default.js'
import sources from '../sources.js'

const sourceInfo = {
  clientId: null
}

async function init() {
  if (config.search.sources.soundcloud.clientId !== 'AUTOMATIC') {
    sourceInfo.clientId = config.search.sources.soundcloud.clientId

    return;
  }

  debugLog('soundcloud', 5, { type: 1, message: 'clientId not provided. Fetching clientId...' })

  const { body: mainpage } = await http1makeRequest('https://soundcloud.com', {
    method: 'GET'
  }).catch(() => {
    debugLog('soundcloud', 5, { type: 2, message: 'Failed to fetch clientId.' })
  })

  const assetId = mainpage.match(/https:\/\/a-v2.sndcdn.com\/assets\/([a-zA-Z0-9-]+).js/gs)[5]

  const { body: data } = await http1makeRequest(assetId, {
    method: 'GET'
  }).catch(() => {
    debugLog('soundcloud', 5, { type: 2, message: 'Failed to fetch clientId.' })
  })

  const clientId = data.match(/client_id=([a-zA-Z0-9]{32})/)[1]

  if (!clientId) {
    debugLog('soundcloud', 5, { type: 2, message: 'Failed to fetch clientId.' })

    return;
  }

  sourceInfo.clientId = clientId

  debugLog('soundcloud', 5, { type: 1, message: 'Successfully fetched clientId.' })
}

async function loadFrom(url) {
  let req = await http1makeRequest(`https://api-v2.soundcloud.com/resolve?url=${encodeURI(url)}&client_id=${sourceInfo.clientId}`, { method: 'GET' })

  if (req.error || req.statusCode !== 200) {
    const errorMessage = req.error ? req.error.message : `SoundCloud returned invalid status code: ${req.statusCode}`

    debugLog('loadtracks', 4, { type: 2, loadType: 'unknown', sourceName: 'Soundcloud', query: url, message: errorMessage })

    return {
      loadType: 'error',
      data: {
        message: errorMessage,
        severity: 'fault',
        cause: 'Unknown'
      }
    }
  }

  const body = req.body

  if (typeof body !== 'object') {
    debugLog('loadtracks', 4, { type: 3, loadType: 'unknown', sourceName: 'Soundcloud', query: url, message: 'Invalid response from SoundCloud.' })

    return {
      loadType: 'error',
      data: {
        message: 'Invalid response from SoundCloud.',
        severity: 'common',
        cause: 'Unknown'
      }
    }
  }

  debugLog('loadtracks', 4, { type: 1, loadType: body.kind || 'unknown', sourceName: 'SoundCloud', query: url })

  if (Object.keys(body).length === 0) {
    debugLog('loadtracks', 4, { type: 3, loadType: body.kind || 'unknown', sourceName: 'Soundcloud', query: url, message: 'No matches found.' })

    return {
      loadType: 'empty',
      data: {}
    }
  }

  switch (body.kind) {
    case 'track': {
      const track = {
        identifier: body.id.toString(),
        isSeekable: true,
        author: body.user.username,
        length: body.duration,
        isStream: false,
        position: 0,
        title: body.title,
        uri: body.permalink_url,
        artworkUrl: body.artwork_url,
        isrc: body.publisher_metadata ? body.publisher_metadata.isrc : null,
        sourceName: 'soundcloud'
      }

      debugLog('loadtracks', 4, { type: 2, loadType: 'track', sourceName: 'SoundCloud', track, query: url })

      return {
        loadType: 'track',
        data: {
          encoded: encodeTrack(track),
          info: track,
          playlistInfo: {}
        }
      }
    }
    case 'playlist': {
      const tracks = []
      const notLoaded = []

      if (body.tracks.length > config.options.maxAlbumPlaylistLength)
        data.tracks = body.tracks.slice(0, config.options.maxAlbumPlaylistLength)

      body.tracks.forEach((item) => {
        if (!item.title) {
          notLoaded.push(item.id.toString())

          return;
        }

        const track = {
          identifier: item.id.toString(),
          isSeekable: true,
          author: item.user.username,
          length: item.duration,
          isStream: false,
          position: 0,
          title: item.title,
          uri: item.permalink_url,
          artworkUrl: item.artwork_url,
          isrc: item.publisher_metadata?.isrc,
          sourceName: 'soundcloud'
        }

        tracks.push({
          encoded: encodeTrack(track),
          info: track,
          playlistInfo: {}
        })
      })

      if (notLoaded.length) {
        let stop = false

        while ((notLoaded.length && !stop) && (tracks.length > config.options.maxAlbumPlaylistLength)) {
          const notLoadedLimited = notLoaded.slice(0, 50)
          data = await http1makeRequest(`https://api-v2.soundcloud.com/tracks?ids=${notLoadedLimited.join('%2C')}&client_id=${sourceInfo.clientId}`, { method: 'GET' })
          data = data.body

          data.forEach((item) => {
            const track = {
              identifier: item.id.toString(),
              isSeekable: true,
              author: item.user.username,
              length: item.duration,
              isStream: false,
              position: 0,
              title: item.title,
              uri: item.permalink_url,
              artworkUrl: item.artwork_url,
              isrc: item.publisher_metadata ? item.publisher_metadata.isrc : null,
              sourceName: 'soundcloud'
            }

            tracks.push({
              encoded: encodeTrack(track),
              info: track,
              playlistInfo: {}
            })
          })

          notLoaded.splice(0, 50)

          if (notLoaded.length === 0)
            stop = true
        }
      }

      debugLog('loadtracks', 4, { type: 2, loadType: 'playlist', sourceName: 'SoundCloud', playlistName: data.title })

      return {
        loadType: 'playlist',
        data: {
          info: {
            name: data.title,
            selectedTrack: 0,
          },
          pluginInfo: {},
          tracks,
        }
      }
    }
    case 'user': {
      debugLog('loadtracks', 4, { type: 2, loadType: 'artist', sourceName: 'SoundCloud', playlistName: data.full_name })

      return {
        loadType: 'empty',
        data: {}
      }
    }
  }
}

async function search(query, shouldLog) {
  if (shouldLog) debugLog('search', 4, { type: 1, sourceName: 'SoundCloud', query })

  const req = await http1makeRequest(`https://api-v2.soundcloud.com/search?q=${encodeURI(query)}&variant_ids=&facet=model&user_id=992000-167630-994991-450103&client_id=${sourceInfo.clientId}&limit=${config.options.maxResultsLength}&offset=0&linked_partitioning=1&app_version=1679652891&app_locale=en`, { method: 'GET' })
  const body = req.body

  if (req.error || req.statusCode !== 200) {
    const errorMessage = req.error ? req.error.message : `SoundCloud returned invalid status code: ${req.statusCode}`

    debugLog('search', 4, { type: 2, sourceName: 'SoundCloud', query, message: errorMessage })

    return {
      exception: {
        message: errorMessage,
        severity: 'fault',
        cause: 'Unknown'
      }
    }
  }

  if (body.total_results === 0) {
    debugLog('search', 4, { type: 2, sourceName: 'SoundCloud', query, message: 'No matches found.' })

    return {
      loadType: 'empty',
      data: {}
    }
  }

  const tracks = []

  if (body.collection.length > config.options.maxSearchResults)
    body.collection = body.collection.filter((item, i) => i < config.options.maxSearchResults || item.kind === 'track')

  body.collection.forEach((item) => {
    if (item.kind !== 'track') return;
    
    const track = {
      identifier: item.id.toString(),
      isSeekable: true,
      author: item.user.username,
      length: item.duration,
      isStream: false,
      position: 0,
      title: item.title,
      uri: item.uri,
      artworkUrl: item.artwork_url,
      isrc: null,
      sourceName: 'soundcloud'
    }

    tracks.push({
      encoded: encodeTrack(track),
      info: track,
      pluginInfo: {}
    })
  })

  if (shouldLog)
    debugLog('search', 4, { type: 2, sourceName: 'SoundCloud', tracksLen: tracks.length, query })

  return {
    loadType: 'search',
    data: tracks
  }
}

async function retrieveStream(identifier, title) {
  const req = await http1makeRequest(`https://api-v2.soundcloud.com/resolve?url=https://api.soundcloud.com/tracks/${identifier}&client_id=${sourceInfo.clientId}`, { method: 'GET' })
  const body = req.body

  if (req.error || req.statusCode !== 200) {
    const errorMessage = req.error ? req.error.message : `SoundCloud returned invalid status code: ${req.statusCode}`

    debugLog('retrieveStream', 4, { type: 2, sourceName: 'SoundCloud', query: title, message: errorMessage })

    return {
      exception: {
        message: errorMessage,
        severity: 'fault',
        cause: 'Unknown'
      }
    }
  }

  if (body.errors) {
    debugLog('retrieveStream', 4, { type: 2, sourceName: 'SoundCloud', query: title, message: body.errors[0].error_message })

    return {
      exception: {
        message: body.errors[0].error_message,
        severity: 'fault',
        cause: 'Unknown'
      }
    }
  }

  const oggOpus = body.media.transcodings.find((transcoding) => transcoding.format.mime_type === 'audio/ogg; codecs="opus"')
  const transcoding = oggOpus || body.media.transcodings[0]

  if (transcoding.snipped && config.search.sources.soundcloud.fallbackIfSnipped) {
    debugLog('retrieveStream', 4, { type: 2, sourceName: 'SoundCloud', query: title, message: `Track is snipped, falling back to: ${config.search.fallbackSearchSource}.` })

    const search = await searchWithDefault(title, true)

    if (search.loadType === 'search') {
      const urlInfo = await sources.getTrackURL(search.data[0].info)

      return {
        url: urlInfo.url,
        protocol: urlInfo.protocol,
        format: urlInfo.format,
        additionalData: true
      }
    }
  }

  return {
    url: `${transcoding.url}?client_id=${sourceInfo.clientId}`,
    protocol: transcoding.format.protocol,
    format: oggOpus ? 'ogg/opus' : 'arbitrary'
  }
}

async function loadHLSStream(url) {
  const streamHlsRedirect = await http1makeRequest(url, { method: 'GET' })

  const stream = new PassThrough()
  await loadHLS(streamHlsRedirect.body.url, stream)

  return stream
}

async function loadFilters(url, protocol) {
  if (protocol === 'hls') {
    const streamHlsRedirect = await http1makeRequest(url, { method: 'GET' })

    return streamHlsRedirect.body.url
  } else {
    return url
  }
}

export default {
  init,
  loadFrom,
  search,
  retrieveStream,
  loadHLSStream,
  loadFilters
}