mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-11-07 16:44:16 +01:00
25 lines
797 B
JavaScript
25 lines
797 B
JavaScript
const Logger = require('../Logger')
|
|
const iTunes = require('../providers/iTunes')
|
|
|
|
class PodcastFinder {
|
|
constructor() {
|
|
this.iTunesApi = new iTunes()
|
|
}
|
|
|
|
async search(term, options = {}) {
|
|
if (!term) return null
|
|
Logger.debug(`[iTunes] Searching for podcast with term "${term}"`)
|
|
var results = await this.iTunesApi.searchPodcasts(term, options)
|
|
Logger.debug(`[iTunes] Podcast search for "${term}" returned ${results.length} results`)
|
|
return results
|
|
}
|
|
|
|
async findCovers(term) {
|
|
if (!term) return null
|
|
Logger.debug(`[iTunes] Searching for podcast covers with term "${term}"`)
|
|
var results = await this.iTunesApi.searchPodcasts(term)
|
|
if (!results) return []
|
|
return results.map(r => r.cover).filter(r => r)
|
|
}
|
|
}
|
|
module.exports = new PodcastFinder() |