PowerShell/scripts/install-calibre-server.ps1

48 lines
1.6 KiB
PowerShell
Raw Normal View History

2023-10-31 12:20:46 +01:00
<#
2021-07-16 16:49:42 +02:00
.SYNOPSIS
2023-04-06 09:24:32 +02:00
Installs Calibre server (needs admin rights)
2021-07-16 16:49:42 +02:00
.DESCRIPTION
2023-04-06 09:04:27 +02:00
This PowerShell script installs and starts a local Calibre server as background process (using Web port 8099 by default).
2021-10-16 16:50:10 +02:00
.PARAMETER port
Specifies the Web port number (8099 by default)
2021-07-16 16:49:42 +02:00
.EXAMPLE
2023-08-06 21:35:36 +02:00
PS> ./install-calibre-server.ps1
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
2022-05-02 11:15:52 +02:00
param([int]$Port = 8099, [string]$UserDB = "$HOME/CalibreUsers.sqlite", [string]$Logfile = "$HOME/CalibreServer.log")
2021-09-20 12:29:49 +02:00
2021-07-16 16:49:42 +02:00
try {
$StopWatch = [system.diagnostics.stopwatch]::startNew()
2023-04-06 09:24:32 +02:00
"⏳ (1/5) Updating package infos..."
2023-04-06 09:04:27 +02:00
& sudo apt update -y
if ($lastExitCode -ne "0") { throw "'apt update' failed" }
2023-04-06 09:24:32 +02:00
"⏳ (2/5) Installing the Calibre package..."
2023-04-06 09:04:27 +02:00
& sudo apt install calibre -y
if ($lastExitCode -ne "0") { throw "'apt install calibre' failed" }
2023-04-06 09:24:32 +02:00
"⏳ (3/5) Searching for Calibre server executable..."
2021-09-20 12:29:49 +02:00
& calibre-server --version
2021-09-20 13:08:17 +02:00
if ($lastExitCode -ne "0") { throw "Can't execute 'calibre-server' - make sure Calibre server is installed and available" }
2021-07-16 16:49:42 +02:00
2023-04-06 09:24:32 +02:00
"⏳ (4/5) Creating folder 'Calibre Library' in your home directory..."
mkdir $HOME/'Calibre Library'
"⏳ (5/5) Starting Calibre server as background process..."
2022-05-02 11:15:52 +02:00
& calibre-server --port $Port --num-per-page 100 --userdb $UserDB --log $Logfile --daemonize $HOME/'Calibre Library'
2021-07-16 16:49:42 +02:00
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
2023-04-06 09:04:27 +02:00
"✔️ installed Calibre in $Elapsed sec (Web port $Port, user DB at $UserDB, log file at $Logfile)"
2021-09-27 10:09:45 +02:00
exit 0 # success
2021-07-16 16:49:42 +02:00
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-07-16 16:49:42 +02:00
exit 1
}