DrillSergeant/Program.cs

164 lines
6.7 KiB
C#
Raw Permalink Normal View History

2022-08-04 14:55:42 -05:00
using System.CommandLine;
2022-07-29 17:18:24 -05:00
2022-07-29 18:51:22 -05:00
static class Program
2022-07-29 17:18:24 -05:00
{
internal static void Main(string[] args)
{
2022-08-04 14:55:42 -05:00
var outputOption = new Option<string>(
"--output",
"Specify the output given to the user"
).FromAmong("stdout", "xlsx", "pdf");
2022-08-04 14:55:42 -05:00
outputOption.AddAlias("-o");
var branchOption = new Option<string>(
"--branch",
"Specify the branch to filter by"
);
branchOption.AddAlias("-b");
var tagOption = new Option<string>(
"--tag",
"Specify the tag to filter by"
);
tagOption.AddAlias("-t");
2022-12-24 16:46:20 -06:00
var dirOption = new Option<string>(
"--file",
"Specify a git directory"
);
dirOption.AddAlias("-f");
2022-08-04 14:55:42 -05:00
var rootCommand = new RootCommand("Get a tally of contributors' commits")
2022-07-29 17:18:24 -05:00
{
2022-08-04 14:55:42 -05:00
outputOption,
branchOption,
tagOption,
2022-12-24 16:46:20 -06:00
dirOption,
2022-08-04 14:55:42 -05:00
};
2022-12-24 16:46:20 -06:00
rootCommand.SetHandler((outputOptionValue, branchOptionValue, tagOptionValue, dirOptionValue) =>
{
CommitDetail commits = new CommitDetail(dirOptionValue);
switch (outputOptionValue)
{
case "stdout":
StdOutDataService outDataService = new StdOutDataService();
DataAccess dataAccess = new DataAccess(outDataService);
2022-08-04 14:55:42 -05:00
2022-12-24 16:46:20 -06:00
if (branchOptionValue != null && tagOptionValue != null)
{
Console.WriteLine("Please specify either a branch or a tag");
Environment.Exit(2);
}
else if (branchOptionValue != null && tagOptionValue == null)
{
switch (branchOptionValue)
{
case null:
commits.GetCurrentCommitsByName();
dataAccess.WriteData(commits.CommitDetails);
break;
2022-12-24 16:46:20 -06:00
default:
commits.GetCommitsByBranch(branchOptionValue);
dataAccess.WriteData(commits.CommitDetails);
2022-12-24 16:46:20 -06:00
break;
}
}
else if (branchOptionValue == null && tagOptionValue != null)
{
commits.GetCommitsByTag(tagOptionValue);
dataAccess.WriteData(commits.CommitDetails);
}
break;
case "xlsx":
ExcelDataService excelDataService = new ExcelDataService();
DataAccess dataAccessExcelCase = new DataAccess(excelDataService);
2022-08-04 14:55:42 -05:00
2022-12-24 16:46:20 -06:00
if (branchOptionValue != null && tagOptionValue != null)
{
Console.WriteLine("Please specify either a branch or a tag.");
Environment.Exit(2);
}
else if (branchOptionValue != null && tagOptionValue == null)
{
switch (branchOptionValue)
{
case null:
commits.GetCurrentCommitsByName();
dataAccessExcelCase.WriteData(commits.CommitDetails);
break;
2022-12-24 16:46:20 -06:00
default:
commits.GetCommitsByBranch(branchOptionValue);
dataAccessExcelCase.WriteData(commits.CommitDetails);
2022-12-24 16:46:20 -06:00
break;
}
}
else if (branchOptionValue == null && tagOptionValue != null)
{
commits.GetCommitsByTag(tagOptionValue);
dataAccessExcelCase.WriteData(commits.CommitDetails);
}
break;
case "pdf":
PdfDataService pdfDataService = new PdfDataService();
DataAccess dataAccessPdfCase = new DataAccess(pdfDataService);
2022-12-24 16:46:20 -06:00
switch (branchOptionValue)
{
2022-08-04 14:55:42 -05:00
case null:
2022-12-24 16:46:20 -06:00
commits.GetCurrentCommitsByName();
dataAccessPdfCase.WriteData(commits.CommitDetails);
2022-08-04 14:55:42 -05:00
break;
default:
2022-12-24 16:46:20 -06:00
commits.GetCommitsByBranch(branchOptionValue);
dataAccessPdfCase.WriteData(commits.CommitDetails);
2022-08-04 14:55:42 -05:00
break;
}
2022-12-24 16:46:20 -06:00
break;
case null:
StdOutDataService stdOutDataService = new StdOutDataService();
DataAccess dataAccessNullCase = new DataAccess(stdOutDataService);
if (branchOptionValue != null && tagOptionValue != null)
{
Console.WriteLine("Please specify either a branch or a tag.");
Environment.Exit(2);
}
else if (branchOptionValue != null && tagOptionValue == null)
{
switch (branchOptionValue)
{
case null:
commits.GetCurrentCommitsByName();
dataAccessNullCase.WriteData(commits.CommitDetails);
break;
default:
commits.GetCommitsByBranch(branchOptionValue);
dataAccessNullCase.WriteData(commits.CommitDetails);
break;
}
}
else if (branchOptionValue == null && tagOptionValue != null)
{
commits.GetCommitsByTag(tagOptionValue);
dataAccessNullCase.WriteData(commits.CommitDetails);
}
else
{
commits.GetCurrentCommitsByName();
dataAccessNullCase.WriteData(commits.CommitDetails);
}
break;
default:
System.Console.WriteLine("This should not happen...");
Environment.Exit(4);
break;
}
},
outputOption, branchOption, tagOption, dirOption);
2022-08-04 14:55:42 -05:00
rootCommand.Invoke(args);
2022-07-29 17:18:24 -05:00
}
}