mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
156 lines
3.8 KiB
PowerShell
156 lines
3.8 KiB
PowerShell
param (
|
|
[switch] $install,
|
|
[switch] $start,
|
|
[switch] $restart,
|
|
[switch] $stop,
|
|
[switch] $update,
|
|
[switch] $rebuild,
|
|
[switch] $updateconf,
|
|
[switch] $updatedb,
|
|
[switch] $updaterun,
|
|
[switch] $updateself,
|
|
[switch] $help,
|
|
[string] $output = ""
|
|
)
|
|
|
|
# Setup
|
|
|
|
$scriptPath = $MyInvocation.MyCommand.Path
|
|
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path
|
|
if ($output -eq "") {
|
|
$output = "${dir}\bwdata"
|
|
}
|
|
|
|
$scriptsDir = "${output}\scripts"
|
|
$githubBaseUrl = "https://raw.githubusercontent.com/bitwarden/server/master"
|
|
$coreVersion = "1.33.1"
|
|
$webVersion = "2.13.2"
|
|
|
|
# Functions
|
|
|
|
function Download-Self {
|
|
Invoke-RestMethod -OutFile $scriptPath -Uri "${githubBaseUrl}/scripts/bitwarden.ps1"
|
|
}
|
|
|
|
function Download-Run-File {
|
|
if (!(Test-Path -Path $scriptsDir)) {
|
|
New-Item -ItemType directory -Path $scriptsDir | Out-Null
|
|
}
|
|
Invoke-RestMethod -OutFile $scriptsDir\run.ps1 -Uri "${githubBaseUrl}/scripts/run.ps1"
|
|
}
|
|
|
|
function Check-Output-Dir-Exists {
|
|
if (!(Test-Path -Path $output)) {
|
|
throw "Cannot find a Bitwarden installation at $output."
|
|
}
|
|
}
|
|
|
|
function Check-Output-Dir-Not-Exists {
|
|
if (Test-Path -Path "$output\docker") {
|
|
throw "Looks like Bitwarden is already installed at $output."
|
|
}
|
|
}
|
|
|
|
function List-Commands {
|
|
Write-Line "
|
|
Available commands:
|
|
|
|
-install
|
|
-start
|
|
-restart
|
|
-stop
|
|
-update
|
|
-updatedb
|
|
-updaterun
|
|
-updateself
|
|
-updateconf
|
|
-rebuild
|
|
-help
|
|
|
|
See more at https://help.bitwarden.com/article/install-on-premise/#script-commands
|
|
"
|
|
}
|
|
|
|
function Write-Line($str) {
|
|
if($env:BITWARDEN_QUIET -ne "true") {
|
|
Write-Host $str
|
|
}
|
|
}
|
|
|
|
# Intro
|
|
|
|
$year = (Get-Date).year
|
|
|
|
Write-Line @'
|
|
_ _ _ _
|
|
| |__ (_) |___ ____ _ _ __ __| | ___ _ __
|
|
| '_ \| | __\ \ /\ / / _` | '__/ _` |/ _ \ '_ \
|
|
| |_) | | |_ \ V V / (_| | | | (_| | __/ | | |
|
|
|_.__/|_|\__| \_/\_/ \__,_|_| \__,_|\___|_| |_|
|
|
'@
|
|
|
|
Write-Line "
|
|
Open source password management solutions
|
|
Copyright 2015-${year}, 8bit Solutions LLC
|
|
https://bitwarden.com, https://github.com/bitwarden
|
|
|
|
===================================================
|
|
"
|
|
|
|
if($env:BITWARDEN_QUIET -ne "true") {
|
|
docker --version
|
|
docker-compose --version
|
|
}
|
|
|
|
Write-Line ""
|
|
|
|
# Commands
|
|
|
|
if ($install) {
|
|
Check-Output-Dir-Not-Exists
|
|
New-Item -ItemType directory -Path $output -ErrorAction Ignore | Out-Null
|
|
Download-Run-File
|
|
Invoke-Expression "& `"$scriptsDir\run.ps1`" -install -outputDir `"$output`" -coreVersion $coreVersion -webVersion $webVersion"
|
|
}
|
|
elseif ($start -Or $restart) {
|
|
Check-Output-Dir-Exists
|
|
Invoke-Expression "& `"$scriptsDir\run.ps1`" -restart -outputDir `"$output`" -coreVersion $coreVersion -webVersion $webVersion"
|
|
}
|
|
elseif ($update) {
|
|
Check-Output-Dir-Exists
|
|
Download-Run-File
|
|
Invoke-Expression "& `"$scriptsDir\run.ps1`" -update -outputDir `"$output`" -coreVersion $coreVersion -webVersion $webVersion"
|
|
}
|
|
elseif ($rebuild) {
|
|
Check-Output-Dir-Exists
|
|
Invoke-Expression "& `"$scriptsDir\run.ps1`" -rebuild -outputDir `"$output`" -coreVersion $coreVersion -webVersion $webVersion"
|
|
}
|
|
elseif ($updateconf) {
|
|
Check-Output-Dir-Exists
|
|
Invoke-Expression "& `"$scriptsDir\run.ps1`" -updateconf -outputDir `"$output`" -coreVersion $coreVersion -webVersion $webVersion"
|
|
}
|
|
elseif ($updatedb) {
|
|
Check-Output-Dir-Exists
|
|
Invoke-Expression "& `"$scriptsDir\run.ps1`" -updatedb -outputDir `"$output`" -coreVersion $coreVersion -webVersion $webVersion"
|
|
}
|
|
elseif ($stop) {
|
|
Check-Output-Dir-Exists
|
|
Invoke-Expression "& `"$scriptsDir\run.ps1`" -stop -outputDir `"$output`" -coreVersion $coreVersion -webVersion $webVersion"
|
|
}
|
|
elseif ($updaterun) {
|
|
Check-Output-Dir-Exists
|
|
Download-Run-File
|
|
}
|
|
elseif ($updateself) {
|
|
Download-Self
|
|
Write-Line "Updated self."
|
|
}
|
|
elseif ($help) {
|
|
List-Commands
|
|
}
|
|
else {
|
|
Write-Line "No command found."
|
|
Write-Line ""
|
|
List-Commands
|
|
}
|