-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.cs
283 lines (233 loc) · 10.6 KB
/
Main.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
// Copyright (c) iQubit Inc. All rights reserved.
// Use of this source code is governed by a GPL-v3 license
namespace SCMApp {
using System.Threading.Tasks;
using System.CommandLine;
using System.CommandLine.NamingConventionBinder;
/// <summary> Explanation of namespace name:
/// Elaboration: Source Control Manager Application
/// This name coz we might wanna support other version control systems in future
///
/// And, below line `NamespaceDoc` is to support this on XML documentation
/// </summary>
/// <remarks>
/// ref, <see href="https://stackoverflow.com/questions/793210/xml-documentation-for-a-namespace">
/// SO - C# XML Documentation Website Link</see>
/// </remarks>
internal static class NamespaceDoc { }
class SCMAppMain {
/// <summary>
/// Entry Point
/// In this source file, we handle command line arguments
/// - define handlers
/// - follow CLA Design wiki
/// </summary>
/// <param name="args">CLA</param>
/// <returns></returns>
static async Task Main(string[] args)
{
var scmAppCLA = new SCMAppCLA();
await scmAppCLA.ConfigureCLA(args);
}
}
class SCMAppCLA {
public SCMAppCLA() { }
/// <summary>
/// Automaton of the app
/// </summary>
public async Task ConfigureCLA(string[] args) {
var rootCmd = new RootCommand();
var rpOption = new Option<string>(new[] {"--repodir", "-d"}, "Repository directory location / path");
rootCmd.AddGlobalOption(rpOption);
var jcOption = new Option<string>(new[] {"--configfilepath", "-c"}, "Path of the json configuration file");
rootCmd.AddGlobalOption(jcOption);
rootCmd.AddCommand(GetPushCmd());
rootCmd.AddCommand(GetPullCmd());
// TODO: separate these Command Implementations with methods like Push and Pull
var infoCmd = new Command("info", "Show information about repository.");
infoCmd.AddAlias("information");
infoCmd.Handler = CommandHandler
.Create<string, string>((repodir, configfilepath) =>
{
var app = new GitUtility(GitUtility.SCMAction.ShowInfo, ValidateRepoDir(repodir), (configfilepath is null? string.Empty : configfilepath));
app.ShowRepoAndUserInfo();
});
rootCmd.AddCommand(infoCmd);
var statusCmd = new Command("status", "Show status on changes (including commit message).");
statusCmd.AddAlias("stat");
statusCmd.Handler = CommandHandler
.Create<string, string>((repodir, configfilepath) =>
{
var app = new GitUtility(GitUtility.SCMAction.ShowStatus, ValidateRepoDir(repodir), (configfilepath is null? string.Empty : configfilepath));
app.ShowStatus();
});
rootCmd.AddCommand(statusCmd);
// UpdateRemote: remote URL
var setUrlCmd = new Command("set-url", "Update remote origin URL.");
setUrlCmd.AddArgument(new Argument<string>("remoteUrl"));
// 'set-url' with or without '--upstream'
setUrlCmd.AddOption(GetUpstreamOption());
setUrlCmd.Handler = CommandHandler
.Create<string, bool, string, string>((remoteUrl, upstream, repodir, configfilepath) =>
{
var app = new GitUtility(GitUtility.SCMAction.UpdateRemote, ValidateRepoDir(repodir), (configfilepath is null? string.Empty : configfilepath));
app.UpdateRemoteURL(upstream ? "upstream": "origin", remoteUrl);
});
rootCmd.AddCommand(setUrlCmd);
rootCmd.AddCommand(GetBranchCmd());
rootCmd.AddCommand(GetRebaseCmd());
await rootCmd.InvokeAsync(args);
}
/// <summary>
/// Implements the "push" command
/// - Use bare push to push modified files
/// - Use '--singlefile' option to push a file
/// - Use '--all' option to push all
/// </summary>
/// <returns>The "push" Command</returns>
private Command GetPushCmd() {
var pushCmd = new Command("push", "Commit local changes and push commits to remote.");
// default push type: Add only modified files to commit and Push when no additional option is
// specified in command line
// 'push mod' with or without '--amend'
var amendOption = new Option<bool>(new[] {"--amend", "-f"}, "Amend last commit and force push"
+ "!");
pushCmd.AddOption(amendOption);
// change push type to Single when singlefile is specified on options
// Used to have an argument with 'single' sub command: file path
var sfOption = new Option<string>(new[] {"--singlefile", "-s"}, "Add a file to commit and "+
"push; argument: path of the file to add to commmit!");
pushCmd.AddOption(sfOption);
// change push type to All
var allOption = new Option<bool>(new[] {"--all", "-a"}, "Add all files to commit and push"
+ "!");
pushCmd.AddOption(allOption);
pushCmd.Handler = CommandHandler
.Create<string, bool, bool, string, string>((singlefile, all, amend, repodir, configfilepath) =>
{
// Validations
if ((singlefile is not null) && all)
throw new System.ArgumentException("Pushing single file and pushing all files are mutually exclusive arguments!");
var pushOpType = GitUtility.StageType.Update;
if (singlefile is not null)
pushOpType = GitUtility.StageType.Single;
else if (all)
pushOpType = GitUtility.StageType.All;
var app = new GitUtility(GitUtility.SCMAction.Push, ValidateRepoDir(repodir), (configfilepath is null? string.Empty : configfilepath));
if (amend)
System.Console.WriteLine("Amend/Force flag is set. This will amend last commit and force push "
+ "to remote!");
switch(pushOpType) {
case GitUtility.StageType.Update:
case GitUtility.StageType.All:
app.SCPChanges(pushOpType, amend);
break;
case GitUtility.StageType.Single:
if (singlefile == string.Empty)
throw new System.ArgumentException("Argument for --singlefile cannot be empty!");
// singlefile?? string.Empty: just to ignore nullable warning
app.SCPSingleChange(singlefile?? string.Empty, amend);
break;
default:
break;
}
});
return pushCmd;
}
private Command GetPullCmd() {
var pullCmd = new Command("pull", "Pull changes from repository.");
pullCmd.AddOption(GetUpstreamOption());
pullCmd.Handler = CommandHandler
.Create<bool, string, string>((upstream, repodir, configfilepath) =>
{
var app = new GitUtility(GitUtility.SCMAction.Pull, ValidateRepoDir(repodir), (configfilepath is null? string.Empty : configfilepath));
app.PullChanges(upstream);
});
return pullCmd;
}
/// <summary>
/// Implements the "branch" command
/// with options to,
/// - deletes a branch
/// - renames a branch
/// </summary>
/// <returns>The "branch" Command</returns>
private Command GetBranchCmd() {
var branchCmd = new Command("branch", "Delete branch from local and remote.");
var deleteOption = new Option<string>(new[] {"--delete", "-d"}, "Delete branch from local "+
"and remote.");
branchCmd.AddOption(deleteOption);
var remoteOnlyOption = new Option<string>(new[] {"--remoteOnly"}, "Delete branch from "+
"remote only.");
branchCmd.AddOption(remoteOnlyOption);
var renameOption = new Option<string>(new[] {"--rename", "-r"}, "Rename branch from local "+
"and remote.");
branchCmd.AddOption(renameOption);
branchCmd.Handler = CommandHandler
.Create<string, string, bool, string, string>((delete, rename, remoteOnly, repodir, configfilepath) =>
{
if (delete is not null && rename is not null)
throw new System.ArgumentException("Delete and rename are mutually exclusive arguments!");
if (delete is not null) {
if (delete == string.Empty)
throw new System.ArgumentException("Branch name (argument for --delete) is missing!");
System.Console.WriteLine("remote only flag: " + remoteOnly);
// if (remoteOnly is null)
// remoteOnly = false;
var branchName = delete;
var app = new GitUtility(GitUtility.SCMAction.Branch, ValidateRepoDir(repodir), (configfilepath is null? string.Empty : configfilepath));
app.DeleteBranch(branchName, remoteOnly);
}
if (rename is not null) {
if (remoteOnly)
throw new System.ArgumentException("RremoteOnly is not supported with --rename yet!");
if (rename == string.Empty)
throw new System.ArgumentException("Branch name (argument for --rename) to rename to is missing!");
var branchName = rename;
var app = new GitUtility(GitUtility.SCMAction.Branch, ValidateRepoDir(repodir), (configfilepath is null? string.Empty : configfilepath));
app.RenameBranch(branchName);
}
});
return branchCmd;
}
/// <summary>
/// Implements the "rebase" command
/// with options to,
/// - amend author for commits when it matches author email
/// - ...
/// </summary>
/// <returns>The "branch" Command</returns>
private Command GetRebaseCmd() {
var rebaseCmd = new Command("rebase", "Rebase command to perform rewrite history i.e., amend author / committer.");
var nameOption = new Option<string>(new[] {"--name", "-n"}, "Name of author / committer.");
rebaseCmd.AddOption(nameOption);
var emailOption = new Option<string>(new[] {"--email", "-e"}, "Email of author / committer.");
rebaseCmd.AddOption(emailOption);
rebaseCmd.Handler = CommandHandler
.Create<string, string, string, string>((name, email, repodir, configfilepath) =>
{
if (name is null && email is null)
throw new System.ArgumentException("Name and Email address both cannot be empty!");
var app = new GitUtility(GitUtility.SCMAction.Rebase, ValidateRepoDir(repodir), (configfilepath is null? string.Empty : configfilepath));
app.AmendAuthor(name??string.Empty, email??string.Empty);
});
return rebaseCmd;
}
private string ValidateRepoDir(string repoDir) {
var repoPath = ".";
if (repoDir is not null) {
repoPath = repoDir;
if (repoDir.EndsWith('\\'))
repoPath = repoDir.Substring(0, repoPath.Length - 1);
}
return repoPath;
}
/// <remarks>
/// Shared by set-url and pull
/// </remarks>
private Option<bool> GetUpstreamOption() {
var upstreamOption = new Option<bool>(new[] {"--upstream", "-u"}, "Whther to use remote upstream !");
return upstreamOption;
}
}
}