mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-11-08 00:54:33 +01:00
54 lines
1.7 KiB
JavaScript
54 lines
1.7 KiB
JavaScript
const axios = require('axios')
|
|
const Logger = require('../Logger')
|
|
|
|
class GoogleBooks {
|
|
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
|
|
var { title, subtitle, authors, publisher, publisherDate, description, industryIdentifiers, categories, imageLinks } = volumeInfo
|
|
|
|
return {
|
|
id,
|
|
title,
|
|
subtitle: subtitle || null,
|
|
author: authors ? authors.join(', ') : null,
|
|
publisher,
|
|
publishedYear: publisherDate ? publisherDate.split('-')[0] : null,
|
|
description,
|
|
cover: imageLinks && imageLinks.thumbnail ? imageLinks.thumbnail : null,
|
|
genres: categories ? categories.join(', ') : null,
|
|
isbn: this.extractIsbn(industryIdentifiers)
|
|
}
|
|
}
|
|
|
|
async search(title, author) {
|
|
title = encodeURIComponent(title)
|
|
var queryString = `q=intitle:${title}`
|
|
if (author) {
|
|
author = encodeURIComponent(author)
|
|
queryString += `+inauthor:${author}`
|
|
}
|
|
var url = `https://www.googleapis.com/books/v1/volumes?${queryString}`
|
|
Logger.debug(`[GoogleBooks] Search url: ${url}`)
|
|
var items = await axios.get(url).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 |