mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-27 11:18:14 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			64 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const fs = require('fs-extra')
 | 
						|
const Logger = require('../Logger')
 | 
						|
const Path = require('path')
 | 
						|
const Audnexus = require('../providers/Audnexus')
 | 
						|
 | 
						|
const { downloadFile } = require('../utils/fileUtils')
 | 
						|
const filePerms = require('../utils/filePerms')
 | 
						|
 | 
						|
class AuthorFinder {
 | 
						|
  constructor() {
 | 
						|
    this.AuthorPath = Path.join(global.MetadataPath, 'authors')
 | 
						|
 | 
						|
    this.audnexus = new Audnexus()
 | 
						|
  }
 | 
						|
 | 
						|
  async downloadImage(url, outputPath) {
 | 
						|
    return downloadFile(url, outputPath).then(() => true).catch((error) => {
 | 
						|
      Logger.error('[AuthorFinder] Failed to download author image', error)
 | 
						|
      return null
 | 
						|
    })
 | 
						|
  }
 | 
						|
 | 
						|
  findAuthorByASIN(asin) {
 | 
						|
    if (!asin) return null
 | 
						|
    return this.audnexus.findAuthorByASIN(asin)
 | 
						|
  }
 | 
						|
 | 
						|
  async findAuthorByName(name, options = {}) {
 | 
						|
    if (!name) return null
 | 
						|
    const maxLevenshtein = !isNaN(options.maxLevenshtein) ? Number(options.maxLevenshtein) : 3
 | 
						|
 | 
						|
    var author = await this.audnexus.findAuthorByName(name, maxLevenshtein)
 | 
						|
    if (!author || !author.name) {
 | 
						|
      return null
 | 
						|
    }
 | 
						|
    return author
 | 
						|
  }
 | 
						|
 | 
						|
  async saveAuthorImage(authorId, url) {
 | 
						|
    var authorDir = this.AuthorPath
 | 
						|
    var relAuthorDir = Path.posix.join('/metadata', 'authors')
 | 
						|
 | 
						|
    if (!await fs.pathExists(authorDir)) {
 | 
						|
      await fs.ensureDir(authorDir)
 | 
						|
      await filePerms.setDefault(authorDir)
 | 
						|
    }
 | 
						|
 | 
						|
    var imageExtension = url.toLowerCase().split('.').pop()
 | 
						|
    var ext = imageExtension === 'png' ? 'png' : 'jpg'
 | 
						|
    var filename = authorId + '.' + ext
 | 
						|
    var outputPath = Path.posix.join(authorDir, filename)
 | 
						|
    var relPath = Path.posix.join(relAuthorDir, filename)
 | 
						|
 | 
						|
    var success = await this.downloadImage(url, outputPath)
 | 
						|
    if (!success) {
 | 
						|
      return null
 | 
						|
    }
 | 
						|
    return {
 | 
						|
      path: outputPath,
 | 
						|
      relPath
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
module.exports = AuthorFinder |