mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-11-03 19:07:00 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			78 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const axios = require('axios')
 | 
						|
const Logger = require('../Logger')
 | 
						|
 | 
						|
class GoogleBooks {
 | 
						|
  #responseTimeout = 30000
 | 
						|
 | 
						|
  constructor() {}
 | 
						|
 | 
						|
  extractIsbn(industryIdentifiers) {
 | 
						|
    if (!industryIdentifiers || !industryIdentifiers.length) return null
 | 
						|
 | 
						|
    var isbnObj = industryIdentifiers.find((i) => i.type === 'ISBN_13') || industryIdentifiers.find((i) => i.type === 'ISBN_10')
 | 
						|
    if (isbnObj && isbnObj.identifier) return isbnObj.identifier
 | 
						|
    return null
 | 
						|
  }
 | 
						|
 | 
						|
  cleanResult(item) {
 | 
						|
    var { id, volumeInfo } = item
 | 
						|
    if (!volumeInfo) return null
 | 
						|
    const { title, subtitle, authors, publisher, publisherDate, description, industryIdentifiers, categories, imageLinks } = volumeInfo
 | 
						|
 | 
						|
    let cover = null
 | 
						|
    // Selects the largest cover assuming the largest is the last key in the object
 | 
						|
    if (imageLinks && Object.keys(imageLinks).length) {
 | 
						|
      cover = imageLinks[Object.keys(imageLinks).pop()]
 | 
						|
      cover = cover?.replace(/^http:/, 'https:') || null
 | 
						|
    }
 | 
						|
 | 
						|
    return {
 | 
						|
      id,
 | 
						|
      title,
 | 
						|
      subtitle: subtitle || null,
 | 
						|
      author: authors ? authors.join(', ') : null,
 | 
						|
      publisher,
 | 
						|
      publishedYear: publisherDate ? publisherDate.split('-')[0] : null,
 | 
						|
      description,
 | 
						|
      cover,
 | 
						|
      genres: categories && Array.isArray(categories) ? [...categories] : null,
 | 
						|
      isbn: this.extractIsbn(industryIdentifiers)
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  /**
 | 
						|
   * Search for a book by title and author
 | 
						|
   * @param {string} title
 | 
						|
   * @param {string} author
 | 
						|
   * @param {number} [timeout] response timeout in ms
 | 
						|
   * @returns {Promise<Object[]>}
 | 
						|
   **/
 | 
						|
  async search(title, author, timeout = this.#responseTimeout) {
 | 
						|
    if (!timeout || isNaN(timeout)) timeout = this.#responseTimeout
 | 
						|
 | 
						|
    title = encodeURIComponent(title)
 | 
						|
    let queryString = `q=intitle:${title}`
 | 
						|
    if (author) {
 | 
						|
      author = encodeURIComponent(author)
 | 
						|
      queryString += `+inauthor:${author}`
 | 
						|
    }
 | 
						|
    const url = `https://www.googleapis.com/books/v1/volumes?${queryString}`
 | 
						|
    Logger.debug(`[GoogleBooks] Search url: ${url}`)
 | 
						|
    const items = await axios
 | 
						|
      .get(url, {
 | 
						|
        timeout
 | 
						|
      })
 | 
						|
      .then((res) => {
 | 
						|
        if (!res || !res.data || !res.data.items) return []
 | 
						|
        return res.data.items
 | 
						|
      })
 | 
						|
      .catch((error) => {
 | 
						|
        Logger.error('[GoogleBooks] Volume search error', error)
 | 
						|
        return []
 | 
						|
      })
 | 
						|
    return items.map((item) => this.cleanResult(item))
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
module.exports = GoogleBooks
 |