mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-11-08 09:04:43 +01:00
230 lines
8.1 KiB
JavaScript
230 lines
8.1 KiB
JavaScript
|
const Path = require('path')
|
||
|
const packageJson = require('../../package.json')
|
||
|
const Logger = require('../Logger')
|
||
|
const SocketAuthority = require('../SocketAuthority')
|
||
|
const Database = require('../Database')
|
||
|
const fs = require('../libs/fsExtra')
|
||
|
const fileUtils = require('../utils/fileUtils')
|
||
|
const scanUtils = require('../utils/scandir')
|
||
|
const { ScanResult, LogLevel } = require('../utils/constants')
|
||
|
const LibraryItemScanData = require('./LibraryItemScanData')
|
||
|
|
||
|
class LibraryScanner {
|
||
|
constructor(coverManager, taskManager) {
|
||
|
this.coverManager = coverManager
|
||
|
this.taskManager = taskManager
|
||
|
|
||
|
this.cancelLibraryScan = {}
|
||
|
this.librariesScanning = []
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param {string} libraryId
|
||
|
* @returns {boolean}
|
||
|
*/
|
||
|
isLibraryScanning(libraryId) {
|
||
|
return this.librariesScanning.some(ls => ls.id === libraryId)
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @param {import('../objects/Library')} library
|
||
|
* @param {*} options
|
||
|
*/
|
||
|
async scan(library, options = {}) {
|
||
|
if (this.isLibraryScanning(library.id)) {
|
||
|
Logger.error(`[Scanner] Already scanning ${library.id}`)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
if (!library.folders.length) {
|
||
|
Logger.warn(`[Scanner] Library has no folders to scan "${library.name}"`)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
const scanOptions = new ScanOptions()
|
||
|
scanOptions.setData(options, Database.serverSettings)
|
||
|
|
||
|
const libraryScan = new LibraryScan()
|
||
|
libraryScan.setData(library, scanOptions)
|
||
|
libraryScan.verbose = true
|
||
|
this.librariesScanning.push(libraryScan.getScanEmitData)
|
||
|
|
||
|
SocketAuthority.emitter('scan_start', libraryScan.getScanEmitData)
|
||
|
|
||
|
Logger.info(`[Scanner] Starting library scan ${libraryScan.id} for ${libraryScan.libraryName}`)
|
||
|
|
||
|
const canceled = await this.scanLibrary(libraryScan)
|
||
|
|
||
|
if (canceled) {
|
||
|
Logger.info(`[Scanner] Library scan canceled for "${libraryScan.libraryName}"`)
|
||
|
delete this.cancelLibraryScan[libraryScan.libraryId]
|
||
|
}
|
||
|
|
||
|
libraryScan.setComplete()
|
||
|
|
||
|
Logger.info(`[Scanner] Library scan ${libraryScan.id} completed in ${libraryScan.elapsedTimestamp} | ${libraryScan.resultStats}`)
|
||
|
this.librariesScanning = this.librariesScanning.filter(ls => ls.id !== library.id)
|
||
|
|
||
|
if (canceled && !libraryScan.totalResults) {
|
||
|
const emitData = libraryScan.getScanEmitData
|
||
|
emitData.results = null
|
||
|
SocketAuthority.emitter('scan_complete', emitData)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
SocketAuthority.emitter('scan_complete', libraryScan.getScanEmitData)
|
||
|
|
||
|
if (libraryScan.totalResults) {
|
||
|
libraryScan.saveLog()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @param {import('./LibraryScan')} libraryScan
|
||
|
*/
|
||
|
async scanLibrary(libraryScan) {
|
||
|
/** @type {LibraryItemScanData[]} */
|
||
|
let libraryItemDataFound = []
|
||
|
|
||
|
// Scan each library folder
|
||
|
for (let i = 0; i < libraryScan.folders.length; i++) {
|
||
|
const folder = libraryScan.folders[i]
|
||
|
const itemDataFoundInFolder = await this.scanFolder(libraryScan.library, folder)
|
||
|
libraryScan.addLog(LogLevel.INFO, `${itemDataFoundInFolder.length} item data found in folder "${folder.fullPath}"`)
|
||
|
libraryItemDataFound = libraryItemDataFound.concat(itemDataFoundInFolder)
|
||
|
}
|
||
|
|
||
|
if (this.cancelLibraryScan[libraryScan.libraryId]) return true
|
||
|
|
||
|
const existingLibraryItems = await Database.libraryItemModel.findAll({
|
||
|
where: {
|
||
|
libraryId: libraryScan.libraryId
|
||
|
},
|
||
|
attributes: ['id', 'mediaId', 'mediaType', 'path', 'relPath', 'ino', 'isMissing', 'mtime', 'ctime', 'birthtime', 'libraryFiles', 'libraryFolderId']
|
||
|
})
|
||
|
|
||
|
const libraryItemIdsMissing = []
|
||
|
for (const existingLibraryItem of existingLibraryItems) {
|
||
|
// First try to find matching library item with exact file path
|
||
|
let libraryItemData = libraryItemDataFound.find(lid => lid.path === existingLibraryItem.path)
|
||
|
if (!libraryItemData) {
|
||
|
// Fallback to finding matching library item with matching inode value
|
||
|
libraryItemData = libraryItemDataFound.find(lid => lid.ino === existingLibraryItem.ino)
|
||
|
if (libraryItemData) {
|
||
|
libraryScan.addLog(LogLevel.INFO, `Library item with path "${existingLibraryItem.path}" was not found, but library item inode "${existingLibraryItem.ino}" was found at path "${libraryItemData.path}"`)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (!libraryItemData) {
|
||
|
// Podcast folder can have no episodes and still be valid
|
||
|
if (libraryScan.libraryMediaType === 'podcast' && await fs.pathExists(existingLibraryItem.path)) {
|
||
|
libraryScan.addLog(LogLevel.INFO, `Library item "${existingLibraryItem.relPath}" folder exists but has no episodes`)
|
||
|
} else {
|
||
|
libraryScan.addLog(LogLevel.WARN, `Library Item "${existingLibraryItem.path}" (inode: ${existingLibraryItem.ino}) is missing`)
|
||
|
if (!existingLibraryItem.isMissing) {
|
||
|
libraryItemIdsMissing.push(existingLibraryItem.id)
|
||
|
}
|
||
|
}
|
||
|
} else {
|
||
|
await libraryItemData.checkLibraryItemData(existingLibraryItem, libraryScan)
|
||
|
if (libraryItemData.hasChanges) {
|
||
|
await this.rescanLibraryItem(existingLibraryItem, libraryItemData)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Update missing library items
|
||
|
if (libraryItemIdsMissing.length) {
|
||
|
libraryScan.addLog(LogLevel.INFO, `Updating ${libraryItemIdsMissing.length} library items missing`)
|
||
|
await Database.libraryItemModel.update({
|
||
|
isMissing: true,
|
||
|
lastScan: Date.now(),
|
||
|
lastScanVersion: packageJson.version
|
||
|
}, {
|
||
|
where: {
|
||
|
id: libraryItemIdsMissing
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get scan data for library folder
|
||
|
* @param {import('../objects/Library')} library
|
||
|
* @param {import('../objects/Folder')} folder
|
||
|
* @returns {LibraryItemScanData[]}
|
||
|
*/
|
||
|
async scanFolder(library, folder) {
|
||
|
const folderPath = fileUtils.filePathToPOSIX(folder.fullPath)
|
||
|
|
||
|
const pathExists = await fs.pathExists(folderPath)
|
||
|
if (!pathExists) {
|
||
|
Logger.error(`[scandir] Invalid folder path does not exist "${folderPath}"`)
|
||
|
return []
|
||
|
}
|
||
|
|
||
|
const fileItems = await fileUtils.recurseFiles(folderPath)
|
||
|
const libraryItemGrouping = scanUtils.groupFileItemsIntoLibraryItemDirs(library.mediaType, fileItems, library.settings.audiobooksOnly)
|
||
|
|
||
|
if (!Object.keys(libraryItemGrouping).length) {
|
||
|
Logger.error(`Root path has no media folders: ${folderPath}`)
|
||
|
return []
|
||
|
}
|
||
|
|
||
|
const items = []
|
||
|
for (const libraryItemPath in libraryItemGrouping) {
|
||
|
let isFile = false // item is not in a folder
|
||
|
let libraryItemData = null
|
||
|
let fileObjs = []
|
||
|
if (libraryItemPath === libraryItemGrouping[libraryItemPath]) {
|
||
|
// Media file in root only get title
|
||
|
libraryItemData = {
|
||
|
mediaMetadata: {
|
||
|
title: Path.basename(libraryItemPath, Path.extname(libraryItemPath))
|
||
|
},
|
||
|
path: Path.posix.join(folderPath, libraryItemPath),
|
||
|
relPath: libraryItemPath
|
||
|
}
|
||
|
fileObjs = await scanUtils.buildLibraryFile(folderPath, [libraryItemPath])
|
||
|
isFile = true
|
||
|
} else {
|
||
|
libraryItemData = scanUtils.getDataFromMediaDir(library.mediaType, folderPath, libraryItemPath)
|
||
|
fileObjs = await scanUtils.buildLibraryFile(libraryItemData.path, libraryItemGrouping[libraryItemPath])
|
||
|
}
|
||
|
|
||
|
const libraryItemFolderStats = await fileUtils.getFileTimestampsWithIno(libraryItemData.path)
|
||
|
|
||
|
if (!libraryItemFolderStats.ino) {
|
||
|
Logger.warn(`[LibraryScanner] Library item folder "${libraryItemData.path}" has no inode value`)
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
items.push(new LibraryItemScanData({
|
||
|
libraryFolderId: folder.id,
|
||
|
libraryId: folder.libraryId,
|
||
|
ino: libraryItemFolderStats.ino,
|
||
|
mtimeMs: libraryItemFolderStats.mtimeMs || 0,
|
||
|
ctimeMs: libraryItemFolderStats.ctimeMs || 0,
|
||
|
birthtimeMs: libraryItemFolderStats.birthtimeMs || 0,
|
||
|
path: libraryItemData.path,
|
||
|
relPath: libraryItemData.relPath,
|
||
|
isFile,
|
||
|
mediaMetadata: libraryItemData.mediaMetadata || null,
|
||
|
libraryFiles: fileObjs
|
||
|
}))
|
||
|
}
|
||
|
return items
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @param {import('../models/LibraryItem')} existingLibraryItem
|
||
|
* @param {LibraryItemScanData} libraryItemData
|
||
|
*/
|
||
|
async rescanLibraryItem(existingLibraryItem, libraryItemData) {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
module.exports = LibraryScanner
|