1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-22 20:11:04 -05:00

dotnet format ran to fix formatting

This commit is contained in:
Robert Y 2025-03-13 16:45:37 -06:00
parent ea1e9fd1f2
commit 7877042c32

View File

@ -1,6 +1,6 @@
using CommandDotNet; using Bit.Seeder.Commands;
using Bit.Seeder.Commands;
using Bit.Seeder.Settings; using Bit.Seeder.Settings;
using CommandDotNet;
namespace Bit.DbSeederUtility; namespace Bit.DbSeederUtility;
@ -10,11 +10,11 @@ public class Program
{ {
// Ensure global settings are loaded // Ensure global settings are loaded
var globalSettings = GlobalSettingsFactory.GlobalSettings; var globalSettings = GlobalSettingsFactory.GlobalSettings;
// Set the current directory to the seeder directory for consistent seed paths // Set the current directory to the seeder directory for consistent seed paths
var seederDirectory = Path.GetFullPath(Path.Combine(Directory.GetCurrentDirectory(), "..", "seeder")); var seederDirectory = Path.GetFullPath(Path.Combine(Directory.GetCurrentDirectory(), "..", "seeder"));
Directory.SetCurrentDirectory(seederDirectory); Directory.SetCurrentDirectory(seederDirectory);
return new AppRunner<Program>() return new AppRunner<Program>()
.Run(args); .Run(args);
} }
@ -23,10 +23,10 @@ public class Program
public int Generate( public int Generate(
[Option('u', "users", Description = "Number of users to generate")] [Option('u', "users", Description = "Number of users to generate")]
int users, int users,
[Option('c', "ciphers-per-user", Description = "Number of ciphers per user to generate")] [Option('c', "ciphers-per-user", Description = "Number of ciphers per user to generate")]
int ciphersPerUser, int ciphersPerUser,
[Option('n', "seed-name", Description = "Name for the seed data files")] [Option('n', "seed-name", Description = "Name for the seed data files")]
string seedName string seedName
) )
@ -40,10 +40,10 @@ public class Program
public int Load( public int Load(
[Option('n', "seed-name", Description = "Name of the seed data to load")] [Option('n', "seed-name", Description = "Name of the seed data to load")]
string seedName, string seedName,
[Option('t', "timestamp", Description = "Specific timestamp of the seed data to load (defaults to most recent)")] [Option('t', "timestamp", Description = "Specific timestamp of the seed data to load (defaults to most recent)")]
string? timestamp = null, string? timestamp = null,
[Option('d', "dry-run", Description = "Validate the seed data without actually loading it")] [Option('d', "dry-run", Description = "Validate the seed data without actually loading it")]
bool dryRun = false bool dryRun = false
) )
@ -52,15 +52,15 @@ public class Program
var loadCommand = new LoadCommand(); var loadCommand = new LoadCommand();
return loadCommand.Execute(seedName, timestamp, dryRun) ? 0 : 1; return loadCommand.Execute(seedName, timestamp, dryRun) ? 0 : 1;
} }
[Command("generate-direct-load", Description = "Generate seed data and load it directly into the database without creating JSON files")] [Command("generate-direct-load", Description = "Generate seed data and load it directly into the database without creating JSON files")]
public int GenerateDirectLoad( public int GenerateDirectLoad(
[Option('u', "users", Description = "Number of users to generate")] [Option('u', "users", Description = "Number of users to generate")]
int users, int users,
[Option('c', "ciphers-per-user", Description = "Number of ciphers per user to generate")] [Option('c', "ciphers-per-user", Description = "Number of ciphers per user to generate")]
int ciphersPerUser, int ciphersPerUser,
[Option('n', "seed-name", Description = "Name identifier for this seed operation")] [Option('n', "seed-name", Description = "Name identifier for this seed operation")]
string seedName string seedName
) )
@ -69,7 +69,7 @@ public class Program
var generateCommand = new GenerateCommand(); var generateCommand = new GenerateCommand();
return generateCommand.Execute(users, ciphersPerUser, seedName, true) ? 0 : 1; return generateCommand.Execute(users, ciphersPerUser, seedName, true) ? 0 : 1;
} }
[Command("extract", Description = "Extract data from the database into seed files")] [Command("extract", Description = "Extract data from the database into seed files")]
public int Extract( public int Extract(
[Option('n', "seed-name", Description = "Name for the extracted seed")] [Option('n', "seed-name", Description = "Name for the extracted seed")]
@ -80,4 +80,4 @@ public class Program
var extractCommand = new ExtractCommand(); var extractCommand = new ExtractCommand();
return extractCommand.Execute(seedName) ? 0 : 1; return extractCommand.Execute(seedName) ? 0 : 1;
} }
} }