added command line arg for tag filtering, added arg logic for tag filtering

This commit is contained in:
Wyatt J. Miller 2022-08-23 18:57:18 -04:00
parent e4d8e3f66e
commit 7721031d62

View File

@ -16,13 +16,20 @@ static class Program
); );
branchOption.AddAlias("-b"); branchOption.AddAlias("-b");
var tagOption = new Option<string>(
"--tag",
"Specify the tag to filter by"
);
tagOption.AddAlias("-t");
var rootCommand = new RootCommand("Get a tally of contributors' commits") var rootCommand = new RootCommand("Get a tally of contributors' commits")
{ {
outputOption, outputOption,
branchOption, branchOption,
tagOption,
}; };
rootCommand.SetHandler((outputOptionValue, branchOptionValue) => { rootCommand.SetHandler((outputOptionValue, branchOptionValue, tagOptionValue) => {
CommitDetail commits = new CommitDetail(); CommitDetail commits = new CommitDetail();
switch (outputOptionValue) switch (outputOptionValue)
@ -31,48 +38,78 @@ static class Program
StdOutDataService outDataService = new StdOutDataService(); StdOutDataService outDataService = new StdOutDataService();
DataAccess dataAccess = new DataAccess(outDataService); DataAccess dataAccess = new DataAccess(outDataService);
switch (branchOptionValue) if (branchOptionValue != null && tagOptionValue != null) {
{ Console.WriteLine("Please specify either a branch or a tag");
case null: Environment.Exit(2);
commits.GetCurrentCommitsByName(); } else if (branchOptionValue != null && tagOptionValue == null) {
dataAccess.WriteData(commits.CommitDetails); switch (branchOptionValue)
break; {
default: case null:
commits.GetCommitsByBranch(branchOptionValue); commits.GetCurrentCommitsByName();
dataAccess.WriteData(commits.CommitDetails); dataAccess.WriteData(commits.CommitDetails);
break; break;
default:
commits.GetCommitsByBranch(branchOptionValue);
dataAccess.WriteData(commits.CommitDetails);
break;
}
break;
} else if (branchOptionValue == null && tagOptionValue != null) {
commits.GetCommitsByTag(tagOptionValue);
dataAccess.WriteData(commits.CommitDetails);
} }
break; break;
case "xlsx": case "xlsx":
ExcelDataService excelDataService = new ExcelDataService(); ExcelDataService excelDataService = new ExcelDataService();
DataAccess dataAccessExcelCase = new DataAccess(excelDataService); DataAccess dataAccessExcelCase = new DataAccess(excelDataService);
switch (branchOptionValue) if (branchOptionValue != null && tagOptionValue != null) {
{ Console.WriteLine("Please specify either a branch or a tag.");
case null: Environment.Exit(2);
commits.GetCurrentCommitsByName(); } else if (branchOptionValue != null && tagOptionValue == null) {
dataAccessExcelCase.WriteData(commits.CommitDetails); switch (branchOptionValue)
break; {
default: case null:
commits.GetCommitsByBranch(branchOptionValue); commits.GetCurrentCommitsByName();
dataAccessExcelCase.WriteData(commits.CommitDetails); dataAccessExcelCase.WriteData(commits.CommitDetails);
break; break;
default:
commits.GetCommitsByBranch(branchOptionValue);
dataAccessExcelCase.WriteData(commits.CommitDetails);
break;
}
break;
} else if (branchOptionValue == null && tagOptionValue != null) {
commits.GetCommitsByTag(tagOptionValue);
dataAccessExcelCase.WriteData(commits.CommitDetails);
} }
break; break;
case null: case null:
StdOutDataService stdOutDataService = new StdOutDataService(); StdOutDataService stdOutDataService = new StdOutDataService();
DataAccess dataAccessNullCase = new DataAccess(stdOutDataService); DataAccess dataAccessNullCase = new DataAccess(stdOutDataService);
switch (branchOptionValue) if (branchOptionValue != null && tagOptionValue != null) {
{ Console.WriteLine("Please specify either a branch or a tag.");
case null: Environment.Exit(2);
commits.GetCurrentCommitsByName(); } else if (branchOptionValue != null && tagOptionValue == null) {
dataAccessNullCase.WriteData(commits.CommitDetails); switch (branchOptionValue)
break; {
default: case null:
commits.GetCommitsByBranch(branchOptionValue); commits.GetCurrentCommitsByName();
dataAccessNullCase.WriteData(commits.CommitDetails); dataAccessNullCase.WriteData(commits.CommitDetails);
break; break;
default:
commits.GetCommitsByBranch(branchOptionValue);
dataAccessNullCase.WriteData(commits.CommitDetails);
break;
}
break;
} else if (branchOptionValue == null && tagOptionValue != null) {
commits.GetCommitsByTag(tagOptionValue);
dataAccessNullCase.WriteData(commits.CommitDetails);
} else {
commits.GetCurrentCommitsByName();
dataAccessNullCase.WriteData(commits.CommitDetails);
} }
break; break;
default: default:
@ -81,7 +118,7 @@ static class Program
break; break;
} }
}, },
outputOption, branchOption); outputOption, branchOption, tagOption);
rootCommand.Invoke(args); rootCommand.Invoke(args);
} }