mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-10 14:52:51 +02:00
Move cover path func to LibraryItem model
This commit is contained in:
@@ -863,6 +863,33 @@ class LibraryItem extends Model {
|
||||
return this.getOldLibraryItem(libraryItem)
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param {string} libraryItemId
|
||||
* @returns {Promise<string>}
|
||||
*/
|
||||
static async getCoverPath(libraryItemId) {
|
||||
const libraryItem = await this.findByPk(libraryItemId, {
|
||||
attributes: ['id', 'mediaType', 'mediaId', 'libraryId'],
|
||||
include: [
|
||||
{
|
||||
model: this.bookModel,
|
||||
attributes: ['id', 'coverPath']
|
||||
},
|
||||
{
|
||||
model: this.podcastModel,
|
||||
attributes: ['id', 'coverPath']
|
||||
}
|
||||
]
|
||||
})
|
||||
if (!libraryItem) {
|
||||
Logger.warn(`[LibraryItem] getCoverPath: Library item "${libraryItemId}" does not exist`)
|
||||
return null
|
||||
}
|
||||
|
||||
return libraryItem.media.coverPath
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param {import('sequelize').FindOptions} options
|
||||
|
||||
Reference in New Issue
Block a user