forked from sourcegit-scm/sourcegit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFetch.cs
More file actions
110 lines (95 loc) · 3.24 KB
/
Fetch.cs
File metadata and controls
110 lines (95 loc) · 3.24 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
using System.Collections.Generic;
using System.Threading.Tasks;
namespace SourceGit.ViewModels
{
public class Fetch : Popup
{
public List<Models.Remote> Remotes
{
get => _repo.Remotes;
}
public bool IsFetchAllRemoteVisible
{
get;
}
public bool FetchAllRemotes
{
get => _fetchAllRemotes;
set
{
if (SetProperty(ref _fetchAllRemotes, value) && IsFetchAllRemoteVisible)
_repo.UIStates.FetchAllRemotes = value;
}
}
public Models.Remote SelectedRemote
{
get;
set;
}
public bool NoTags
{
get => _repo.UIStates.FetchWithoutTags;
set => _repo.UIStates.FetchWithoutTags = value;
}
public bool Force
{
get => _repo.UIStates.EnableForceOnFetch;
set => _repo.UIStates.EnableForceOnFetch = value;
}
public Fetch(Repository repo, Models.Remote preferredRemote = null)
{
_repo = repo;
IsFetchAllRemoteVisible = repo.Remotes.Count > 1 && preferredRemote == null;
_fetchAllRemotes = IsFetchAllRemoteVisible && _repo.UIStates.FetchAllRemotes;
if (preferredRemote != null)
{
SelectedRemote = preferredRemote;
}
else if (!string.IsNullOrEmpty(_repo.Settings.DefaultRemote))
{
var def = _repo.Remotes.Find(r => r.Name == _repo.Settings.DefaultRemote);
SelectedRemote = def ?? _repo.Remotes[0];
}
else
{
SelectedRemote = _repo.Remotes[0];
}
}
public override async Task<bool> Sure()
{
using var lockWatcher = _repo.LockWatcher();
var navigateToUpstreamHEAD = _repo.SelectedView is Histories { SelectedCommit: { IsCurrentHead: true } };
var notags = _repo.UIStates.FetchWithoutTags;
var force = _repo.UIStates.EnableForceOnFetch;
var log = _repo.CreateLog("Fetch");
Use(log);
if (FetchAllRemotes)
{
foreach (var remote in _repo.Remotes)
await new Commands.Fetch(_repo.FullPath, remote.Name, notags, force)
.Use(log)
.RunAsync();
}
else
{
await new Commands.Fetch(_repo.FullPath, SelectedRemote.Name, notags, force)
.Use(log)
.RunAsync();
}
log.Complete();
if (navigateToUpstreamHEAD)
{
var upstream = _repo.CurrentBranch?.Upstream;
if (!string.IsNullOrEmpty(upstream))
{
var upstreamHead = await new Commands.QueryRevisionByRefName(_repo.FullPath, upstream.Substring(13)).GetResultAsync();
_repo.NavigateToCommit(upstreamHead, true);
}
}
_repo.MarkFetched();
return true;
}
private readonly Repository _repo = null;
private bool _fetchAllRemotes = false;
}
}