This repository was archived by the owner on Jun 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathPullRequestService.cs
1139 lines (1001 loc) · 46.3 KB
/
PullRequestService.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
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
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reactive;
using System.Reactive.Linq;
using System.Reactive.Threading.Tasks;
using System.Runtime.InteropServices;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
using GitHub.Api;
using GitHub.App.Services;
using GitHub.Extensions;
using GitHub.Logging;
using GitHub.Models;
using GitHub.Primitives;
using LibGit2Sharp;
using Microsoft.VisualStudio.StaticReviews.Contracts;
using Octokit.GraphQL;
using Octokit.GraphQL.Model;
using Rothko;
using static System.FormattableString;
using static Octokit.GraphQL.Variable;
using CheckConclusionState = GitHub.Models.CheckConclusionState;
using CheckStatusState = GitHub.Models.CheckStatusState;
using StatusState = GitHub.Models.StatusState;
namespace GitHub.Services
{
[Export(typeof(IPullRequestService))]
[PartCreationPolicy(CreationPolicy.Shared)]
public class PullRequestService : IPullRequestService, IStaticReviewFileMap
{
const string SettingCreatedByGHfVS = "created-by-ghfvs";
const string SettingGHfVSPullRequest = "ghfvs-pr-owner-number";
static readonly Regex InvalidBranchCharsRegex = new Regex(@"[^0-9A-Za-z\-]", RegexOptions.ECMAScript);
static readonly Regex BranchCapture = new Regex(@"branch\.(?<branch>.+)\.ghfvs-pr", RegexOptions.ECMAScript);
static ICompiledQuery<Page<ActorModel>> readAssignableUsers;
static ICompiledQuery<Page<PullRequestListItemModel>> readPullRequests;
static ICompiledQuery<Page<PullRequestListItemModel>> readPullRequestsEnterprise;
static readonly string[] TemplatePaths = new[]
{
"PULL_REQUEST_TEMPLATE.md",
"PULL_REQUEST_TEMPLATE",
".github\\PULL_REQUEST_TEMPLATE.md",
".github\\PULL_REQUEST_TEMPLATE",
};
readonly IGitClient gitClient;
readonly IGitService gitService;
readonly IVSGitExt gitExt;
readonly IGraphQLClientFactory graphqlFactory;
readonly IOperatingSystem os;
readonly IUsageTracker usageTracker;
readonly IDictionary<string, (string commitId, string repoPath)> tempFileMappings;
[ImportingConstructor]
public PullRequestService(
IGitClient gitClient,
IGitService gitService,
IVSGitExt gitExt,
IGraphQLClientFactory graphqlFactory,
IOperatingSystem os,
IUsageTracker usageTracker)
{
this.gitClient = gitClient;
this.gitService = gitService;
this.gitExt = gitExt;
this.graphqlFactory = graphqlFactory;
this.os = os;
this.usageTracker = usageTracker;
this.tempFileMappings = new Dictionary<string, (string commitId, string repoPath)>(StringComparer.OrdinalIgnoreCase);
}
public async Task<Page<PullRequestListItemModel>> ReadPullRequests(
HostAddress address,
string owner,
string name,
string after,
PullRequestStateEnum[] states)
{
ICompiledQuery<Page<PullRequestListItemModel>> query;
if (address.IsGitHubDotCom())
{
if (readPullRequests == null)
{
readPullRequests = new Query()
.Repository(owner: Var(nameof(owner)), name: Var(nameof(name)))
.PullRequests(
first: 100,
after: Var(nameof(after)),
orderBy: new IssueOrder { Direction = OrderDirection.Desc, Field = IssueOrderField.CreatedAt },
states: Var(nameof(states)))
.Select(page => new Page<PullRequestListItemModel>
{
EndCursor = page.PageInfo.EndCursor,
HasNextPage = page.PageInfo.HasNextPage,
TotalCount = page.TotalCount,
Items = page.Nodes.Select(pr => new ListItemAdapter
{
Id = pr.Id.Value,
LastCommit = pr.Commits(null, null, 1, null).Nodes.Select(commit =>
new LastCommitSummaryAdapter
{
CheckSuites = commit.Commit.CheckSuites(null, null, null, null, null).AllPages(10)
.Select(suite => new CheckSuiteSummaryModel
{
CheckRuns = suite.CheckRuns(null, null, null, null, null).AllPages(10)
.Select(run => new CheckRunSummaryModel
{
Conclusion = run.Conclusion.FromGraphQl(),
Status = run.Status.FromGraphQl()
}).ToList(),
}).ToList(),
Statuses = commit.Commit.Status
.Select(context =>
context.Contexts.Select(statusContext => new StatusSummaryModel
{
State = statusContext.State.FromGraphQl(),
}).ToList()
).SingleOrDefault()
}).ToList().FirstOrDefault(),
Author = new ActorModel
{
Login = pr.Author.Login,
AvatarUrl = pr.Author.AvatarUrl(null),
},
CommentCount = pr.Comments(0, null, null, null).TotalCount,
Number = pr.Number,
Reviews = pr.Reviews(null, null, null, null, null, null).AllPages().Select(review => new ReviewAdapter
{
Body = review.Body,
CommentCount = review.Comments(null, null, null, null).TotalCount,
}).ToList(),
State = pr.State.FromGraphQl(),
Title = pr.Title,
UpdatedAt = pr.UpdatedAt,
}).ToList(),
}).Compile();
}
query = readPullRequests;
}
else
{
if (readPullRequestsEnterprise == null)
{
readPullRequestsEnterprise = new Query()
.Repository(owner: Var(nameof(owner)), name: Var(nameof(name)))
.PullRequests(
first: 100,
after: Var(nameof(after)),
orderBy: new IssueOrder { Direction = OrderDirection.Desc, Field = IssueOrderField.CreatedAt },
states: Var(nameof(states)))
.Select(page => new Page<PullRequestListItemModel>
{
EndCursor = page.PageInfo.EndCursor,
HasNextPage = page.PageInfo.HasNextPage,
TotalCount = page.TotalCount,
Items = page.Nodes.Select(pr => new ListItemAdapter
{
Id = pr.Id.Value,
LastCommit = pr.Commits(null, null, 1, null).Nodes.Select(commit =>
new LastCommitSummaryAdapter
{
Statuses = commit.Commit.Status.Select(context =>
context == null
? null
: context.Contexts
.Select(statusContext => new StatusSummaryModel
{
State = statusContext.State.FromGraphQl()
}).ToList()
).SingleOrDefault()
}).ToList().FirstOrDefault(),
Author = new ActorModel
{
Login = pr.Author.Login,
AvatarUrl = pr.Author.AvatarUrl(null),
},
CommentCount = pr.Comments(0, null, null, null).TotalCount,
Number = pr.Number,
Reviews = pr.Reviews(null, null, null, null, null, null).AllPages().Select(review => new ReviewAdapter
{
Body = review.Body,
CommentCount = review.Comments(null, null, null, null).TotalCount,
}).ToList(),
State = pr.State.FromGraphQl(),
Title = pr.Title,
UpdatedAt = pr.UpdatedAt,
}).ToList(),
}).Compile();
}
query = readPullRequestsEnterprise;
}
var graphql = await graphqlFactory.CreateConnection(address);
var vars = new Dictionary<string, object>
{
{ nameof(owner), owner },
{ nameof(name), name },
{ nameof(after), after },
{ nameof(states), states.Select(x => (PullRequestState)x).ToList() },
};
var result = await graphql.Run(query, vars);
foreach (var item in result.Items.Cast<ListItemAdapter>())
{
item.CommentCount += item.Reviews.Sum(x => x.Count);
item.Reviews = null;
var checkRuns = item.LastCommit?.CheckSuites?.SelectMany(model => model.CheckRuns).ToArray();
var hasCheckRuns = checkRuns?.Any() ?? false;
var hasStatuses = item.LastCommit?.Statuses?.Any() ?? false;
if (!hasCheckRuns && !hasStatuses)
{
item.Checks = PullRequestChecksState.None;
}
else
{
var checksHasFailure = false;
var checksHasCompleteSuccess = true;
if (hasCheckRuns)
{
checksHasFailure = checkRuns
.Any(model => model.Conclusion.HasValue
&& (model.Conclusion.Value == CheckConclusionState.Failure
|| model.Conclusion.Value == CheckConclusionState.ActionRequired));
if (!checksHasFailure)
{
checksHasCompleteSuccess = checkRuns
.All(model => model.Conclusion.HasValue
&& (model.Conclusion.Value == CheckConclusionState.Success
|| model.Conclusion.Value == CheckConclusionState.Neutral));
}
}
var statusHasFailure = false;
var statusHasCompleteSuccess = true;
if (!checksHasFailure && hasStatuses)
{
statusHasFailure = item.LastCommit
.Statuses
.Any(status => status.State == StatusState.Failure
|| status.State == StatusState.Error);
if (!statusHasFailure)
{
statusHasCompleteSuccess =
item.LastCommit.Statuses.All(status => status.State == StatusState.Success);
}
}
if (checksHasFailure || statusHasFailure)
{
item.Checks = PullRequestChecksState.Failure;
}
else if (statusHasCompleteSuccess && checksHasCompleteSuccess)
{
item.Checks = PullRequestChecksState.Success;
}
else
{
item.Checks = PullRequestChecksState.Pending;
}
}
item.LastCommit = null;
}
return result;
}
public async Task<Page<ActorModel>> ReadAssignableUsers(
HostAddress address,
string owner,
string name,
string after)
{
if (readAssignableUsers == null)
{
readAssignableUsers = new Query()
.Repository(owner: Var(nameof(owner)), name: Var(nameof(name)))
.AssignableUsers(first: 100, after: Var(nameof(after)))
.Select(connection => new Page<ActorModel>
{
EndCursor = connection.PageInfo.EndCursor,
HasNextPage = connection.PageInfo.HasNextPage,
TotalCount = connection.TotalCount,
Items = connection.Nodes.Select(user => new ActorModel
{
AvatarUrl = user.AvatarUrl(30),
Login = user.Login,
}).ToList(),
}).Compile();
}
var graphql = await graphqlFactory.CreateConnection(address);
var vars = new Dictionary<string, object>
{
{ nameof(owner), owner },
{ nameof(name), name },
{ nameof(after), after },
};
return await graphql.Run(readAssignableUsers, vars);
}
public IObservable<IPullRequestModel> CreatePullRequest(IModelService modelService,
LocalRepositoryModel sourceRepository, RepositoryModel targetRepository,
BranchModel sourceBranch, BranchModel targetBranch,
string title, string body
)
{
Extensions.Guard.ArgumentNotNull(modelService, nameof(modelService));
Extensions.Guard.ArgumentNotNull(sourceRepository, nameof(sourceRepository));
Extensions.Guard.ArgumentNotNull(targetRepository, nameof(targetRepository));
Extensions.Guard.ArgumentNotNull(sourceBranch, nameof(sourceBranch));
Extensions.Guard.ArgumentNotNull(targetBranch, nameof(targetBranch));
Extensions.Guard.ArgumentNotNull(title, nameof(title));
Extensions.Guard.ArgumentNotNull(body, nameof(body));
return PushAndCreatePR(modelService, sourceRepository, targetRepository, sourceBranch, targetBranch, title, body).ToObservable();
}
public IObservable<string> GetPullRequestTemplate(LocalRepositoryModel repository)
{
Extensions.Guard.ArgumentNotNull(repository, nameof(repository));
return Observable.Defer(() =>
{
var paths = TemplatePaths.Select(x => Path.Combine(repository.LocalPath, x));
foreach (var path in paths)
{
if (os.File.Exists(path))
{
try { return Observable.Return(os.File.ReadAllText(path, Encoding.UTF8)); } catch { }
}
}
return Observable.Empty<string>();
});
}
public IObservable<IReadOnlyList<CommitMessage>> GetMessagesForUniqueCommits(
LocalRepositoryModel repository,
string baseBranch,
string compareBranch,
int maxCommits)
{
return Observable.Defer(async () =>
{
// CommitMessage doesn't keep a reference to Repository
using (var repo = gitService.GetRepository(repository.LocalPath))
{
var messages = await gitClient.GetMessagesForUniqueCommits(repo, baseBranch, compareBranch, maxCommits);
return Observable.Return(messages);
}
});
}
public IObservable<int> CountSubmodulesToSync(LocalRepositoryModel repository)
{
using (var repo = gitService.GetRepository(repository.LocalPath))
{
var count = 0;
foreach (var submodule in repo.Submodules)
{
var status = submodule.RetrieveStatus();
if ((status & SubmoduleStatus.WorkDirAdded) != 0)
{
count++;
}
else if ((status & SubmoduleStatus.WorkDirDeleted) != 0)
{
count++;
}
else if ((status & SubmoduleStatus.WorkDirModified) != 0)
{
count++;
}
else if ((status & SubmoduleStatus.WorkDirUninitialized) != 0)
{
count++;
}
}
return Observable.Return(count);
}
}
public IObservable<bool> IsWorkingDirectoryClean(LocalRepositoryModel repository)
{
// The `using` appears to resolve this issue:
// https://github.com/github/VisualStudio/issues/1306
using (var repo = gitService.GetRepository(repository.LocalPath))
{
var statusOptions = new StatusOptions { ExcludeSubmodules = true };
var status = repo.RetrieveStatus(statusOptions);
var isClean = !IsCheckoutBlockingDirty(status);
return Observable.Return(isClean);
}
}
static bool IsCheckoutBlockingDirty(RepositoryStatus status)
{
if (status.IsDirty)
{
return status.Any(entry => IsCheckoutBlockingChange(entry));
}
return false;
}
// This is similar to IsDirty, but also allows NewInWorkdir and DeletedFromWorkdir files
static bool IsCheckoutBlockingChange(StatusEntry entry)
{
switch (entry.State)
{
case FileStatus.Ignored:
return false;
case FileStatus.Unaltered:
return false;
case FileStatus.NewInWorkdir:
return false;
case FileStatus.DeletedFromWorkdir:
return false;
default:
return true;
}
}
public IObservable<Unit> Pull(LocalRepositoryModel repository)
{
return Observable.Defer(async () =>
{
using (var repo = gitService.GetRepository(repository.LocalPath))
{
await gitClient.Pull(repo);
return Observable.Return(Unit.Default);
}
});
}
public IObservable<Unit> Push(LocalRepositoryModel repository)
{
return Observable.Defer(async () =>
{
using (var repo = gitService.GetRepository(repository.LocalPath))
{
var remoteName = repo.Head.RemoteName;
var remote = await gitClient.GetHttpRemote(repo, remoteName);
await gitClient.Push(repo, repo.Head.TrackedBranch.UpstreamBranchCanonicalName, remote.Name);
return Observable.Return(Unit.Default);
}
});
}
public async Task<bool> SyncSubmodules(LocalRepositoryModel repository, Action<string> progress)
{
var exitCode = await Where("git");
if (exitCode != 0)
{
progress(Resources.CouldntFindGitOnPath);
return false;
}
return await SyncSubmodules(repository.LocalPath, progress) == 0;
}
// LibGit2Sharp has limited submodule support so shelling out Git.exe for submodule commands.
async Task<int> SyncSubmodules(string workingDir, Action<string> progress)
{
var cmdArguments = "/C git submodule init & git submodule sync --recursive & git submodule update --recursive";
var startInfo = new ProcessStartInfo("cmd", cmdArguments)
{
WorkingDirectory = workingDir,
UseShellExecute = false,
CreateNoWindow = true,
RedirectStandardOutput = true,
RedirectStandardError = true
};
using (var process = Process.Start(startInfo))
{
await Task.WhenAll(
ReadLinesAsync(process.StandardOutput, progress),
ReadLinesAsync(process.StandardError, progress),
Task.Run(() => process.WaitForExit()));
return process.ExitCode;
}
}
static Task<int> Where(string fileName)
{
return Task.Run(() =>
{
var cmdArguments = "/C WHERE /Q " + fileName;
var startInfo = new ProcessStartInfo("cmd", cmdArguments)
{
UseShellExecute = false,
CreateNoWindow = true
};
using (var process = Process.Start(startInfo))
{
process.WaitForExit();
return process.ExitCode;
}
});
}
static async Task ReadLinesAsync(TextReader reader, Action<string> progress)
{
string line;
while ((line = await reader.ReadLineAsync()) != null)
{
progress(line);
}
}
public IObservable<Unit> Checkout(LocalRepositoryModel repository, PullRequestDetailModel pullRequest, string localBranchName)
{
return Observable.Defer(async () =>
{
using (var repo = gitService.GetRepository(repository.LocalPath))
{
var existing = repo.Branches[localBranchName];
if (existing != null)
{
await gitClient.Checkout(repo, localBranchName);
}
else if (string.Equals(repository.CloneUrl.Owner, pullRequest.HeadRepositoryOwner, StringComparison.OrdinalIgnoreCase))
{
var remote = await gitClient.GetHttpRemote(repo, "origin");
await gitClient.Fetch(repo, remote.Name);
await gitClient.Checkout(repo, localBranchName);
}
else
{
var refSpec = $"{pullRequest.HeadRefName}:{localBranchName}";
var remoteName = await CreateRemote(repo, repository.CloneUrl.WithOwner(pullRequest.HeadRepositoryOwner));
await gitClient.Fetch(repo, remoteName);
await gitClient.Fetch(repo, remoteName, new[] { refSpec });
await gitClient.Checkout(repo, localBranchName);
await gitClient.SetTrackingBranch(repo, localBranchName, $"refs/remotes/{remoteName}/{pullRequest.HeadRefName}");
}
// Store the PR number in the branch config with the key "ghfvs-pr".
var prConfigKey = $"branch.{localBranchName}.{SettingGHfVSPullRequest}";
await gitClient.SetConfig(repo, prConfigKey, BuildGHfVSConfigKeyValue(pullRequest.BaseRepositoryOwner, pullRequest.Number));
return Observable.Return(Unit.Default);
}
});
}
public IObservable<string> GetDefaultLocalBranchName(LocalRepositoryModel repository, int pullRequestNumber, string pullRequestTitle)
{
return Observable.Defer(() =>
{
var initial = "pr/" + pullRequestNumber + "-" + GetSafeBranchName(pullRequestTitle);
var current = initial;
using (var repo = gitService.GetRepository(repository.LocalPath))
{
var index = 2;
while (repo.Branches[current] != null)
{
current = initial + '-' + index++;
}
}
return Observable.Return(current.TrimEnd('-'));
});
}
public IObservable<BranchTrackingDetails> CalculateHistoryDivergence(LocalRepositoryModel repository, int pullRequestNumber)
{
return Observable.Defer(async () =>
{
// BranchTrackingDetails doesn't keep a reference to Repository
using (var repo = gitService.GetRepository(repository.LocalPath))
{
var remoteName = repo.Head.RemoteName;
if (remoteName != null)
{
var remote = await gitClient.GetHttpRemote(repo, remoteName);
await gitClient.Fetch(repo, remote.Name);
}
return Observable.Return(repo.Head.TrackingDetails);
}
});
}
public async Task<string> GetMergeBase(LocalRepositoryModel repository, PullRequestDetailModel pullRequest)
{
using (var repo = gitService.GetRepository(repository.LocalPath))
{
return await gitClient.GetPullRequestMergeBase(
repo,
repository.CloneUrl.WithOwner(pullRequest.BaseRepositoryOwner),
pullRequest.BaseRefSha,
pullRequest.HeadRefSha,
pullRequest.BaseRefName,
pullRequest.Number);
}
}
public IObservable<TreeChanges> GetTreeChanges(LocalRepositoryModel repository, PullRequestDetailModel pullRequest)
{
return Observable.Defer(async () =>
{
// TreeChanges doesn't keep a reference to Repository
using (var repo = gitService.GetRepository(repository.LocalPath))
{
var remote = await gitClient.GetHttpRemote(repo, "origin");
await gitClient.Fetch(repo, remote.Name);
var changes = await gitClient.Compare(repo, pullRequest.BaseRefSha, pullRequest.HeadRefSha, detectRenames: true);
return Observable.Return(changes);
}
});
}
public IObservable<BranchModel> GetLocalBranches(LocalRepositoryModel repository, PullRequestDetailModel pullRequest)
{
return Observable.Defer(() =>
{
// BranchModel doesn't keep a reference to rep
using (var repo = gitService.GetRepository(repository.LocalPath))
{
var result = GetLocalBranchesInternal(repository, repo, pullRequest).Select(x => new BranchModel(x, repository));
return result.ToList().ToObservable();
}
});
}
public IObservable<bool> EnsureLocalBranchesAreMarkedAsPullRequests(LocalRepositoryModel repository, PullRequestDetailModel pullRequest)
{
return Observable.Defer(async () =>
{
using (var repo = gitService.GetRepository(repository.LocalPath))
{
var branches = GetLocalBranchesInternal(repository, repo, pullRequest).Select(x => new BranchModel(x, repository));
var result = false;
foreach (var branch in branches)
{
if (!await IsBranchMarkedAsPullRequest(repo, branch.Name, pullRequest))
{
await MarkBranchAsPullRequest(repo, branch.Name, pullRequest.BaseRepositoryOwner, pullRequest.Number);
result = true;
}
}
return Observable.Return(result);
}
});
}
public bool IsPullRequestFromRepository(LocalRepositoryModel repository, PullRequestDetailModel pullRequest)
{
return string.Equals(repository.CloneUrl?.Owner, pullRequest.HeadRepositoryOwner, StringComparison.OrdinalIgnoreCase);
}
public IObservable<Unit> SwitchToBranch(LocalRepositoryModel repository, PullRequestDetailModel pullRequest)
{
return Observable.Defer(async () =>
{
using (var repo = gitService.GetRepository(repository.LocalPath))
{
var branchName = GetLocalBranchesInternal(repository, repo, pullRequest).FirstOrDefault();
Log.Assert(branchName != null, "PullRequestService.SwitchToBranch called but no local branch found");
if (branchName != null)
{
var remote = await gitClient.GetHttpRemote(repo, "origin");
await gitClient.Fetch(repo, remote.Name);
var branch = repo.Branches[branchName];
if (branch == null)
{
var trackedBranchName = $"refs/remotes/{remote.Name}/" + branchName;
var trackedBranch = repo.Branches[trackedBranchName];
if (trackedBranch != null)
{
branch = repo.CreateBranch(branchName, trackedBranch.Tip);
await gitClient.SetTrackingBranch(repo, branchName, trackedBranchName);
}
else
{
throw new InvalidOperationException($"Could not find branch '{trackedBranchName}'.");
}
}
await gitClient.Checkout(repo, branchName);
await MarkBranchAsPullRequest(repo, branchName, pullRequest.BaseRepositoryOwner, pullRequest.Number);
}
}
return Observable.Return(Unit.Default);
});
}
public IObservable<(string owner, int number)> GetPullRequestForCurrentBranch(LocalRepositoryModel repository)
{
return Observable.Defer(async () =>
{
using (var repo = gitService.GetRepository(repository.LocalPath))
{
var configKey = string.Format(
CultureInfo.InvariantCulture,
"branch.{0}.{1}",
repo.Head.FriendlyName,
SettingGHfVSPullRequest);
var value = await gitClient.GetConfig<string>(repo, configKey);
var pr = ParseGHfVSConfigKeyValue(value);
if (pr != default((string, int)))
{
return Observable.Return(pr);
}
pr = await FindPullRequestForBranchAsync(repo, repo.Head, "origin");
return Observable.Return(pr);
}
});
}
async Task<(string owner, int number)> FindPullRequestForBranchAsync(
IRepository repo, Branch branch, string upstreamRemoteName = "origin")
{
if (!branch.IsTracking)
{
return default((string, int));
}
var remoteReferences = await gitClient.ListReferences(repo, branch.RemoteName);
if (!remoteReferences.TryGetValue(branch.UpstreamBranchCanonicalName, out var sha))
{
return default((string, int));
}
if (branch.RemoteName != upstreamRemoteName)
{
remoteReferences = await gitClient.ListReferences(repo, upstreamRemoteName);
}
var prs = remoteReferences
.Where(kv => kv.Value == sha)
.Select(kv => FindPullRequestForCanonicalName(kv.Key))
.Where(p => p != -1)
.ToList();
if (prs.Count == 0)
{
return default((string, int));
}
var owner = gitService.GetRemoteUri(repo, upstreamRemoteName).Owner;
var number = prs[0];
return (owner, number);
}
static int FindPullRequestForCanonicalName(string canonicalName)
{
var match = Regex.Match(canonicalName, "^refs/pull/([0-9]+)/head$");
if (match.Success && int.TryParse(match.Groups[1].Value, out var number))
{
return number;
}
return -1;
}
public async Task<string> ExtractToTempFile(
LocalRepositoryModel repository,
PullRequestDetailModel pullRequest,
string relativePath,
string commitSha,
Encoding encoding)
{
var tempFilePath = CalculateTempFileName(relativePath, commitSha, encoding);
if (!File.Exists(tempFilePath))
{
using (var repo = gitService.GetRepository(repository.LocalPath))
{
var remote = await gitClient.GetHttpRemote(repo, "origin");
await ExtractToTempFile(repo, pullRequest.Number, commitSha, relativePath, encoding, tempFilePath);
}
}
lock (this.tempFileMappings)
{
string gitRelativePath = relativePath.TrimStart('/').Replace('\\', '/');
this.tempFileMappings[CanonicalizeLocalFilePath(tempFilePath)] = (commitSha, gitRelativePath);
}
return tempFilePath;
}
public Encoding GetEncoding(LocalRepositoryModel repository, string relativePath)
{
var fullPath = Path.Combine(repository.LocalPath, relativePath);
if (File.Exists(fullPath))
{
var encoding = Encoding.UTF8;
if (HasPreamble(fullPath, encoding))
{
return encoding;
}
}
return null;
}
static bool HasPreamble(string file, Encoding encoding)
{
using (var stream = File.OpenRead(file))
{
foreach (var b in encoding.GetPreamble())
{
if (b != stream.ReadByte())
{
return false;
}
}
}
return true;
}
public IObservable<Unit> RemoveUnusedRemotes(LocalRepositoryModel repository)
{
return Observable.Defer(async () =>
{
using (var repo = gitService.GetRepository(repository.LocalPath))
{
var usedRemotes = new HashSet<string>(
repo.Branches
.Where(x => !x.IsRemote && x.RemoteName != null)
.Select(x => x.RemoteName));
foreach (var remote in repo.Network.Remotes)
{
var key = $"remote.{remote.Name}.{SettingCreatedByGHfVS}";
var createdByUs = await gitClient.GetConfig<bool>(repo, key);
if (createdByUs && !usedRemotes.Contains(remote.Name))
{
repo.Network.Remotes.Remove(remote.Name);
}
}
return Observable.Return(Unit.Default);
}
});
}
/// <inheritdoc />
public bool ConfirmCancelPendingReview()
{
return MessageBox.Show(
Resources.CancelPendingReviewConfirmation,
Resources.CancelPendingReviewConfirmationCaption,
MessageBoxButtons.YesNo,
MessageBoxIcon.Question) == DialogResult.Yes;
}
/// <inheritdoc />
public Task<string> GetObjectishFromLocalPathAsync(string localPath, CancellationToken cancellationToken)
{
lock (this.tempFileMappings)
{
var canonicalizedPath = CanonicalizeLocalFilePath(localPath);
if (this.tempFileMappings.TryGetValue(canonicalizedPath, out (string commitId, string repoPath) result))
{
return Task.FromResult($"{result.commitId}:{result.repoPath}");
}
}
return Task.FromResult<string>(null);
}
/// <inheritdoc />
public Task<string> GetLocalPathFromObjectishAsync(string objectish, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
async Task<string> CreateRemote(IRepository repo, UriString cloneUri)
{
foreach (var remote in repo.Network.Remotes)
{
if (UriString.RepositoryUrlsAreEqual(new UriString(remote.Url), cloneUri))
{
return remote.Name;
}
}
var remoteName = CreateUniqueRemoteName(repo, cloneUri.Owner);
await gitClient.SetRemote(repo, remoteName, new Uri(cloneUri));
await gitClient.SetConfig(repo, $"remote.{remoteName}.{SettingCreatedByGHfVS}", "true");
return remoteName;
}
string CreateUniqueRemoteName(IRepository repo, string name)
{
var uniqueName = name;
var number = 1;
while (repo.Network.Remotes[uniqueName] != null)
{
uniqueName = name + number++;
}
return uniqueName;
}
async Task ExtractToTempFile(
IRepository repo,
int pullRequestNumber,
string commitSha,
string relativePath,
Encoding encoding,
string tempFilePath)
{
string contents;
try
{
contents = await gitClient.ExtractFile(repo, commitSha, relativePath) ?? string.Empty;
}
catch (FileNotFoundException)
{
var pullHeadRef = $"refs/pull/{pullRequestNumber}/head";
var remote = await gitClient.GetHttpRemote(repo, "origin");
await gitClient.Fetch(repo, remote.Name, commitSha, pullHeadRef);
contents = await gitClient.ExtractFile(repo, commitSha, relativePath) ?? string.Empty;
}
Directory.CreateDirectory(Path.GetDirectoryName(tempFilePath));
if (encoding != null)
{
File.WriteAllText(tempFilePath, contents, encoding);
}
else
{
File.WriteAllText(tempFilePath, contents);
}
}
IEnumerable<string> GetLocalBranchesInternal(
LocalRepositoryModel localRepository,
IRepository repository,
PullRequestDetailModel pullRequest)
{
if (IsPullRequestFromRepository(localRepository, pullRequest))
{
return new[] { pullRequest.HeadRefName };
}
else
{
var key = BuildGHfVSConfigKeyValue(pullRequest.BaseRepositoryOwner, pullRequest.Number);
return repository.Config
.Select(x => new { Branch = BranchCapture.Match(x.Key).Groups["branch"].Value, Value = x.Value })
.Where(x => !string.IsNullOrWhiteSpace(x.Branch) && x.Value == key)
.Select(x => x.Branch);
}
}
async Task<bool> IsBranchMarkedAsPullRequest(IRepository repo, string branchName, PullRequestDetailModel pullRequest)