Merge pull request #2733 from kaldigo/master

Added isbn to CustomProviderAdapter
This commit is contained in:
advplyr 2024-03-13 17:21:51 -05:00 committed by GitHub
commit 2584c3b432
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 4 deletions

View File

@ -153,10 +153,11 @@ class BookFinder {
* *
* @param {string} title * @param {string} title
* @param {string} author * @param {string} author
* @param {string} isbn
* @param {string} providerSlug * @param {string} providerSlug
* @returns {Promise<Object[]>} * @returns {Promise<Object[]>}
*/ */
async getCustomProviderResults(title, author, providerSlug) { async getCustomProviderResults(title, author, isbn, providerSlug) {
const books = await this.customProviderAdapter.search(title, author, providerSlug, 'book') const books = await this.customProviderAdapter.search(title, author, providerSlug, 'book')
if (this.verbose) Logger.debug(`Custom provider '${providerSlug}' Search Results: ${books.length || 0}`) if (this.verbose) Logger.debug(`Custom provider '${providerSlug}' Search Results: ${books.length || 0}`)
@ -333,7 +334,7 @@ class BookFinder {
// Custom providers are assumed to be correct // Custom providers are assumed to be correct
if (provider.startsWith('custom-')) { if (provider.startsWith('custom-')) {
return this.getCustomProviderResults(title, author, provider) return this.getCustomProviderResults(title, author, isbn, provider)
} }
if (!title) if (!title)

View File

@ -9,11 +9,12 @@ class CustomProviderAdapter {
* *
* @param {string} title * @param {string} title
* @param {string} author * @param {string} author
* @param {string} isbn
* @param {string} providerSlug * @param {string} providerSlug
* @param {string} mediaType * @param {string} mediaType
* @returns {Promise<Object[]>} * @returns {Promise<Object[]>}
*/ */
async search(title, author, providerSlug, mediaType) { async search(title, author, isbn, providerSlug, mediaType) {
const providerId = providerSlug.split('custom-')[1] const providerId = providerSlug.split('custom-')[1]
const provider = await Database.customMetadataProviderModel.findByPk(providerId) const provider = await Database.customMetadataProviderModel.findByPk(providerId)
@ -29,6 +30,9 @@ class CustomProviderAdapter {
if (author) { if (author) {
queryObj.author = author queryObj.author = author
} }
if (isbn) {
queryObj.isbn = isbn
}
const queryString = (new URLSearchParams(queryObj)).toString() const queryString = (new URLSearchParams(queryObj)).toString()
// Setup headers // Setup headers