mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-31 02:17:01 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			496 lines
		
	
	
		
			18 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			496 lines
		
	
	
		
			18 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const Path = require('path')
 | |
| const express = require('express')
 | |
| const http = require('http')
 | |
| const SocketIO = require('socket.io')
 | |
| const fs = require('fs-extra')
 | |
| const fileUpload = require('express-fileupload')
 | |
| const rateLimit = require('express-rate-limit')
 | |
| 
 | |
| const { version } = require('../package.json')
 | |
| 
 | |
| // Utils
 | |
| const dbMigration = require('./utils/dbMigration')
 | |
| const filePerms = require('./utils/filePerms')
 | |
| const Logger = require('./Logger')
 | |
| 
 | |
| // Classes
 | |
| const Auth = require('./Auth')
 | |
| const Watcher = require('./Watcher')
 | |
| const Scanner = require('./scanner/Scanner')
 | |
| const Db = require('./Db')
 | |
| 
 | |
| const ApiRouter = require('./routers/ApiRouter')
 | |
| const HlsRouter = require('./routers/HlsRouter')
 | |
| const StaticRouter = require('./routers/StaticRouter')
 | |
| 
 | |
| const CoverManager = require('./managers/CoverManager')
 | |
| const AbMergeManager = require('./managers/AbMergeManager')
 | |
| const CacheManager = require('./managers/CacheManager')
 | |
| const LogManager = require('./managers/LogManager')
 | |
| const BackupManager = require('./managers/BackupManager')
 | |
| const PlaybackSessionManager = require('./managers/PlaybackSessionManager')
 | |
| const PodcastManager = require('./managers/PodcastManager')
 | |
| const AudioMetadataMangaer = require('./managers/AudioMetadataManager')
 | |
| const RssFeedManager = require('./managers/RssFeedManager')
 | |
| 
 | |
