PowerShell/scripts/install-calibre-server.ps1

59 lines
2.1 KiB
PowerShell
Raw Normal View History

2024-10-01 15:11:03 +02:00
<#
2021-07-16 16:49:42 +02:00
.SYNOPSIS
2023-11-24 13:53:56 +01:00
Installs the Calibre server (needs admin rights)
2021-07-16 16:49:42 +02:00
.DESCRIPTION
2023-11-24 13:53:56 +01:00
This PowerShell script installs and starts a local Calibre server as background process.
2021-10-16 16:50:10 +02:00
.PARAMETER port
Specifies the Web port number (8099 by default)
2025-01-06 10:29:54 +01:00
.PARAMETER mediaFolder
Specifies the file path to the media ('/opt/Calibre Library' by default)
.PARAMETER userDB
Specifies the file path to the user database ('/opt/CalibreUsers.sqlite' by default)
.PARAMETER logfile
Specifies the file path to the log file ('/opt/CalibreServer.log' by default)
2021-07-16 16:49:42 +02:00
.EXAMPLE
2023-08-06 21:35:36 +02:00
PS> ./install-calibre-server.ps1
2023-11-24 13:53:56 +01:00
(1/5) Updating package infos...
...
2021-07-16 16:49:42 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-30 10:49:30 +01:00
.NOTES
2022-05-02 11:15:52 +02:00
Author: Markus Fleschutz | License: CC0
2021-07-16 16:49:42 +02:00
#>
2023-04-06 09:04:27 +02:00
#Requires -RunAsAdministrator
2025-01-05 17:24:44 +01:00
param([int]$port = 8099, [string]$mediaFolder = "/opt/Calibre Library", [string]$userDB = "/opt/CalibreUsers.sqlite", [string]$logfile = "/opt/CalibreServer.log")
2021-09-20 12:29:49 +02:00
2021-07-16 16:49:42 +02:00
try {
2024-05-12 12:54:50 +02:00
if (-not $IsLinux) { throw "Sorry, currently only supported on Linux" }
2021-07-16 16:49:42 +02:00
2024-05-12 12:54:50 +02:00
$stopWatch = [system.diagnostics.stopwatch]::startNew()
2023-04-06 09:04:27 +02:00
2025-01-06 10:11:38 +01:00
"`n⏳ (1/5) Updating package infos..."
2024-05-12 12:54:50 +02:00
& sudo apt update -y
if ($lastExitCode -ne "0") { throw "'apt update' failed" }
2023-04-06 09:04:27 +02:00
2025-01-06 10:11:38 +01:00
"`n⏳ (2/5) Installing Calibre package..."
2024-05-12 12:54:50 +02:00
& sudo apt install calibre -y
if ($lastExitCode -ne "0") { throw "'apt install calibre' failed" }
2021-07-16 16:49:42 +02:00
2025-01-06 10:11:38 +01:00
"`n⏳ (3/5) Searching for Calibre server executable..."
2024-05-12 12:54:50 +02:00
& calibre-server --version
if ($lastExitCode -ne "0") { throw "Can't execute 'calibre-server' - make sure Calibre server is installed and available" }
2023-04-06 09:24:32 +02:00
2025-01-06 10:11:38 +01:00
"`n⏳ (4/5) Creating media folder at: $mediaFolder ... (if non-existent)"
2025-01-06 10:29:54 +01:00
& mkdir $mediaFolder
2021-07-16 16:49:42 +02:00
2025-01-06 10:11:38 +01:00
"`n⏳ (5/5) Starting Calibre server as background process..."
2025-01-06 10:29:54 +01:00
& sudo calibre-server --port $port --num-per-page 100 --userdb $userDB --log $logfile --daemonize $mediaFolder
2024-05-12 12:54:50 +02:00
[int]$elapsed = $stopWatch.Elapsed.TotalSeconds
2025-01-06 10:11:38 +01:00
"✅ Installed and started Calibre server on port $port in $($elapsed)s."
" (media at: $mediaFolder, user DB: $userDB, logging to: $logfile)"
2024-05-12 12:54:50 +02:00
exit 0 # success
2021-07-16 16:49:42 +02:00
} catch {
2025-01-06 10:11:38 +01:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
2021-07-16 16:49:42 +02:00
}