-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRepositoryDeployer.cs
More file actions
321 lines (270 loc) · 11.2 KB
/
RepositoryDeployer.cs
File metadata and controls
321 lines (270 loc) · 11.2 KB
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
using System.Security.Cryptography;
using System.Text;
namespace ConfigDeploy;
public sealed class RepositoryDeployer
{
private const string LocalBranchName = "__configdeploy__";
private readonly GitClient _gitClient;
private readonly ILogger<RepositoryDeployer> _logger;
public RepositoryDeployer(GitClient gitClient, ILogger<RepositoryDeployer> logger)
{
_gitClient = gitClient;
_logger = logger;
}
public async Task DeployAsync(
RepositoryDeployment repository,
DeploymentOptions options,
CancellationToken cancellationToken)
{
Validate(repository);
var timeout = TimeSpan.FromSeconds(Math.Max(30, options.GitTimeoutSeconds));
var cacheRoot = TrimEndingDirectorySeparator(options.CacheDirectory);
var destinationPath = TrimEndingDirectorySeparator(repository.DestinationPath);
ValidateDestinationPath(destinationPath, cacheRoot);
var deploymentId = GetDeploymentId(repository);
var repositoryCacheRoot = Path.Combine(cacheRoot, "repositories", deploymentId);
var workTreePath = Path.Combine(repositoryCacheRoot, "worktree");
var statePath = Path.Combine(cacheRoot, "state", $"{deploymentId}.commit");
Directory.CreateDirectory(repositoryCacheRoot);
Directory.CreateDirectory(Path.GetDirectoryName(statePath)!);
if (!Directory.Exists(Path.Combine(workTreePath, ".git")))
{
if (Directory.Exists(workTreePath))
{
DeleteDirectory(workTreePath);
}
_logger.LogInformation(
"Cloning {RepositoryName} branch {Branch} into service cache.",
GetDisplayName(repository),
repository.Branch);
await _gitClient.RunAsync(
["clone", "--no-checkout", repository.RepositoryUrl, workTreePath],
workingDirectory: null,
repository.Credentials,
timeout,
cancellationToken);
}
else
{
await _gitClient.RunAsync(
["remote", "set-url", "origin", repository.RepositoryUrl],
workTreePath,
repository.Credentials,
timeout,
cancellationToken);
}
await _gitClient.RunAsync(
["fetch", "--prune", "origin", $"+refs/heads/{repository.Branch}:refs/remotes/origin/{repository.Branch}"],
workTreePath,
repository.Credentials,
timeout,
cancellationToken);
var remoteRef = $"refs/remotes/origin/{repository.Branch}";
await _gitClient.RunAsync(
["checkout", "--force", "-B", LocalBranchName, remoteRef],
workTreePath,
repository.Credentials,
timeout,
cancellationToken);
await _gitClient.RunAsync(
["reset", "--hard", remoteRef],
workTreePath,
repository.Credentials,
timeout,
cancellationToken);
await _gitClient.RunAsync(
["clean", "-xffd"],
workTreePath,
repository.Credentials,
timeout,
cancellationToken);
var commit = await _gitClient.RunAsync(
["rev-parse", "HEAD"],
workTreePath,
repository.Credentials,
timeout,
cancellationToken);
if (!repository.RedeployWhenCommitUnchanged &&
File.Exists(statePath) &&
string.Equals(await File.ReadAllTextAsync(statePath, cancellationToken), commit, StringComparison.Ordinal))
{
_logger.LogInformation(
"Skipping {RepositoryName}; branch {Branch} is already deployed at commit {Commit}.",
GetDisplayName(repository),
repository.Branch,
commit);
return;
}
ReplaceDestination(workTreePath, destinationPath);
await File.WriteAllTextAsync(statePath, commit, cancellationToken);
_logger.LogInformation(
"Deployed {RepositoryName} branch {Branch} commit {Commit} to {DestinationPath}.",
GetDisplayName(repository),
repository.Branch,
commit,
destinationPath);
}
private static void Validate(RepositoryDeployment repository)
{
if (string.IsNullOrWhiteSpace(repository.RepositoryUrl))
{
throw new InvalidOperationException("RepositoryUrl is required.");
}
if (string.IsNullOrWhiteSpace(repository.Branch))
{
throw new InvalidOperationException($"Branch is required for repository '{GetDisplayName(repository)}'.");
}
if (string.IsNullOrWhiteSpace(repository.DestinationPath))
{
throw new InvalidOperationException($"DestinationPath is required for repository '{GetDisplayName(repository)}'.");
}
}
private static void ValidateDestinationPath(string destinationPath, string cacheRoot)
{
var root = Path.GetPathRoot(destinationPath);
var normalizedDestination = TrimEndingDirectorySeparator(destinationPath);
var normalizedCacheRoot = TrimEndingDirectorySeparator(cacheRoot);
if (string.IsNullOrWhiteSpace(root) ||
string.Equals(normalizedDestination, TrimEndingDirectorySeparator(root), StringComparison.OrdinalIgnoreCase))
{
throw new InvalidOperationException($"Refusing to deploy to unsafe destination path '{destinationPath}'.");
}
if (PathsOverlap(normalizedDestination, normalizedCacheRoot))
{
throw new InvalidOperationException("DestinationPath must not overlap the ConfigDeploy cache directory.");
}
}
private static bool PathsOverlap(string firstPath, string secondPath)
{
return IsSameOrChild(firstPath, secondPath) || IsSameOrChild(secondPath, firstPath);
}
private static bool IsSameOrChild(string path, string possibleParent)
{
return path.Equals(possibleParent, StringComparison.OrdinalIgnoreCase) ||
path.StartsWith(possibleParent + Path.DirectorySeparatorChar, StringComparison.OrdinalIgnoreCase) ||
path.StartsWith(possibleParent + Path.AltDirectorySeparatorChar, StringComparison.OrdinalIgnoreCase);
}
private static string TrimEndingDirectorySeparator(string path)
{
return Path.TrimEndingDirectorySeparator(Path.GetFullPath(path));
}
private static void ReplaceDestination(string sourcePath, string destinationPath)
{
var destinationParent = Path.GetDirectoryName(destinationPath)
?? throw new InvalidOperationException($"DestinationPath '{destinationPath}' has no parent directory.");
Directory.CreateDirectory(destinationParent);
var stagingPath = Path.Combine(
destinationParent,
$".configdeploy-staging-{Path.GetFileName(destinationPath)}-{Guid.NewGuid():N}");
var backupPath = Path.Combine(
destinationParent,
$".configdeploy-backup-{Path.GetFileName(destinationPath)}-{DateTimeOffset.UtcNow:yyyyMMddHHmmssfff}");
try
{
CopyRepositoryFiles(sourcePath, stagingPath);
if (Directory.Exists(destinationPath))
{
Directory.Move(destinationPath, backupPath);
}
else if (File.Exists(destinationPath))
{
File.Move(destinationPath, backupPath);
}
Directory.Move(stagingPath, destinationPath);
if (Directory.Exists(backupPath))
{
DeleteDirectory(backupPath);
}
else if (File.Exists(backupPath))
{
File.Delete(backupPath);
}
}
catch
{
if (!Directory.Exists(destinationPath) && !File.Exists(destinationPath))
{
if (Directory.Exists(backupPath))
{
Directory.Move(backupPath, destinationPath);
}
else if (File.Exists(backupPath))
{
File.Move(backupPath, destinationPath);
}
}
throw;
}
finally
{
if (Directory.Exists(stagingPath))
{
DeleteDirectory(stagingPath);
}
}
}
private static void DeleteDirectory(string path)
{
if (!Directory.Exists(path))
{
return;
}
foreach (var file in Directory.EnumerateFiles(path, "*", SearchOption.AllDirectories))
{
File.SetAttributes(file, FileAttributes.Normal);
}
foreach (var directory in Directory.EnumerateDirectories(path, "*", SearchOption.AllDirectories))
{
File.SetAttributes(directory, FileAttributes.Normal);
}
File.SetAttributes(path, FileAttributes.Normal);
Directory.Delete(path, recursive: true);
}
private static void CopyRepositoryFiles(string sourcePath, string destinationPath)
{
Directory.CreateDirectory(destinationPath);
foreach (var directory in Directory.EnumerateDirectories(sourcePath, "*", SearchOption.AllDirectories))
{
if (IsGitDirectory(directory, sourcePath))
{
continue;
}
var relativePath = Path.GetRelativePath(sourcePath, directory);
Directory.CreateDirectory(Path.Combine(destinationPath, relativePath));
}
foreach (var file in Directory.EnumerateFiles(sourcePath, "*", SearchOption.AllDirectories))
{
if (IsUnderGitDirectory(file, sourcePath))
{
continue;
}
var relativePath = Path.GetRelativePath(sourcePath, file);
var destinationFile = Path.Combine(destinationPath, relativePath);
Directory.CreateDirectory(Path.GetDirectoryName(destinationFile)!);
File.Copy(file, destinationFile, overwrite: false);
}
}
private static bool IsGitDirectory(string directory, string repositoryRoot)
{
return string.Equals(Path.GetFileName(directory), ".git", StringComparison.OrdinalIgnoreCase) ||
IsUnderGitDirectory(directory, repositoryRoot);
}
private static bool IsUnderGitDirectory(string path, string repositoryRoot)
{
var relativePath = Path.GetRelativePath(repositoryRoot, path);
return relativePath.Split(Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar)
.Any(part => string.Equals(part, ".git", StringComparison.OrdinalIgnoreCase));
}
private static string GetDeploymentId(RepositoryDeployment repository)
{
var input = $"{repository.RepositoryUrl}|{repository.Branch}|{repository.DestinationPath}";
var hash = SHA256.HashData(Encoding.UTF8.GetBytes(input));
return Convert.ToHexString(hash)[..24].ToLowerInvariant();
}
private static string GetDisplayName(RepositoryDeployment repository)
{
return string.IsNullOrWhiteSpace(repository.Name)
? $"{repository.RepositoryUrl}#{repository.Branch}"
: repository.Name;
}
}