| class Server {
 | |
|   constructor(SOURCE, PORT, HOST, UID, GID, CONFIG_PATH, METADATA_PATH) {
 | |
|     this.Port = PORT
 | |
|     this.Host = HOST
 | |
|     global.Source = SOURCE
 | |
|     global.Uid = isNaN(UID) ? 0 : Number(UID)
 | |
|     global.Gid = isNaN(GID) ? 0 : Number(GID)
 | |
|     global.ConfigPath = Path.normalize(CONFIG_PATH)
 | |
|     global.MetadataPath = Path.normalize(METADATA_PATH)
 | |
| 
 | |
|     // Fix backslash if not on Windows
 | |
|     if (process.platform !== 'win32') {
 | |
|       global.ConfigPath = global.ConfigPath.replace(/\\/g, '/')
 | |
|       global.MetadataPath = global.MetadataPath.replace(/\\/g, '/')
 | |
|     }
 | |
| 
 | |
|     if (!fs.pathExistsSync(global.ConfigPath)) {
 | |
|       fs.mkdirSync(global.ConfigPath)
 | |
|       filePerms.setDefaultDirSync(global.ConfigPath, false)
 | |
|     }
 | |
|     if (!fs.pathExistsSync(global.MetadataPath)) {
 | |
|       fs.mkdirSync(global.MetadataPath)
 | |
|       filePerms.setDefaultDirSync(global.MetadataPath, false)
 | |
|     }
 | |
| 
 | |
|     this.db = new Db()
 | |
|     this.watcher = new Watcher()
 | |
|     this.auth = new Auth(this.db)
 | |
| 
 | |
|     // Managers
 | |
|     this.backupManager = new BackupManager(this.db, this.emitter.bind(this))
 | |
|     this.logManager = new LogManager(this.db)
 | |
|     this.cacheManager = new CacheManager()
 | |
|     this.abMergeManager = new AbMergeManager(this.db, this.clientEmitter.bind(this))
 | |
|     this.playbackSessionManager = new PlaybackSessionManager(this.db, this.emitter.bind(this), this.clientEmitter.bind(this))
 | |
|     this.coverManager = new CoverManager(this.db, this.cacheManager)
 | |
|     this.podcastManager = new PodcastManager(this.db, this.watcher, this.emitter.bind(this))
 | |
|     this.audioMetadataManager = new AudioMetadataMangaer(this.db, this.emitter.bind(this), this.clientEmitter.bind(this))
 | |
|     this.rssFeedManager = new RssFeedManager(this.db, this.emitter.bind(this))
 | |
| 
 | |
|     this.scanner = new Scanner(this.db, this.coverManager, this.emitter.bind(this))
 | |
| 
 | |
|     // Routers
 | |
|     this.apiRouter = new ApiRouter(this.db, this.auth, this.scanner, this.playbackSessionManager, this.abMergeManager, this.coverManager, this.backupManager, this.watcher, this.cacheManager, this.podcastManager, this.audioMetadataManager, this.rssFeedManager, this.emitter.bind(this), this.clientEmitter.bind(this))
 | |
|     this.hlsRouter = new HlsRouter(this.db, this.auth, this.playbackSessionManager, this.emitter.bind(this))
 | |
|     this.staticRouter = new StaticRouter(this.db)
 | |
| 
 | |
|     Logger.logManager = this.logManager
 | |
| 
 | |
|     this.server = null
 | |
|     this.io = null
 | |
| 
 | |
|     this.clients = {}
 | |
|   }
 | |
| 
 | |
|   get usersOnline() {
 | |
|     // TODO: Map open user sessions
 | |
|     return Object.values(this.clients).filter(c => c.user).map(client => {
 | |
|       return client.user.toJSONForPublic(this.playbackSessionManager.sessions, this.db.libraryItems)
 | |
|     })
 | |
|   }
 | |
| 
 | |
|   getClientsForUser(userId) {
 | |
|     return Object.values(this.clients).filter(c => c.user && c.user.id === userId)
 | |
|   }
 | |
| 
 | |
|   emitter(ev, data) {
 | |
|     // Logger.debug('EMITTER', ev)
 | |
|     this.io.emit(ev, data)
 | |
|   }
 | |
| 
 | |
|   clientEmitter(userId, ev, data) {
 | |
|     var clients = this.getClientsForUser(userId)
 | |
|     if (!clients.length) {
 | |
|       return Logger.debug(`[Server] clientEmitter - no clients found for user ${userId}`)
 | |
|     }
 | |
|     clients.forEach((client) => {
 | |
|       if (client.socket) {
 | |
|         client.socket.emit(ev, data)
 | |
|       }
 | |
|     })
 | |
|   }
 | |
| 
 | |
|   authMiddleware(req, res, next) {
 | |
|     this.auth.authMiddleware(req, res, next)
 | |
|   }
 | |
| 
 | |
|   async init() {
 | |
|     Logger.info('[Server] Init v' + version)
 | |
|     await this.abMergeManager.removeOrphanDownloads()
 | |
|     await this.playbackSessionManager.removeOrphanStreams()
 | |
| 
 | |
|     var previousVersion = await this.db.checkPreviousVersion() // Returns null if same server version
 | |
|     if (previousVersion) {
 | |
|       Logger.debug(`[Server] Upgraded from previous version ${previousVersion}`)
 | |
|     }
 | |
|     if (previousVersion && previousVersion.localeCompare('2.0.0') < 0) { // Old version data model migration
 | |
|       Logger.debug(`[Server] Previous version was < 2.0.0 - migration required`)
 | |
|       await dbMigration.migrate(this.db)
 | |
|     } else {
 | |
|       await this.db.init()
 | |
|     }
 | |
| 
 | |
|     await this.checkUserMediaProgress() // Remove invalid user item progress
 | |
|     await this.purgeMetadata() // Remove metadata folders without library item
 | |
|     await this.cacheManager.ensureCachePaths()
 | |
| 
 | |
|     await this.backupManager.init()
 | |
|     await this.logManager.init()
 | |
|     await this.rssFeedManager.init()
 | |
|     this.podcastManager.init()
 | |
| 
 | |
|     if (this.db.serverSettings.scannerDisableWatcher) {
 | |
|       Logger.info(`[Server] Watcher is disabled`)
 | |
|       this.watcher.disabled = true
 | |
|     } else {
 | |
|       this.watcher.initWatcher(this.db.libraries)
 | |
|       this.watcher.on('files', this.filesChanged.bind(this))
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   async start() {
 | |
|     Logger.info('=== Starting Server ===')
 | |
|     await this.init()
 | |
| 
 | |
|     const app = express()
 | |
|     this.server = http.createServer(app)
 | |
| 
 | |
|     app.use(this.auth.cors)
 | |
|     app.use(fileUpload())
 | |
|     app.use(express.urlencoded({ extended: true, limit: "5mb" }));
 | |
|     app.use(express.json({ limit: "5mb" }))
 | |
| 
 | |
|     // Static path to generated nuxt
 | |
|     const distPath = Path.join(global.appRoot, '/client/dist')
 | |
|     app.use(express.static(distPath))
 | |
| 
 | |
| 
 | |
|     // Metadata folder static path
 | |
|     app.use('/metadata', this.authMiddleware.bind(this), express.static(global.MetadataPath))
 | |
| 
 | |
|     // Static folder
 | |
|     app.use(express.static(Path.join(global.appRoot, 'static')))
 | |
| 
 | |
|     app.use('/api', this.authMiddleware.bind(this), this.apiRouter.router)
 | |
|     app.use('/hls', this.authMiddleware.bind(this), this.hlsRouter.router)
 | |
|     app.use('/s', this.authMiddleware.bind(this), this.staticRouter.router)
 | |
| 
 | |
|     // EBook static file routes
 | |
|     app.get('/ebook/:library/:folder/*', (req, res) => {
 | |
|       var library = this.db.libraries.find(lib => lib.id === req.params.library)
 | |
|       if (!library) return res.sendStatus(404)
 | |
|       var folder = library.folders.find(fol => fol.id === req.params.folder)
 | |
|       if (!folder) return res.status(404).send('Folder not found')
 | |
| 
 | |
|       var remainingPath = req.params['0']
 | |
|       var fullPath = Path.join(folder.fullPath, remainingPath)
 | |
|       res.sendFile(fullPath)
 | |
|     })
 | |
| 
 | |
|     // RSS Feed temp route
 | |
|     app.get('/feed/:id', (req, res) => {
 | |
|       Logger.info(`[Server] Requesting rss feed ${req.params.id}`)
 | |
|       this.rssFeedManager.getFeed(req, res)
 | |
|     })
 | |
|     app.get('/feed/:id/cover', (req, res) => {
 | |
|       this.rssFeedManager.getFeedCover(req, res)
 | |
|     })
 | |
|     app.get('/feed/:id/item/:episodeId/*', (req, res) => {
 | |
|       Logger.debug(`[Server] Requesting rss feed episode ${req.params.id}/${req.params.episodeId}`)
 | |
|       this.rssFeedManager.getFeedItem(req, res)
 | |
|     })
 | |
| 
 | |
|     // Client dynamic routes
 | |
|     const dyanimicRoutes = [
 | |
|       '/item/:id',
 | |
|       '/item/:id/manage',
 | |
|       '/author/:id',
 | |
|       '/audiobook/:id/chapters',
 | |
|       '/audiobook/:id/edit',
 | |
|       '/library/:library',
 | |
|       '/library/:library/search',
 | |
|       '/library/:library/bookshelf/:id?',
 | |
|       '/library/:library/authors',
 | |
|       '/library/:library/series/:id?',
 | |
|       '/config/users/:id',
 | |
|       '/config/users/:id/sessions',
 | |
|       '/collection/:id'
 | |
|     ]
 | |
|     dyanimicRoutes.forEach((route) => app.get(route, (req, res) => res.sendFile(Path.join(distPath, 'index.html'))))
 | |
| 
 | |
|     app.post('/login', this.getLoginRateLimiter(), (req, res) => this.auth.login(req, res))
 | |
|     app.post('/logout', this.authMiddleware.bind(this), this.logout.bind(this))
 | |
|     app.post('/init', (req, res) => {
 | |
|       if (this.db.hasRootUser) {
 | |
|         Logger.error(`[Server] attempt to init server when server already has a root user`)
 | |
|         return res.sendStatus(500)
 | |
|       }
 | |
|       this.initializeServer(req, res)
 | |
|     })
 | |
|     app.get('/status', (req, res) => {
 | |
|       // status check for client to see if server has been initialized
 | |
|       // server has been initialized if a root user exists
 | |
|       const payload = {
 | |
|         isInit: this.db.hasRootUser
 | |
|       }
 | |
|       if (!payload.isInit) {
 | |
|         payload.ConfigPath = global.ConfigPath
 | |
|         payload.MetadataPath = global.MetadataPath
 | |
|       }
 | |
|       res.json(payload)
 | |
|     })
 | |
|     app.get('/ping', (req, res) => {
 | |
|       Logger.info('Recieved ping')
 | |
|       res.json({ success: true })
 | |
|     })
 | |
| 
 | |
|     this.server.listen(this.Port, this.Host, () => {
 | |
|       Logger.info(`Listening on http://${this.Host}:${this.Port}`)
 | |
|     })
 | |
| 
 | |
|     this.io = new SocketIO.Server(this.server, {
 | |
|       cors: {
 | |
|         origin: '*',
 | |
|         methods: ["GET", "POST"]
 | |
|       }
 | |
|     })
 | |
|     this.io.on('connection', (socket) => {
 | |
|       this.clients[socket.id] = {
 | |
|         id: socket.id,
 | |
|         socket,
 | |
|         connected_at: Date.now()
 | |
|       }
 | |
|       socket.sheepClient = this.clients[socket.id]
 | |
| 
 | |
|       Logger.info('[Server] Socket Connected', socket.id)
 | |
| 
 | |
|       socket.on('auth', (token) => this.authenticateSocket(socket, token))
 | |
| 
 | |
|       // Scanning
 | |
|       socket.on('cancel_scan', this.cancelScan.bind(this))
 | |
| 
 | |
|       // Logs
 | |
|       socket.on('set_log_listener', (level) => Logger.addSocketListener(socket, level))
 | |
|       socket.on('fetch_daily_logs', () => this.logManager.socketRequestDailyLogs(socket))
 | |
| 
 | |
|       socket.on('ping', () => {
 | |
|         var client = this.clients[socket.id] || {}
 | |
|         var user = client.user || {}
 | |
|         Logger.debug(`[Server] Received ping from socket ${user.username || 'No User'}`)
 | |
|         socket.emit('pong')
 | |
|       })
 | |
| 
 | |
|       socket.on('disconnect', () => {
 | |
|         Logger.removeSocketListener(socket.id)
 | |
| 
 | |
|         var _client = this.clients[socket.id]
 | |
|         if (!_client) {
 | |
|           Logger.warn('[Server] Socket disconnect, no client ' + socket.id)
 | |
|         } else if (!_client.user) {
 | |
|           Logger.info('[Server] Unauth socket disconnected ' + socket.id)
 | |
|           delete this.clients[socket.id]
 | |
|         } else {
 | |
|           Logger.debug('[Server] User Offline ' + _client.user.username)
 | |
|           this.io.emit('user_offline', _client.user.toJSONForPublic(this.playbackSessionManager.sessions, this.db.libraryItems))
 | |
| 
 | |
|           const disconnectTime = Date.now() - _client.connected_at
 | |
|           Logger.info(`[Server] Socket ${socket.id} disconnected from client "${_client.user.username}" after ${disconnectTime}ms`)
 | |
|           delete this.clients[socket.id]
 | |
|         }
 | |
|       })
 | |
|     })
 | |
|   }
 | |
| 
 | |
|   async initializeServer(req, res) {
 | |
|     Logger.info(`[Server] Initializing new server`)
 | |
|     const newRoot = req.body.newRoot
 | |
|     let rootPash = newRoot.password ? await this.auth.hashPass(newRoot.password) : ''
 | |
|     if (!rootPash) Logger.warn(`[Server] Creating root user with no password`)
 | |
|     let rootToken = await this.auth.generateAccessToken({ userId: 'root' })
 | |
|     await this.db.createRootUser(newRoot.username, rootPash, rootToken)
 | |
| 
 | |
|     res.sendStatus(200)
 | |
|   }
 | |
| 
 | |
|   async filesChanged(fileUpdates) {
 | |
|     Logger.info('[Server]', fileUpdates.length, 'Files Changed')
 | |
|     await this.scanner.scanFilesChanged(fileUpdates)
 | |
|   }
 | |
| 
 | |
|   cancelScan(id) {
 | |
|     Logger.debug('[Server] Cancel scan', id)
 | |
|     this.scanner.setCancelLibraryScan(id)
 | |
|   }
 | |
| 
 | |
|   // Remove unused /metadata/items/{id} folders
 | |
|   async purgeMetadata() {
 | |
|     var itemsMetadata = Path.join(global.MetadataPath, 'items')
 | |
|     if (!(await fs.pathExists(itemsMetadata))) return
 | |
|     var foldersInItemsMetadata = await fs.readdir(itemsMetadata)
 | |
| 
 | |
|     var purged = 0
 | |
|     await Promise.all(foldersInItemsMetadata.map(async foldername => {
 | |
|       var hasMatchingItem = this.db.libraryItems.find(ab => ab.id === foldername)
 | |
|       if (!hasMatchingItem) {
 | |
|         var folderPath = Path.join(itemsMetadata, foldername)
 | |
|         Logger.debug(`[Server] Purging unused metadata ${folderPath}`)
 | |
| 
 | |
|         await fs.remove(folderPath).then(() => {
 | |
|           purged++
 | |
|         }).catch((err) => {
 | |
|           Logger.error(`[Server] Failed to delete folder path ${folderPath}`, err)
 | |
|         })
 | |
|       }
 | |
|     }))
 | |
|     if (purged > 0) {
 | |
|       Logger.info(`[Server] Purged ${purged} unused library item metadata`)
 | |
|     }
 | |
|     return purged
 | |
|   }
 | |
| 
 | |
|   // Remove user media progress entries that dont have a library item
 | |
|   // TODO: Check podcast episode exists still
 | |
|   async checkUserMediaProgress() {
 | |
|     for (let i = 0; i < this.db.users.length; i++) {
 | |
|       var _user = this.db.users[i]
 | |
|       if (_user.mediaProgress) {
 | |
|         var itemProgressIdsToRemove = _user.mediaProgress.map(lip => lip.id).filter(lipId => !this.db.libraryItems.find(_li => _li.id == lipId))
 | |
|         if (itemProgressIdsToRemove.length) {
 | |
|           Logger.debug(`[Server] Found ${itemProgressIdsToRemove.length} media progress data to remove from user ${_user.username}`)
 | |
|           for (const lipId of itemProgressIdsToRemove) {
 | |
|             _user.removeMediaProgress(lipId)
 | |
|           }
 | |
|           await this.db.updateEntity('user', _user)
 | |
|         }
 | |
|       }
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   // First time login rate limit is hit
 | |
|   loginLimitReached(req, res, options) {
 | |
|     Logger.error(`[Server] Login rate limit (${options.max}) was hit for ip ${req.ip}`)
 | |
|     options.message = 'Too many attempts. Login temporarily locked.'
 | |
|   }
 | |
| 
 | |
|   getLoginRateLimiter() {
 | |
|     return rateLimit({
 | |
|       windowMs: this.db.serverSettings.rateLimitLoginWindow, // 5 minutes
 | |
|       max: this.db.serverSettings.rateLimitLoginRequests,
 | |
|       skipSuccessfulRequests: true,
 | |
|       onLimitReached: this.loginLimitReached
 | |
|     })
 | |
|   }
 | |
| 
 | |
|   logout(req, res) {
 | |
|     var { socketId } = req.body
 | |
|     Logger.info(`[Server] User ${req.user ? req.user.username : 'Unknown'} is logging out with socket ${socketId}`)
 | |
| 
 | |
|     // Strip user and client from client and client socket
 | |
|     if (socketId && this.clients[socketId]) {
 | |
|       var client = this.clients[socketId]
 | |
|       var clientSocket = client.socket
 | |
|       Logger.debug(`[Server] Found user client ${clientSocket.id}, Has user: ${!!client.user}, Socket has client: ${!!clientSocket.sheepClient}`)
 | |
| 
 | |
|       if (client.user) {
 | |
|         Logger.debug('[Server] User Offline ' + client.user.username)
 | |
|         this.io.emit('user_offline', client.user.toJSONForPublic(null, this.db.libraryItems))
 | |
|       }
 | |
| 
 | |
|       delete this.clients[socketId].user
 | |
|       if (clientSocket && clientSocket.sheepClient) delete this.clients[socketId].socket.sheepClient
 | |
|     } else if (socketId) {
 | |
|       Logger.warn(`[Server] No client for socket ${socketId}`)
 | |
|     }
 | |
| 
 | |
|     res.sendStatus(200)
 | |
|   }
 | |
| 
 | |
|   async authenticateSocket(socket, token) {
 | |
|     var user = await this.auth.authenticateUser(token)
 | |
|     if (!user) {
 | |
|       Logger.error('Cannot validate socket - invalid token')
 | |
|       return socket.emit('invalid_token')
 | |
|     }
 | |
|     var client = this.clients[socket.id]
 | |
| 
 | |
|     if (client.user !== undefined) {
 | |
|       Logger.debug(`[Server] Authenticating socket client already has user`, client.user.username)
 | |
|     }
 | |
| 
 | |
|     client.user = user
 | |
| 
 | |
|     if (!client.user.toJSONForBrowser) {
 | |
|       Logger.error('Invalid user...', client.user)
 | |
|       return
 | |
|     }
 | |
| 
 | |
|     // Check if user has session open
 | |
|     var session = this.playbackSessionManager.getUserSession(user.id)
 | |
|     if (session) {
 | |
|       Logger.debug(`[Server] User Online "${client.user.username}" with session open "${session.id}"`)
 | |
|       var sessionLibraryItem = this.db.libraryItems.find(li => li.id === session.libraryItemId)
 | |
|       if (!sessionLibraryItem) {
 | |
|         Logger.error(`[Server] Library Item for session "${session.id}" does not exist "${session.libraryItemId}"`)
 | |
|         this.playbackSessionManager.removeSession(session.id)
 | |
|         session = null
 | |
|       } else if (session.mediaType === 'podcast' && !sessionLibraryItem.media.checkHasEpisode(session.episodeId)) {
 | |
|         Logger.error(`[Server] Library Item for session "${session.id}" episode ${session.episodeId} does not exist "${session.libraryItemId}"`)
 | |
|         this.playbackSessionManager.removeSession(session.id)
 | |
|         session = null
 | |
|       }
 | |
|       if (session) {
 | |
|         session = session.toJSONForClient(sessionLibraryItem)
 | |
|       }
 | |
|     } else {
 | |
|       Logger.debug(`[Server] User Online ${client.user.username}`)
 | |
|     }
 | |
|     this.io.emit('user_online', client.user.toJSONForPublic(this.playbackSessionManager.sessions, this.db.libraryItems))
 | |
| 
 | |
|     user.lastSeen = Date.now()
 | |
|     await this.db.updateEntity('user', user)
 | |
| 
 | |
|     const initialPayload = {
 | |
|       // TODO: this is sent with user auth now, update mobile app to use that then remove this
 | |
|       serverSettings: this.db.serverSettings.toJSON(),
 | |
|       metadataPath: global.MetadataPath,
 | |
|       configPath: global.ConfigPath,
 | |
|       user: client.user.toJSONForBrowser(),
 | |
|       session,
 | |
|       librariesScanning: this.scanner.librariesScanning,
 | |
|       backups: (this.backupManager.backups || []).map(b => b.toJSON())
 | |
|     }
 | |
|     if (user.type === 'root') {
 | |
|       initialPayload.usersOnline = this.usersOnline
 | |
|     }
 | |
|     client.socket.emit('init', initialPayload)
 | |
| 
 | |
|     // Setup log listener for root user
 | |
|     if (user.type === 'root') {
 | |
|       Logger.addSocketListener(socket, this.db.serverSettings.logLevel || 0)
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   async stop() {
 | |
|     await this.watcher.close()
 | |
|     Logger.info('Watcher Closed')
 | |
| 
 | |
|     return new Promise((resolve) => {
 | |
|       this.server.close((err) => {
 | |
|         if (err) {
 | |
|           Logger.error('Failed to close server', err)
 | |
|         } else {
 | |
|           Logger.info('Server successfully closed')
 | |
|         }
 | |
|         resolve()
 | |
|       })
 | |
|     })
 | |
|   }
 | |
| }
 | |
| module.exports = Server
 |