mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-20 19:06:06 +01:00
261 lines
7.8 KiB
JavaScript
261 lines
7.8 KiB
JavaScript
const Path = require('path')
|
|
const fs = require('../libs/fsExtra')
|
|
const Logger = require('../Logger')
|
|
const filePerms = require('../utils/filePerms')
|
|
const patternValidation = require('../libs/nodeCron/pattern-validation')
|
|
const { isObject } = require('../utils/index')
|
|
|
|
//
|
|
// This is a controller for routes that don't have a home yet :(
|
|
//
|
|
class MiscController {
|
|
constructor() { }
|
|
|
|
// POST: api/upload
|
|
async handleUpload(req, res) {
|
|
if (!req.user.canUpload) {
|
|
Logger.warn('User attempted to upload without permission', req.user)
|
|
return res.sendStatus(403)
|
|
}
|
|
var files = Object.values(req.files)
|
|
var title = req.body.title
|
|
var author = req.body.author
|
|
var series = req.body.series
|
|
var libraryId = req.body.library
|
|
var folderId = req.body.folder
|
|
|
|
var library = this.db.libraries.find(lib => lib.id === libraryId)
|
|
if (!library) {
|
|
return res.status(500).send(`Library not found with id ${libraryId}`)
|
|
}
|
|
var folder = library.folders.find(fold => fold.id === folderId)
|
|
if (!folder) {
|
|
return res.status(500).send(`Folder not found with id ${folderId} in library ${library.name}`)
|
|
}
|
|
|
|
if (!files.length || !title) {
|
|
return res.status(500).send(`Invalid post data`)
|
|
}
|
|
|
|
// For setting permissions recursively
|
|
var outputDirectory = ''
|
|
var firstDirPath = ''
|
|
|
|
if (library.isPodcast) { // Podcasts only in 1 folder
|
|
outputDirectory = Path.join(folder.fullPath, title)
|
|
firstDirPath = outputDirectory
|
|
} else {
|
|
firstDirPath = Path.join(folder.fullPath, author)
|
|
if (series && author) {
|
|
outputDirectory = Path.join(folder.fullPath, author, series, title)
|
|
} else if (author) {
|
|
outputDirectory = Path.join(folder.fullPath, author, title)
|
|
} else {
|
|
outputDirectory = Path.join(folder.fullPath, title)
|
|
}
|
|
}
|
|
|
|
var exists = await fs.pathExists(outputDirectory)
|
|
if (exists) {
|
|
Logger.error(`[Server] Upload directory "${outputDirectory}" already exists`)
|
|
return res.status(500).send(`Directory "${outputDirectory}" already exists`)
|
|
}
|
|
|
|
await fs.ensureDir(outputDirectory)
|
|
|
|
Logger.info(`Uploading ${files.length} files to`, outputDirectory)
|
|
|
|
for (let i = 0; i < files.length; i++) {
|
|
var file = files[i]
|
|
|
|
var path = Path.join(outputDirectory, file.name)
|
|
await file.mv(path).then(() => {
|
|
return true
|
|
}).catch((error) => {
|
|
Logger.error('Failed to move file', path, error)
|
|
return false
|
|
})
|
|
}
|
|
|
|
await filePerms.setDefault(firstDirPath)
|
|
|
|
res.sendStatus(200)
|
|
}
|
|
|
|
// GET: api/encode-m4b/:id
|
|
async encodeM4b(req, res) {
|
|
if (!req.user.isAdminOrUp) {
|
|
Logger.error('[MiscController] encodeM4b: Non-admin user attempting to make m4b', req.user)
|
|
return res.sendStatus(403)
|
|
}
|
|
|
|
var libraryItem = this.db.getLibraryItem(req.params.id)
|
|
if (!libraryItem || libraryItem.isMissing || libraryItem.isInvalid) {
|
|
Logger.error(`[MiscController] encodeM4b: library item not found or invalid ${req.params.id}`)
|
|
return res.status(404).send('Audiobook not found')
|
|
}
|
|
|
|
if (libraryItem.mediaType !== 'book') {
|
|
Logger.error(`[MiscController] encodeM4b: Invalid library item ${req.params.id}: not a book`)
|
|
return res.status(500).send('Invalid library item: not a book')
|
|
}
|
|
|
|
if (libraryItem.media.tracks.length <= 0) {
|
|
Logger.error(`[MiscController] encodeM4b: Invalid audiobook ${req.params.id}: no audio tracks`)
|
|
return res.status(500).send('Invalid audiobook: no audio tracks')
|
|
}
|
|
|
|
this.abMergeManager.startAudiobookMerge(req.user, libraryItem)
|
|
|
|
res.sendStatus(200)
|
|
}
|
|
|
|
// POST: api/encode-m4b/:id/cancel
|
|
async cancelM4bEncode(req, res) {
|
|
if (!req.user.isAdminOrUp) {
|
|
Logger.error('[MiscController] cancelM4bEncode: Non-admin user attempting to cancel m4b encode', req.user)
|
|
return res.sendStatus(403)
|
|
}
|
|
|
|
const workerTask = this.abMergeManager.getPendingTaskByLibraryItemId(req.params.id)
|
|
if (!workerTask) return res.sendStatus(404)
|
|
|
|
this.abMergeManager.cancelEncode(workerTask.task)
|
|
|
|
res.sendStatus(200)
|
|
}
|
|
|
|
// GET: api/tasks
|
|
getTasks(req, res) {
|
|
res.json({
|
|
tasks: this.taskManager.tasks.map(t => t.toJSON())
|
|
})
|
|
}
|
|
|
|
// PATCH: api/settings (admin)
|
|
async updateServerSettings(req, res) {
|
|
if (!req.user.isAdminOrUp) {
|
|
Logger.error('User other than admin attempting to update server settings', req.user)
|
|
return res.sendStatus(403)
|
|
}
|
|
var settingsUpdate = req.body
|
|
if (!settingsUpdate || !isObject(settingsUpdate)) {
|
|
return res.status(500).send('Invalid settings update object')
|
|
}
|
|
|
|
var madeUpdates = this.db.serverSettings.update(settingsUpdate)
|
|
if (madeUpdates) {
|
|
// If backup schedule is updated - update backup manager
|
|
if (settingsUpdate.backupSchedule !== undefined) {
|
|
this.backupManager.updateCronSchedule()
|
|
}
|
|
|
|
await this.db.updateServerSettings()
|
|
}
|
|
return res.json({
|
|
success: true,
|
|
serverSettings: this.db.serverSettings
|
|
})
|
|
}
|
|
|
|
// POST: api/cache/purge (admin)
|
|
async purgeCache(req, res) {
|
|
if (!req.user.isAdminOrUp) {
|
|
return res.sendStatus(403)
|
|
}
|
|
Logger.info(`[MiscController] Purging all cache`)
|
|
await this.cacheManager.purgeAll()
|
|
res.sendStatus(200)
|
|
}
|
|
|
|
// POST: api/cache/items/purge
|
|
async purgeItemsCache(req, res) {
|
|
if (!req.user.isAdminOrUp) {
|
|
return res.sendStatus(403)
|
|
}
|
|
Logger.info(`[MiscController] Purging items cache`)
|
|
await this.cacheManager.purgeItems()
|
|
res.sendStatus(200)
|
|
}
|
|
|
|
async findBooks(req, res) {
|
|
var provider = req.query.provider || 'google'
|
|
var title = req.query.title || ''
|
|
var author = req.query.author || ''
|
|
var results = await this.bookFinder.search(provider, title, author)
|
|
res.json(results)
|
|
}
|
|
|
|
async findCovers(req, res) {
|
|
var query = req.query
|
|
var podcast = query.podcast == 1
|
|
|
|
var result = null
|
|
if (podcast) result = await this.podcastFinder.findCovers(query.title)
|
|
else result = await this.bookFinder.findCovers(query.provider, query.title, query.author || null)
|
|
res.json(result)
|
|
}
|
|
|
|
async findPodcasts(req, res) {
|
|
var term = req.query.term
|
|
var results = await this.podcastFinder.search(term)
|
|
res.json(results)
|
|
}
|
|
|
|
async findAuthor(req, res) {
|
|
var query = req.query.q
|
|
var author = await this.authorFinder.findAuthorByName(query)
|
|
res.json(author)
|
|
}
|
|
|
|
async findChapters(req, res) {
|
|
var asin = req.query.asin
|
|
var region = (req.query.region || 'us').toLowerCase()
|
|
var chapterData = await this.bookFinder.findChapters(asin, region)
|
|
if (!chapterData) {
|
|
return res.json({ error: 'Chapters not found' })
|
|
}
|
|
res.json(chapterData)
|
|
}
|
|
|
|
authorize(req, res) {
|
|
if (!req.user) {
|
|
Logger.error('Invalid user in authorize')
|
|
return res.sendStatus(401)
|
|
}
|
|
const userResponse = this.auth.getUserLoginResponsePayload(req.user, this.rssFeedManager.feedsArray)
|
|
res.json(userResponse)
|
|
}
|
|
|
|
getAllTags(req, res) {
|
|
if (!req.user.isAdminOrUp) {
|
|
Logger.error(`[MiscController] Non-admin user attempted to getAllTags`)
|
|
return res.sendStatus(404)
|
|
}
|
|
var tags = []
|
|
this.db.libraryItems.forEach((li) => {
|
|
if (li.media.tags && li.media.tags.length) {
|
|
li.media.tags.forEach((tag) => {
|
|
if (!tags.includes(tag)) tags.push(tag)
|
|
})
|
|
}
|
|
})
|
|
res.json(tags)
|
|
}
|
|
|
|
validateCronExpression(req, res) {
|
|
const expression = req.body.expression
|
|
if (!expression) {
|
|
return res.sendStatus(400)
|
|
}
|
|
|
|
try {
|
|
patternValidation(expression)
|
|
res.sendStatus(200)
|
|
} catch (error) {
|
|
Logger.warn(`[MiscController] Invalid cron expression ${expression}`, error.message)
|
|
res.status(400).send(error.message)
|
|
}
|
|
}
|
|
}
|
|
module.exports = new MiscController() |