const { DataTypes, Model } = require('sequelize') const Logger = require('../Logger') /** * @typedef LibrarySettingsObject * @property {number} coverAspectRatio BookCoverAspectRatio * @property {boolean} disableWatcher * @property {boolean} skipMatchingMediaWithAsin * @property {boolean} skipMatchingMediaWithIsbn * @property {string} autoScanCronExpression * @property {boolean} audiobooksOnly * @property {boolean} hideSingleBookSeries Do not show series that only have 1 book * @property {boolean} onlyShowLaterBooksInContinueSeries Skip showing books that are earlier than the max sequence read * @property {string[]} metadataPrecedence */ class Library extends Model { constructor(values, options) { super(values, options) /** @type {UUIDV4} */ this.id /** @type {string} */ this.name /** @type {number} */ this.displayOrder /** @type {string} */ this.icon /** @type {string} */ this.mediaType /** @type {string} */ this.provider /** @type {Date} */ this.lastScan /** @type {string} */ this.lastScanVersion /** @type {LibrarySettingsObject} */ this.settings /** @type {Object} */ this.extraData /** @type {Date} */ this.createdAt /** @type {Date} */ this.updatedAt /** @type {import('./LibraryFolder')[]|undefined} */ this.libraryFolders } /** * * @param {string} mediaType * @returns */ static getDefaultLibrarySettingsForMediaType(mediaType) { if (mediaType === 'podcast') { return { coverAspectRatio: 1, // Square disableWatcher: false, autoScanCronExpression: null, podcastSearchRegion: 'us' } } else { return { coverAspectRatio: 1, // Square disableWatcher: false, autoScanCronExpression: null, skipMatchingMediaWithAsin: false, skipMatchingMediaWithIsbn: false, audiobooksOnly: false, epubsAllowScriptedContent: false, hideSingleBookSeries: false, onlyShowLaterBooksInContinueSeries: false, metadataPrecedence: ['folderStructure', 'audioMetatags', 'nfoFile', 'txtFiles', 'opfFile', 'absMetadata'] } } } /** * * @returns {Promise} */ static getAllWithFolders() { return this.findAll({ include: this.sequelize.models.libraryFolder, order: [['displayOrder', 'ASC']] }) } /** * * @param {string} libraryId * @returns {Promise} */ static findByIdWithFolders(libraryId) { return this.findByPk(libraryId, { include: this.sequelize.models.libraryFolder }) } /** * Destroy library by id * @param {string} libraryId * @returns */ static removeById(libraryId) { return this.destroy({ where: { id: libraryId } }) } /** * Get all library ids * @returns {Promise} array of library ids */ static async getAllLibraryIds() { const libraries = await this.findAll({ attributes: ['id', 'displayOrder'], order: [['displayOrder', 'ASC']] }) return libraries.map((l) => l.id) } /** * Get the largest value in the displayOrder column * Used for setting a new libraries display order * @returns {Promise} */ static getMaxDisplayOrder() { return this.max('displayOrder') || 0 } /** * Updates displayOrder to be sequential * Used after removing a library */ static async resetDisplayOrder() { const libraries = await this.findAll({ order: [['displayOrder', 'ASC']] }) for (let i = 0; i < libraries.length; i++) { const library = libraries[i] if (library.displayOrder !== i + 1) { Logger.debug(`[Library] Updating display order of library from ${library.displayOrder} to ${i + 1}`) await library.update({ displayOrder: i + 1 }).catch((error) => { Logger.error(`[Library] Failed to update library display order to ${i + 1}`, error) }) } } } /** * Initialize model * @param {import('../Database').sequelize} sequelize */ static init(sequelize) { super.init( { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true }, name: DataTypes.STRING, displayOrder: DataTypes.INTEGER, icon: DataTypes.STRING, mediaType: DataTypes.STRING, provider: DataTypes.STRING, lastScan: DataTypes.DATE, lastScanVersion: DataTypes.STRING, settings: DataTypes.JSON, extraData: DataTypes.JSON }, { sequelize, modelName: 'library' } ) } get isPodcast() { return this.mediaType === 'podcast' } get isBook() { return this.mediaType === 'book' } /** * @returns {string[]} */ get lastScanMetadataPrecedence() { return this.extraData?.lastScanMetadataPrecedence || [] } /** * TODO: Update to use new model */ toOldJSON() { return { id: this.id, name: this.name, folders: (this.libraryFolders || []).map((f) => f.toOldJSON()), displayOrder: this.displayOrder, icon: this.icon, mediaType: this.mediaType, provider: this.provider, settings: { ...this.settings }, lastScan: this.lastScan?.valueOf() || null, lastScanVersion: this.lastScanVersion, createdAt: this.createdAt.valueOf(), lastUpdate: this.updatedAt.valueOf() } } } module.exports = Library