forked from CodeConnect/SourceBrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUploadController.cs
210 lines (184 loc) · 8.24 KB
/
UploadController.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
namespace SourceBrowser.Site.Controllers
{
using System.IO;
using System.Web.Mvc;
using SourceBrowser.SolutionRetriever;
using SourceBrowser.Generator.Transformers;
using SourceBrowser.Site.Repositories;
using System;
using System.Linq;
using System.Web.Routing;
public class UploadController : Controller
{
// GET: Upload
public ActionResult Index()
{
return View();
}
public ActionResult Submit(string githubUrl)
{
// If someone navigates to submit directly, just send 'em back to index
if (string.IsNullOrWhiteSpace(githubUrl))
{
return View("Index");
}
var retriever = new GitHubRetriever(githubUrl);
if (!retriever.IsValidUrl())
{
ViewBag.Error = "Make sure that the provided path points to a valid GitHub repository.";
return View("Index");
}
// Check if this repo already exists
if (!BrowserRepository.TryLockRepository(retriever.UserName, retriever.RepoName))
{
// Repo exists. Redirect the user to the Update view
// where he can choose if he wants to visit the existing repo or update it.
var routeValues = new RouteValueDictionary();
routeValues.Add(nameof(githubUrl), githubUrl);
return RedirectToAction("Update", routeValues);
}
// We have locked the repository and marked it as processing.
// Whenever we return or exit on an exception, we need to unlock this repository
ProcessRepoResult result = ProcessRepoResult.Failed;
try
{
string repoSourceStagingPath = null;
try
{
repoSourceStagingPath = retriever.RetrieveProject();
}
catch (Exception ex)
{
ViewBag.Error = "There was an error downloading this repository.";
return View("Index");
}
// Generate the source browser files for this solution
var organizationPath = System.Web.Hosting.HostingEnvironment.MapPath("~/") + "SB_Files\\" + retriever.UserName;
var parsedRepoPath = Path.Combine(organizationPath, retriever.RepoName);
try
{
result = UploadRepository.ProcessRepo(retriever, repoSourceStagingPath, parsedRepoPath);
}
catch (Exception ex)
{
// TODO: Log this
ViewBag.Error = "There was an error processing solution."/* + Path.GetFileName(solutionPath)*/;
return View("Index");
}
if (result == ProcessRepoResult.NoSolutionsFound)
{
ViewBag.Error = "No C# solution was found. Ensure that a valid .sln file exists within your repository.";
return View("Index");
}
return Redirect("/Browse/" + retriever.UserName + "/" + retriever.RepoName);
}
finally
{
if (result == ProcessRepoResult.Successful)
{
BrowserRepository.UnlockRepository(retriever.UserName, retriever.RepoName);
}
else
{
BrowserRepository.RemoveRepository(retriever.UserName, retriever.RepoName);
}
}
}
/// <summary>
/// This API is used for the updating an existing repo.
/// If the request's http method is GET, it will return a View with a link to the existing repo
/// and a form that allows the user to force the update.
/// If the request's http method is POST, it will delete the existing repo and then
/// it will process the github url.
/// </summary>
/// <param name="githubUrl">The github url of the repo.</param>
[AcceptVerbs(HttpVerbs.Get | HttpVerbs.Post)]
public ActionResult Update(string githubUrl)
{
// If someone navigates to submit directly, just send 'em back to index
if (string.IsNullOrWhiteSpace(githubUrl))
{
return View("Index");
}
var retriever = new GitHubRetriever(githubUrl);
if (!retriever.IsValidUrl())
{
ViewBag.Error = "Make sure that the provided path points to a valid GitHub repository.";
return View("Index");
}
// Check if this repo already exists
if (!BrowserRepository.PathExists(retriever.UserName, retriever.RepoName))
{
// Repo doesn't exist.
ViewBag.Error = $"The repo \"{githubUrl}\" cannot be updated because it was never submitted.";
return View("Index");
}
string currentHttpMethod = HttpContext.Request.HttpMethod.ToUpper();
if (currentHttpMethod == HttpVerbs.Get.ToString().ToUpper())
{
ViewBag.BrowseUrl = "/Browse/" + retriever.UserName + "/" + retriever.RepoName;
ViewBag.GithubUrl = githubUrl;
return View("Update");
}
else if (currentHttpMethod == HttpVerbs.Post.ToString().ToUpper())
{
// Remove old files
BrowserRepository.RemoveRepository(retriever.UserName, retriever.RepoName);
// Create a file that indicates that the upload will begin
BrowserRepository.TryLockRepository(retriever.UserName, retriever.RepoName);
// We have locked the repository and marked it as processing.
// Whenever we return or exit on an exception, we need to unlock this repository
ProcessRepoResult result = ProcessRepoResult.Failed;
try
{
string repoSourceStagingPath = null;
try
{
repoSourceStagingPath = retriever.RetrieveProject();
}
catch (Exception ex)
{
ViewBag.Error = "There was an error downloading this repository.";
return View("Index");
}
var organizationPath = System.Web.Hosting.HostingEnvironment.MapPath("~/") + "SB_Files\\" + retriever.UserName;
var parsedRepoPath = Path.Combine(organizationPath, retriever.RepoName);
try
{
// Generate the source browser files for this solution
result = UploadRepository.ProcessRepo(retriever, repoSourceStagingPath, parsedRepoPath);
}
catch (Exception ex)
{
// TODO: Log this
ViewBag.Error = "There was an error processing solution."/* + Path.GetFileName(solutionPath)*/;
return View("Index");
}
if (result == ProcessRepoResult.NoSolutionsFound)
{
ViewBag.Error = "No C# solution was found. Ensure that a valid .sln file exists within your repository.";
return View("Index");
}
return Redirect("/Browse/" + retriever.UserName + "/" + retriever.RepoName);
}
finally
{
if (result == ProcessRepoResult.Successful)
{
BrowserRepository.UnlockRepository(retriever.UserName, retriever.RepoName);
}
else
{
BrowserRepository.RemoveRepository(retriever.UserName, retriever.RepoName);
}
}
}
else
{
// The request's http method wasn't valid: back to index
ViewBag.Error = $"Bad request.";
return View("Index");
}
}
}
}