1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00
bitwarden-server/util/Setup/Program.cs

280 lines
9.4 KiB
C#
Raw Normal View History

2019-03-25 18:21:05 +01:00
using Bit.Migrator;
2017-08-19 15:33:14 +02:00
using Newtonsoft.Json;
using System;
2017-08-07 22:31:00 +02:00
using System.Collections.Generic;
2017-08-21 15:57:09 +02:00
using System.Data.SqlClient;
2019-07-11 21:03:17 +02:00
using System.Globalization;
2017-08-19 15:33:14 +02:00
using System.Net.Http;
2017-08-07 22:31:00 +02:00
2017-09-08 17:45:20 +02:00
namespace Bit.Setup
2017-08-07 22:31:00 +02:00
{
public class Program
{
2018-08-30 17:35:44 +02:00
private static Context _context;
2017-08-07 22:31:00 +02:00
public static void Main(string[] args)
{
2019-07-11 21:03:17 +02:00
CultureInfo.DefaultThreadCurrentCulture = new CultureInfo("en-US");
2018-08-30 17:35:44 +02:00
_context = new Context
{
Args = args
};
ParseParameters();
2018-03-30 15:23:33 +02:00
2019-03-12 15:26:14 +01:00
if(_context.Parameters.ContainsKey("q"))
{
_context.Quiet = _context.Parameters["q"] == "true" || _context.Parameters["q"] == "1";
}
2018-08-30 17:35:44 +02:00
if(_context.Parameters.ContainsKey("os"))
{
2018-08-30 17:35:44 +02:00
_context.HostOS = _context.Parameters["os"];
}
2018-08-30 17:35:44 +02:00
if(_context.Parameters.ContainsKey("corev"))
2017-11-07 16:54:00 +01:00
{
2018-08-30 17:35:44 +02:00
_context.CoreVersion = _context.Parameters["corev"];
2017-11-07 16:54:00 +01:00
}
2018-08-30 17:35:44 +02:00
if(_context.Parameters.ContainsKey("webv"))
2017-11-07 16:54:00 +01:00
{
2018-08-30 17:35:44 +02:00
_context.WebVersion = _context.Parameters["webv"];
2017-11-07 16:54:00 +01:00
}
2019-03-15 14:28:39 +01:00
if(_context.Parameters.ContainsKey("stub"))
{
_context.Stub = _context.Parameters["stub"] == "true" ||
_context.Parameters["stub"] == "1";
}
2019-03-12 15:26:14 +01:00
Helpers.WriteLine(_context);
2018-08-30 17:35:44 +02:00
if(_context.Parameters.ContainsKey("install"))
{
Install();
}
2018-08-30 17:35:44 +02:00
else if(_context.Parameters.ContainsKey("update"))
{
Update();
}
2018-08-30 17:35:44 +02:00
else if(_context.Parameters.ContainsKey("printenv"))
2017-08-24 17:16:01 +02:00
{
PrintEnvironment();
}
else
{
2019-03-12 15:26:14 +01:00
Helpers.WriteLine(_context, "No top-level command detected. Exiting...");
}
}
2017-08-07 22:31:00 +02:00
private static void Install()
{
2018-08-30 17:35:44 +02:00
if(_context.Parameters.ContainsKey("letsencrypt"))
2017-08-08 20:35:31 +02:00
{
2018-08-30 17:35:44 +02:00
_context.Config.SslManagedLetsEncrypt =
_context.Parameters["letsencrypt"].ToLowerInvariant() == "y";
}
2018-08-30 17:35:44 +02:00
if(_context.Parameters.ContainsKey("domain"))
{
2018-08-30 17:35:44 +02:00
_context.Install.Domain = _context.Parameters["domain"].ToLowerInvariant();
}
2019-03-15 14:28:39 +01:00
if(_context.Stub)
{
_context.Install.InstallationId = Guid.Empty;
_context.Install.InstallationKey = "SECRET_INSTALLATION_KEY";
}
else if(!ValidateInstallation())
{
return;
}
2018-08-30 17:35:44 +02:00
var certBuilder = new CertBuilder(_context);
certBuilder.BuildForInstall();
2018-08-30 22:09:18 +02:00
2018-08-30 17:35:44 +02:00
// Set the URL
_context.Config.Url = string.Format("http{0}://{1}",
_context.Config.Ssl ? "s" : string.Empty, _context.Install.Domain);
2017-08-11 14:57:31 +02:00
2018-08-30 17:35:44 +02:00
var nginxBuilder = new NginxConfigBuilder(_context);
nginxBuilder.BuildForInstaller();
2018-08-30 17:35:44 +02:00
var environmentFileBuilder = new EnvironmentFileBuilder(_context);
2017-11-07 04:55:15 +01:00
environmentFileBuilder.BuildForInstaller();
2017-10-24 04:45:59 +02:00
2018-08-30 17:35:44 +02:00
var appIdBuilder = new AppIdBuilder(_context);
2017-10-24 04:45:59 +02:00
appIdBuilder.Build();
2018-08-30 17:35:44 +02:00
var dockerComposeBuilder = new DockerComposeBuilder(_context);
dockerComposeBuilder.BuildForInstaller();
_context.SaveConfiguration();
2018-08-31 15:16:01 +02:00
Console.WriteLine("\nInstallation complete");
Console.WriteLine("\nIf you need to make additional configuration changes, you can modify\n" +
2018-09-17 21:18:49 +02:00
"the settings in `{0}` and then run:\n{1}",
2018-08-30 22:09:18 +02:00
_context.HostOS == "win" ? ".\\bwdata\\config.yml" : "./bwdata/config.yml",
_context.HostOS == "win" ? "`.\\bitwarden.ps1 -rebuild` or `.\\bitwarden.ps1 -update`" :
"`./bitwarden.sh rebuild` or `./bitwarden.sh update`");
2018-08-31 15:16:01 +02:00
Console.WriteLine("\nNext steps, run:");
if(_context.HostOS == "win")
{
2019-03-25 21:24:16 +01:00
Console.WriteLine("`.\\bitwarden.ps1 -start`");
2018-08-31 15:16:01 +02:00
}
else
{
2019-03-25 21:24:16 +01:00
Console.WriteLine("`./bitwarden.sh start`");
2018-08-31 15:16:01 +02:00
}
Console.WriteLine(string.Empty);
2017-08-07 22:31:00 +02:00
}
private static void Update()
{
2018-08-30 17:35:44 +02:00
if(_context.Parameters.ContainsKey("db"))
{
MigrateDatabase();
}
2017-10-24 04:45:59 +02:00
else
{
RebuildConfigs();
}
}
2017-08-24 17:16:01 +02:00
private static void PrintEnvironment()
{
2018-08-30 17:35:44 +02:00
_context.LoadConfiguration();
2019-03-12 15:26:14 +01:00
if(!_context.PrintToScreen())
{
return;
}
2018-02-27 20:16:19 +01:00
Console.WriteLine("\nBitwarden is up and running!");
2017-08-24 17:35:16 +02:00
Console.WriteLine("===================================================");
2018-08-30 17:35:44 +02:00
Console.WriteLine("\nvisit {0}", _context.Config.Url);
2017-11-09 02:54:39 +01:00
Console.Write("to update, run ");
2018-08-30 17:35:44 +02:00
if(_context.HostOS == "win")
2017-08-24 17:16:01 +02:00
{
2018-08-30 22:09:18 +02:00
Console.Write("`.\\bitwarden.ps1 -updateself` and then `.\\bitwarden.ps1 -update`");
2017-08-24 17:16:01 +02:00
}
else
{
2018-08-30 22:09:18 +02:00
Console.Write("`./bitwarden.sh updateself` and then `./bitwarden.sh update`");
2017-08-24 17:16:01 +02:00
}
2017-08-24 17:35:16 +02:00
Console.WriteLine("\n");
2017-08-24 17:16:01 +02:00
}
private static void MigrateDatabase(int attempt = 1)
{
try
{
2019-03-12 15:26:14 +01:00
Helpers.WriteLine(_context, "Migrating database.");
var vaultConnectionString = Helpers.GetValueFromEnvFile("global",
"globalSettings__sqlServer__connectionString");
2019-03-25 18:21:05 +01:00
var migrator = new DbMigrator(vaultConnectionString, null);
var success = migrator.MigrateMsSqlDatabase(false);
if(success)
{
2019-03-12 15:26:14 +01:00
Helpers.WriteLine(_context, "Migration successful.");
}
else
{
2019-03-12 15:26:14 +01:00
Helpers.WriteLine(_context, "Migration failed.");
}
}
catch(SqlException e)
{
if(e.Message.Contains("Server is in script upgrade mode") && attempt < 10)
{
var nextAttempt = attempt + 1;
2019-03-12 15:26:14 +01:00
Helpers.WriteLine(_context, "Database is in script upgrade mode. " +
"Trying again (attempt #{0})...", nextAttempt);
System.Threading.Thread.Sleep(20000);
MigrateDatabase(nextAttempt);
return;
}
throw e;
}
}
2017-08-19 15:33:14 +02:00
private static bool ValidateInstallation()
{
2018-03-30 15:40:14 +02:00
var installationId = Helpers.ReadInput("Enter your installation id (get at https://bitwarden.com/host)");
2018-03-30 15:23:33 +02:00
if(!Guid.TryParse(installationId.Trim(), out var installationidGuid))
2017-08-19 15:33:14 +02:00
{
Console.WriteLine("Invalid installation id.");
return false;
}
2018-08-30 17:35:44 +02:00
_context.Install.InstallationId = installationidGuid;
_context.Install.InstallationKey = Helpers.ReadInput("Enter your installation key");
2017-08-19 15:33:14 +02:00
try
{
2018-08-30 17:35:44 +02:00
var response = new HttpClient().GetAsync("https://api.bitwarden.com/installations/" +
_context.Install.InstallationId).GetAwaiter().GetResult();
2017-08-19 15:33:14 +02:00
if(!response.IsSuccessStatusCode)
{
if(response.StatusCode == System.Net.HttpStatusCode.NotFound)
{
Console.WriteLine("Invalid installation id.");
}
else
{
Console.WriteLine("Unable to validate installation id.");
}
return false;
}
var resultString = response.Content.ReadAsStringAsync().GetAwaiter().GetResult();
var result = JsonConvert.DeserializeObject<dynamic>(resultString);
if(!(bool)result.Enabled)
{
Console.WriteLine("Installation id has been disabled.");
return false;
}
return true;
}
catch
{
2018-02-27 20:16:19 +01:00
Console.WriteLine("Unable to validate installation id. Problem contacting Bitwarden server.");
2017-08-19 15:33:14 +02:00
return false;
}
}
2017-10-24 04:45:59 +02:00
private static void RebuildConfigs()
2017-08-07 22:31:00 +02:00
{
2018-08-30 17:35:44 +02:00
_context.LoadConfiguration();
2017-11-07 04:55:15 +01:00
2018-08-30 17:35:44 +02:00
var environmentFileBuilder = new EnvironmentFileBuilder(_context);
environmentFileBuilder.BuildForUpdater();
2017-08-07 22:31:00 +02:00
2018-08-30 17:35:44 +02:00
var nginxBuilder = new NginxConfigBuilder(_context);
2017-10-24 04:45:59 +02:00
nginxBuilder.BuildForUpdater();
2017-08-07 22:31:00 +02:00
2018-08-30 17:35:44 +02:00
var appIdBuilder = new AppIdBuilder(_context);
2017-10-24 04:45:59 +02:00
appIdBuilder.Build();
2018-08-30 17:35:44 +02:00
var dockerComposeBuilder = new DockerComposeBuilder(_context);
dockerComposeBuilder.BuildForUpdater();
2018-08-30 17:35:44 +02:00
_context.SaveConfiguration();
Console.WriteLine(string.Empty);
2017-08-08 18:29:59 +02:00
}
2018-08-30 17:35:44 +02:00
private static void ParseParameters()
2017-08-07 22:31:00 +02:00
{
2018-08-30 17:35:44 +02:00
_context.Parameters = new Dictionary<string, string>();
for(var i = 0; i < _context.Args.Length; i = i + 2)
2017-08-07 22:31:00 +02:00
{
2018-08-30 17:35:44 +02:00
if(!_context.Args[i].StartsWith("-"))
2017-08-07 22:31:00 +02:00
{
continue;
}
2018-08-30 17:35:44 +02:00
_context.Parameters.Add(_context.Args[i].Substring(1), _context.Args[i + 1]);
2017-08-07 22:31:00 +02:00
}
}
}
}