2021-09-27 10:38:12 +02:00
|
|
|
|
<#
|
2021-07-16 16:49:42 +02:00
|
|
|
|
.SYNOPSIS
|
2021-10-04 21:29:23 +02:00
|
|
|
|
Starts a local Calibre server
|
2021-07-16 16:49:42 +02:00
|
|
|
|
.DESCRIPTION
|
2021-10-16 16:50:10 +02:00
|
|
|
|
This script starts a local Calibre server as background process (Web port number is 8099 by default).
|
|
|
|
|
.PARAMETER port
|
|
|
|
|
Specifies the Web port number (8099 by default)
|
2021-07-16 16:49:42 +02:00
|
|
|
|
.EXAMPLE
|
2021-09-27 08:35:45 +02:00
|
|
|
|
PS> ./start-calibre-server
|
2021-08-29 17:50:03 +02:00
|
|
|
|
.NOTES
|
|
|
|
|
Author: Markus Fleschutz · License: CC0
|
2021-07-16 16:49:42 +02:00
|
|
|
|
.LINK
|
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
#>
|
|
|
|
|
|
2021-09-20 12:32:24 +02:00
|
|
|
|
param([int]$port = 8099)
|
2021-09-20 12:29:49 +02:00
|
|
|
|
|
2021-07-16 16:49:42 +02:00
|
|
|
|
try {
|
|
|
|
|
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
|
|
|
|
|
2021-09-20 13:08:17 +02:00
|
|
|
|
"Step 1/2: 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
|
|
|
|
|
2021-09-20 13:08:17 +02:00
|
|
|
|
"Step 2/2: Starting Calibre server as background process..."
|
2021-09-20 12:29:49 +02:00
|
|
|
|
& calibre-server --port $port --num-per-page 100 --userdb $HOME/CalibreUsers.sqlite --log $HOME/CalibreServer.log --daemonize $HOME/'Calibre Library'
|
2021-07-16 16:49:42 +02:00
|
|
|
|
|
|
|
|
|
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
2021-09-20 13:08:17 +02:00
|
|
|
|
"✔️ started Calibre server with port $port in $Elapsed sec"
|
2021-09-27 10:09:45 +02:00
|
|
|
|
exit 0 # success
|
2021-07-16 16:49:42 +02:00
|
|
|
|
} catch {
|
2021-09-16 20:19:10 +02:00
|
|
|
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
2021-07-16 16:49:42 +02:00
|
|
|
|
exit 1
|
|
|
|
|
}
|