mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-11-07 16:44:16 +01:00
274b0e48be
This patch slightly changes the behavior of the `AUDIOBOOKSHELF_UID` and `AUDIOBOOKSHELF_GID` options. Instead of defining a default user and group, trying to modify files and silently failing if the filesystem mode cannot be changed, this patch will just skip the entire process in the first place. If these options are defined, Audiobookshelf should behave exactly as before. If they are not defined, Audiobookshelf will now cause fewer file modifications (or less failures when trying to modify files). If this patch gets applied, it should probably be highlighted in the release notes. This usually shouldn't cause problems for migrations since the Docker guides explicitly configure the options and the package installations do not seem to use this at all, but there is still a change that it will and users should be aware of that. If a problem arises, users can easily fix the problem by either setting the permissions once manually to the audiobookshelf user or by simply defining the `AUDIOBOOKSHELF_UID/GID` options.
30 lines
1.2 KiB
JavaScript
30 lines
1.2 KiB
JavaScript
const server = require('./server/Server')
|
|
global.appRoot = __dirname
|
|
|
|
const isDev = process.env.NODE_ENV !== 'production'
|
|
if (isDev) {
|
|
const devEnv = require('./dev').config
|
|
process.env.NODE_ENV = 'development'
|
|
if (devEnv.Port) process.env.PORT = devEnv.Port
|
|
if (devEnv.ConfigPath) process.env.CONFIG_PATH = devEnv.ConfigPath
|
|
if (devEnv.MetadataPath) process.env.METADATA_PATH = devEnv.MetadataPath
|
|
if (devEnv.FFmpegPath) process.env.FFMPEG_PATH = devEnv.FFmpegPath
|
|
if (devEnv.FFProbePath) process.env.FFPROBE_PATH = devEnv.FFProbePath
|
|
process.env.SOURCE = 'local'
|
|
process.env.ROUTER_BASE_PATH = devEnv.RouterBasePath || ''
|
|
}
|
|
|
|
const PORT = process.env.PORT || 80
|
|
const HOST = process.env.HOST
|
|
const CONFIG_PATH = process.env.CONFIG_PATH || '/config'
|
|
const METADATA_PATH = process.env.METADATA_PATH || '/metadata'
|
|
const UID = process.env.AUDIOBOOKSHELF_UID
|
|
const GID = process.env.AUDIOBOOKSHELF_GID
|
|
const SOURCE = process.env.SOURCE || 'docker'
|
|
const ROUTER_BASE_PATH = process.env.ROUTER_BASE_PATH || ''
|
|
|
|
console.log('Config', CONFIG_PATH, METADATA_PATH)
|
|
|
|
const Server = new server(SOURCE, PORT, HOST, UID, GID, CONFIG_PATH, METADATA_PATH, ROUTER_BASE_PATH)
|
|
Server.start()
|