mirror of
https://github.com/jakeswenson/BitBetter.git
synced 2025-07-13 15:03:26 +00:00
Compare commits
1 Commits
44e9356a65
...
c820c1e741
Author | SHA1 | Date | |
---|---|---|---|
|
c820c1e741 |
9
build.sh
9
build.sh
|
@ -9,12 +9,17 @@ echo "Building BitBetter for BitWarden version $BW_VERSION"
|
||||||
# If there aren't any keys, generate them first.
|
# If there aren't any keys, generate them first.
|
||||||
[ -e "$DIR/.keys/cert.cert" ] || "$DIR/.keys/generate-keys.sh"
|
[ -e "$DIR/.keys/cert.cert" ] || "$DIR/.keys/generate-keys.sh"
|
||||||
|
|
||||||
# Prepare Bitwarden server repository
|
# Prepare Bitwarden repository
|
||||||
rm -rf $DIR/server
|
rm -rf $DIR/server
|
||||||
git clone --branch "v${BW_VERSION}" --depth 1 https://github.com/bitwarden/server.git $DIR/server
|
git clone --branch "v${BW_VERSION}" --depth 1 https://github.com/bitwarden/server.git $DIR/server
|
||||||
|
old_thumbprint=$(openssl x509 -fingerprint -noout -in $DIR/server/src/Core/licensing.cer | cut -d= -f2 | tr -d ':')
|
||||||
|
new_thumbprint=$(openssl x509 -fingerprint -noout -in $DIR/.keys/cert.cert | cut -d= -f2 | tr -d ':')
|
||||||
cp $DIR/.keys/cert.cert $DIR/server/src/Core/licensing.cer
|
cp $DIR/.keys/cert.cert $DIR/server/src/Core/licensing.cer
|
||||||
|
# Optional, has actually no effect
|
||||||
|
sed -i -e "s/$old_thumbprint/$new_thumbprint/g" $DIR/server/src/Core/Services/Implementations/LicensingService.cs
|
||||||
|
# Enable loose files for API, so Core.dll is accessible
|
||||||
|
sed -i -e 's/PublishSingleFile=true/PublishSingleFile=false/g' $DIR/server/src/Api/Dockerfile
|
||||||
|
|
||||||
# Build docker images
|
|
||||||
docker build --no-cache --label com.bitwarden.product="bitbetter" $DIR/server -f $DIR/server/src/Api/Dockerfile -t bitbetter/api
|
docker build --no-cache --label com.bitwarden.product="bitbetter" $DIR/server -f $DIR/server/src/Api/Dockerfile -t bitbetter/api
|
||||||
docker build --no-cache --label com.bitwarden.product="bitbetter" $DIR/server -f $DIR/server/src/Identity/Dockerfile -t bitbetter/identity
|
docker build --no-cache --label com.bitwarden.product="bitbetter" $DIR/server -f $DIR/server/src/Identity/Dockerfile -t bitbetter/identity
|
||||||
|
|
||||||
|
|
|
@ -14,4 +14,4 @@ FROM bitbetter/api
|
||||||
|
|
||||||
COPY --from=build /licenseGen/bin/Release/net8.0/publish/* /app/
|
COPY --from=build /licenseGen/bin/Release/net8.0/publish/* /app/
|
||||||
|
|
||||||
ENTRYPOINT [ "dotnet", "/app/licenseGen.dll", "--core", "/app/Core.dll", "--executable", "/app/Api", "--cert", "/cert.pfx" ]
|
ENTRYPOINT [ "dotnet", "/app/licenseGen.dll", "--core", "/app/Core.dll", "--cert", "/cert.pfx" ]
|
||||||
|
|
|
@ -1,40 +1,38 @@
|
||||||
namespace BitwardenSelfLicensor
|
using System;
|
||||||
{
|
using System.IO;
|
||||||
using Microsoft.Extensions.CommandLineUtils;
|
using System.Linq;
|
||||||
using Newtonsoft.Json;
|
using System.Runtime.Loader;
|
||||||
using SingleFileExtractor.Core;
|
using System.Security.Cryptography.X509Certificates;
|
||||||
using System;
|
using Microsoft.Extensions.CommandLineUtils;
|
||||||
using System.IO;
|
using Newtonsoft.Json;
|
||||||
using System.Runtime.Loader;
|
|
||||||
using System.Security.Cryptography.X509Certificates;
|
|
||||||
|
|
||||||
public static class Program
|
namespace bitwardenSelfLicensor
|
||||||
|
{
|
||||||
|
class Program
|
||||||
{
|
{
|
||||||
public static int Main(string[] args)
|
static int Main(string[] args)
|
||||||
{
|
{
|
||||||
var app = new CommandLineApplication();
|
var app = new Microsoft.Extensions.CommandLineUtils.CommandLineApplication();
|
||||||
var cert = app.Option("--cert", "cert file", CommandOptionType.SingleValue);
|
var cert = app.Option("--cert", "cert file", CommandOptionType.SingleValue);
|
||||||
var coreDll = app.Option("--core", "path to core dll", CommandOptionType.SingleValue);
|
var coreDll = app.Option("--core", "path to core dll", CommandOptionType.SingleValue);
|
||||||
var exec = app.Option("--executable", "path to Bitwarden single file executable", CommandOptionType.SingleValue);
|
|
||||||
|
|
||||||
bool ExecExists() => File.Exists(exec.Value());
|
bool certExists()
|
||||||
bool CertExists() => File.Exists(cert.Value());
|
|
||||||
bool CoreExists() => File.Exists(coreDll.Value());
|
|
||||||
bool VerifyTopOptions() =>
|
|
||||||
!string.IsNullOrWhiteSpace(cert.Value()) &&
|
|
||||||
(!string.IsNullOrWhiteSpace(coreDll.Value()) || !string.IsNullOrWhiteSpace(exec.Value())) &&
|
|
||||||
CertExists() &&
|
|
||||||
(CoreExists() || ExecExists());
|
|
||||||
string GetExtractedDll()
|
|
||||||
{
|
{
|
||||||
var coreDllPath = Path.Combine("extract", "Core.dll");
|
return File.Exists(cert.Value());
|
||||||
var reader = new ExecutableReader(exec.Value());
|
|
||||||
reader.ExtractToDirectory("extract");
|
|
||||||
var fileInfo = new FileInfo(coreDllPath);
|
|
||||||
return fileInfo.FullName;
|
|
||||||
}
|
}
|
||||||
string GetCoreDllPath() => CoreExists() ? coreDll.Value() : GetExtractedDll();
|
|
||||||
|
bool coreExists()
|
||||||
|
{
|
||||||
|
return File.Exists(coreDll.Value());
|
||||||
|
}
|
||||||
|
|
||||||
|
bool verifyTopOptions()
|
||||||
|
{
|
||||||
|
return !string.IsNullOrWhiteSpace(cert.Value()) &&
|
||||||
|
!string.IsNullOrWhiteSpace(coreDll.Value()) &&
|
||||||
|
certExists() && coreExists();
|
||||||
|
}
|
||||||
|
|
||||||
app.Command("interactive", config =>
|
app.Command("interactive", config =>
|
||||||
{
|
{
|
||||||
string buff="", licensetype="", name="", email="", businessname="";
|
string buff="", licensetype="", name="", email="", businessname="";
|
||||||
|
@ -45,11 +43,11 @@ namespace BitwardenSelfLicensor
|
||||||
|
|
||||||
config.OnExecute(() =>
|
config.OnExecute(() =>
|
||||||
{
|
{
|
||||||
if (!VerifyTopOptions())
|
if (!verifyTopOptions())
|
||||||
{
|
{
|
||||||
if (!ExecExists() && !string.IsNullOrWhiteSpace(exec.Value())) config.Error.WriteLine($"Cant find single file executable at: {exec.Value()}");
|
if (!coreExists()) config.Error.WriteLine($"Cant find core dll at: {coreDll.Value()}");
|
||||||
if (!CoreExists() && !string.IsNullOrWhiteSpace(coreDll.Value())) config.Error.WriteLine($"Cant find core dll at: {coreDll.Value()}");
|
if (!certExists()) config.Error.WriteLine($"Cant find certificate at: {cert.Value()}");
|
||||||
if (!CertExists()) config.Error.WriteLine($"Cant find certificate at: {cert.Value()}");
|
|
||||||
config.ShowHelp();
|
config.ShowHelp();
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -94,7 +92,7 @@ namespace BitwardenSelfLicensor
|
||||||
WriteLineOver("Please enter a business name, default is BitBetter. [Business Name]:");
|
WriteLineOver("Please enter a business name, default is BitBetter. [Business Name]:");
|
||||||
buff = Console.ReadLine();
|
buff = Console.ReadLine();
|
||||||
if (buff == "") businessname = "BitBetter";
|
if (buff == "") businessname = "BitBetter";
|
||||||
else if (CheckBusinessName(buff)) businessname = buff;
|
else if (checkBusinessName(buff)) businessname = buff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -107,14 +105,14 @@ namespace BitwardenSelfLicensor
|
||||||
{
|
{
|
||||||
WriteLineOver("Please provide the username this license will be registered to. [username]:");
|
WriteLineOver("Please provide the username this license will be registered to. [username]:");
|
||||||
buff = Console.ReadLine();
|
buff = Console.ReadLine();
|
||||||
if ( CheckUsername(buff) ) name = buff;
|
if ( checkUsername(buff) ) name = buff;
|
||||||
}
|
}
|
||||||
|
|
||||||
while (email == "")
|
while (email == "")
|
||||||
{
|
{
|
||||||
WriteLineOver("Please provide the email address for the user " + name + ". [email]");
|
WriteLineOver("Please provide the email address for the user " + name + ". [email]");
|
||||||
buff = Console.ReadLine();
|
buff = Console.ReadLine();
|
||||||
if ( CheckEmail(buff) ) email = buff;
|
if ( checkEmail(buff) ) email = buff;
|
||||||
}
|
}
|
||||||
|
|
||||||
while (storage == 0)
|
while (storage == 0)
|
||||||
|
@ -127,7 +125,7 @@ namespace BitwardenSelfLicensor
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (CheckStorage(buff)) storage = short.Parse(buff);
|
if (checkStorage(buff)) storage = short.Parse(buff);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -137,7 +135,7 @@ namespace BitwardenSelfLicensor
|
||||||
buff = Console.ReadLine();
|
buff = Console.ReadLine();
|
||||||
if ( buff == "" || buff == "y" || buff == "Y" )
|
if ( buff == "" || buff == "y" || buff == "Y" )
|
||||||
{
|
{
|
||||||
GenerateUserLicense(new X509Certificate2(cert.Value(), "test"), GetCoreDllPath(), name, email, storage, guid, null);
|
GenerateUserLicense(new X509Certificate2(cert.Value(), "test"), coreDll.Value(), name, email, storage, guid, null);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -151,7 +149,7 @@ namespace BitwardenSelfLicensor
|
||||||
buff = Console.ReadLine();
|
buff = Console.ReadLine();
|
||||||
if ( buff == "" || buff == "y" || buff == "Y" )
|
if ( buff == "" || buff == "y" || buff == "Y" )
|
||||||
{
|
{
|
||||||
GenerateOrgLicense(new X509Certificate2(cert.Value(), "test"), GetCoreDllPath(), name, email, storage, installid, businessname, null);
|
GenerateOrgLicense(new X509Certificate2(cert.Value(), "test"), coreDll.Value(), name, email, storage, installid, businessname, null);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -175,11 +173,17 @@ namespace BitwardenSelfLicensor
|
||||||
|
|
||||||
config.OnExecute(() =>
|
config.OnExecute(() =>
|
||||||
{
|
{
|
||||||
if (!VerifyTopOptions())
|
if (!verifyTopOptions())
|
||||||
{
|
{
|
||||||
if (!ExecExists() && !string.IsNullOrWhiteSpace(exec.Value())) config.Error.WriteLine($"Cant find single file executable at: {exec.Value()}");
|
if (!coreExists())
|
||||||
if (!CoreExists() && !string.IsNullOrWhiteSpace(coreDll.Value())) config.Error.WriteLine($"Cant find core dll at: {coreDll.Value()}");
|
{
|
||||||
if (!CertExists()) config.Error.WriteLine($"Cant find certificate at: {cert.Value()}");
|
config.Error.WriteLine($"Cant find core dll at: {coreDll.Value()}");
|
||||||
|
}
|
||||||
|
if (!certExists())
|
||||||
|
{
|
||||||
|
config.Error.WriteLine($"Cant find certificate at: {cert.Value()}");
|
||||||
|
}
|
||||||
|
|
||||||
config.ShowHelp();
|
config.ShowHelp();
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -210,7 +214,7 @@ namespace BitwardenSelfLicensor
|
||||||
storageShort = (short) parsedStorage;
|
storageShort = (short) parsedStorage;
|
||||||
}
|
}
|
||||||
|
|
||||||
GenerateUserLicense(new X509Certificate2(cert.Value(), "test"), GetCoreDllPath(), name.Value, email.Value, storageShort, userId, key.Value);
|
GenerateUserLicense(new X509Certificate2(cert.Value(), "test"), coreDll.Value(), name.Value, email.Value, storageShort, userId, key.Value);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
});
|
});
|
||||||
|
@ -227,11 +231,17 @@ namespace BitwardenSelfLicensor
|
||||||
|
|
||||||
config.OnExecute(() =>
|
config.OnExecute(() =>
|
||||||
{
|
{
|
||||||
if (!VerifyTopOptions())
|
if (!verifyTopOptions())
|
||||||
{
|
{
|
||||||
if (!ExecExists() && !string.IsNullOrWhiteSpace(exec.Value())) config.Error.WriteLine($"Cant find single file executable at: {exec.Value()}");
|
if (!coreExists())
|
||||||
if (!CoreExists() && !string.IsNullOrWhiteSpace(coreDll.Value())) config.Error.WriteLine($"Cant find core dll at: {coreDll.Value()}");
|
{
|
||||||
if (!CertExists()) config.Error.WriteLine($"Cant find certificate at: {cert.Value()}");
|
config.Error.WriteLine($"Cant find core dll at: {coreDll.Value()}");
|
||||||
|
}
|
||||||
|
if (!certExists())
|
||||||
|
{
|
||||||
|
config.Error.WriteLine($"Cant find certificate at: {cert.Value()}");
|
||||||
|
}
|
||||||
|
|
||||||
config.ShowHelp();
|
config.ShowHelp();
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -265,7 +275,7 @@ namespace BitwardenSelfLicensor
|
||||||
storageShort = (short) parsedStorage;
|
storageShort = (short) parsedStorage;
|
||||||
}
|
}
|
||||||
|
|
||||||
GenerateOrgLicense(new X509Certificate2(cert.Value(), "test"), GetCoreDllPath(), name.Value, email.Value, storageShort, installationId, businessName.Value, key.Value);
|
GenerateOrgLicense(new X509Certificate2(cert.Value(), "test"), coreDll.Value(), name.Value, email.Value, storageShort, installationId, businessName.Value, key.Value);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
});
|
});
|
||||||
|
@ -291,7 +301,7 @@ namespace BitwardenSelfLicensor
|
||||||
}
|
}
|
||||||
|
|
||||||
// checkUsername Checks that the username is a valid username
|
// checkUsername Checks that the username is a valid username
|
||||||
private static bool CheckUsername(string s)
|
static bool checkUsername(string s)
|
||||||
{
|
{
|
||||||
if ( string.IsNullOrWhiteSpace(s) ) {
|
if ( string.IsNullOrWhiteSpace(s) ) {
|
||||||
WriteLineOver("The username provided doesn't appear to be valid.\n");
|
WriteLineOver("The username provided doesn't appear to be valid.\n");
|
||||||
|
@ -301,7 +311,7 @@ namespace BitwardenSelfLicensor
|
||||||
}
|
}
|
||||||
|
|
||||||
// checkBusinessName Checks that the Business Name is a valid username
|
// checkBusinessName Checks that the Business Name is a valid username
|
||||||
private static bool CheckBusinessName(string s)
|
static bool checkBusinessName(string s)
|
||||||
{
|
{
|
||||||
if ( string.IsNullOrWhiteSpace(s) ) {
|
if ( string.IsNullOrWhiteSpace(s) ) {
|
||||||
WriteLineOver("The Business Name provided doesn't appear to be valid.\n");
|
WriteLineOver("The Business Name provided doesn't appear to be valid.\n");
|
||||||
|
@ -311,7 +321,7 @@ namespace BitwardenSelfLicensor
|
||||||
}
|
}
|
||||||
|
|
||||||
// checkEmail Checks that the email address is a valid email address
|
// checkEmail Checks that the email address is a valid email address
|
||||||
private static bool CheckEmail(string s)
|
static bool checkEmail(string s)
|
||||||
{
|
{
|
||||||
if ( string.IsNullOrWhiteSpace(s) ) {
|
if ( string.IsNullOrWhiteSpace(s) ) {
|
||||||
WriteLineOver("The email provided doesn't appear to be valid.\n");
|
WriteLineOver("The email provided doesn't appear to be valid.\n");
|
||||||
|
@ -321,7 +331,7 @@ namespace BitwardenSelfLicensor
|
||||||
}
|
}
|
||||||
|
|
||||||
// checkStorage Checks that the storage is in a valid range
|
// checkStorage Checks that the storage is in a valid range
|
||||||
private static bool CheckStorage(string s)
|
static bool checkStorage(string s)
|
||||||
{
|
{
|
||||||
if (string.IsNullOrWhiteSpace(s))
|
if (string.IsNullOrWhiteSpace(s))
|
||||||
{
|
{
|
||||||
|
@ -337,16 +347,19 @@ namespace BitwardenSelfLicensor
|
||||||
}
|
}
|
||||||
|
|
||||||
// WriteLineOver Writes a new line to console over last line.
|
// WriteLineOver Writes a new line to console over last line.
|
||||||
private static void WriteLineOver(string s)
|
static void WriteLineOver(string s)
|
||||||
{
|
{
|
||||||
Console.SetCursorPosition(0, Console.CursorTop -1);
|
Console.SetCursorPosition(0, Console.CursorTop -1);
|
||||||
Console.WriteLine(s);
|
Console.WriteLine(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
// WriteLine This wrapper is just here so that console writes all look similar.
|
// WriteLine This wrapper is just here so that console writes all look similar.
|
||||||
private static void WriteLine(string s) => Console.WriteLine(s);
|
static void WriteLine(string s)
|
||||||
|
{
|
||||||
|
Console.WriteLine(s);
|
||||||
|
}
|
||||||
|
|
||||||
private static void GenerateUserLicense(X509Certificate2 cert, string corePath, string userName, string email, short storage, Guid userId, string key)
|
static void GenerateUserLicense(X509Certificate2 cert, string corePath, string userName, string email, short storage, Guid userId, string key)
|
||||||
{
|
{
|
||||||
var core = AssemblyLoadContext.Default.LoadFromAssemblyPath(corePath);
|
var core = AssemblyLoadContext.Default.LoadFromAssemblyPath(corePath);
|
||||||
|
|
||||||
|
@ -379,7 +392,7 @@ namespace BitwardenSelfLicensor
|
||||||
Console.WriteLine(JsonConvert.SerializeObject(license, Formatting.Indented));
|
Console.WriteLine(JsonConvert.SerializeObject(license, Formatting.Indented));
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void GenerateOrgLicense(X509Certificate2 cert, string corePath, string userName, string email, short storage, Guid instalId, string businessName, string key)
|
static void GenerateOrgLicense(X509Certificate2 cert, string corePath, string userName, string email, short storage, Guid instalId, string businessName, string key)
|
||||||
{
|
{
|
||||||
var core = AssemblyLoadContext.Default.LoadFromAssemblyPath(corePath);
|
var core = AssemblyLoadContext.Default.LoadFromAssemblyPath(corePath);
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
|
@ -7,8 +7,7 @@
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" Version="1.1.1" />
|
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" Version="1.1.1" />
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
||||||
<PackageReference Include="SingleFileExtractor.Core" Version="2.3.0" />
|
|
||||||
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
|
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user