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
Expand file tree
/
Copy pathRepositoryCloneViewModel.cs
More file actions
271 lines (227 loc) · 9.17 KB
/
RepositoryCloneViewModel.cs
File metadata and controls
271 lines (227 loc) · 9.17 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
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.Globalization;
using System.Linq;
using System.Reactive;
using System.Reactive.Linq;
using System.Threading.Tasks;
using GitHub.Extensions;
using GitHub.Logging;
using GitHub.Models;
using GitHub.Primitives;
using GitHub.Services;
using ReactiveUI;
using Rothko;
using Serilog;
namespace GitHub.ViewModels.Dialog.Clone
{
[Export(typeof(IRepositoryCloneViewModel))]
[PartCreationPolicy(CreationPolicy.NonShared)]
public class RepositoryCloneViewModel : ViewModelBase, IRepositoryCloneViewModel
{
readonly IOperatingSystem os;
readonly IConnectionManager connectionManager;
readonly IRepositoryCloneService service;
readonly IGitService gitService;
readonly IUsageTracker usageTracker;
readonly IReadOnlyList<IRepositoryCloneTabViewModel> tabs;
string path;
UriString url;
RepositoryModel previousRepository;
ObservableAsPropertyHelper<string> pathWarning;
int selectedTabIndex;
[ImportingConstructor]
public RepositoryCloneViewModel(
IOperatingSystem os,
IConnectionManager connectionManager,
IRepositoryCloneService service,
IGitService gitService,
IUsageTracker usageTracker,
IRepositorySelectViewModel gitHubTab,
IRepositorySelectViewModel enterpriseTab)
{
this.os = os;
this.connectionManager = connectionManager;
this.service = service;
this.gitService = gitService;
this.usageTracker = usageTracker;
GitHubTab = gitHubTab;
EnterpriseTab = enterpriseTab;
tabs = new IRepositoryCloneTabViewModel[] { GitHubTab, EnterpriseTab };
var repository = this.WhenAnyValue(x => x.SelectedTabIndex)
.SelectMany(x => tabs[x].WhenAnyValue(tab => tab.Repository));
Path = service.DefaultClonePath;
repository.Subscribe(x => UpdatePath(x));
pathWarning = Observable.CombineLatest(
repository,
this.WhenAnyValue(x => x.Path),
ValidatePathWarning)
.ToProperty(this, x => x.PathWarning);
var canClone = Observable.CombineLatest(
repository, this.WhenAnyValue(x => x.Path),
(repo, path) => repo != null && !service.DestinationFileExists(path) &&
(!service.DestinationDirectoryExists(path) || service.DestinationDirectoryEmpty(path)));
var canOpen = Observable.CombineLatest(
repository, this.WhenAnyValue(x => x.Path),
(repo, path) => repo != null && !service.DestinationFileExists(path) && service.DestinationDirectoryExists(path)
&& !service.DestinationDirectoryEmpty(path));
Browse = ReactiveCommand.Create(() => BrowseForDirectory());
Clone = ReactiveCommand.CreateFromObservable(
() => repository.Select(x => new CloneDialogResult(Path, x?.CloneUrl)),
canClone);
Open = ReactiveCommand.CreateFromObservable(
() => repository.Select(x => new CloneDialogResult(Path, x?.CloneUrl)),
canOpen);
}
public IRepositorySelectViewModel GitHubTab { get; }
public IRepositorySelectViewModel EnterpriseTab { get; }
public string Path
{
get => path;
set => this.RaiseAndSetIfChanged(ref path, value);
}
public UriString Url
{
get => url;
set => this.RaiseAndSetIfChanged(ref url, value);
}
public string PathWarning => pathWarning.Value;
public int SelectedTabIndex
{
get => selectedTabIndex;
set => this.RaiseAndSetIfChanged(ref selectedTabIndex, value);
}
public string Title => Resources.OpenFromGitHubTitle;
public IObservable<object> Done => Observable.Merge(Clone, Open);
public ReactiveCommand<Unit, Unit> Browse { get; }
public ReactiveCommand<Unit, CloneDialogResult> Clone { get; }
public ReactiveCommand<Unit, CloneDialogResult> Open { get; }
public async Task InitializeAsync(IConnection connection)
{
var connections = await connectionManager.GetLoadedConnections().ConfigureAwait(false);
var gitHubConnection = connections.FirstOrDefault(x => x.HostAddress.IsGitHubDotCom());
var enterpriseConnection = connections.FirstOrDefault(x => !x.HostAddress.IsGitHubDotCom());
if (gitHubConnection?.IsLoggedIn == true)
{
GitHubTab.Initialize(gitHubConnection);
}
if (enterpriseConnection?.IsLoggedIn == true)
{
EnterpriseTab.Initialize(enterpriseConnection);
}
if (connection == enterpriseConnection)
{
SelectedTabIndex = 1;
}
if (Url?.Host is string host && HostAddress.Create(host) is HostAddress hostAddress)
{
if (hostAddress == gitHubConnection?.HostAddress)
{
GitHubTab.Filter = Url;
SelectedTabIndex = 0;
}
else if (hostAddress == enterpriseConnection?.HostAddress)
{
EnterpriseTab.Filter = Url;
SelectedTabIndex = 1;
}
}
this.WhenAnyValue(x => x.SelectedTabIndex).Subscribe(x => tabs[x].Activate().Forget());
}
void BrowseForDirectory()
{
var result = os.Dialog.BrowseForDirectory(Path, Resources.BrowseForDirectory);
if (result != BrowseDirectoryResult.Failed)
{
var path = result.DirectoryPath;
var selected = tabs[SelectedTabIndex].Repository;
if (selected != null)
{
path = System.IO.Path.Combine(path, selected.Name);
}
Path = path;
}
}
void UpdatePath(RepositoryModel repository)
{
if (repository != null)
{
var basePath = GetUpdatedBasePath(Path);
previousRepository = repository;
Path = System.IO.Path.Combine(basePath, repository.Owner, repository.Name);
}
}
string GetUpdatedBasePath(string path)
{
if (string.IsNullOrEmpty(path))
{
return service.DefaultClonePath;
}
if (previousRepository == null)
{
return path;
}
if (FindDirWithout(path, previousRepository?.Owner, 2) is string dirWithoutOwner)
{
return dirWithoutOwner;
}
if (FindDirWithout(path, previousRepository?.Name, 1) is string dirWithoutRepo)
{
return dirWithoutRepo;
}
return path;
string FindDirWithout(string dir, string match, int levels)
{
string dirWithout = null;
for (var i = 0; i < 2; i++)
{
if (string.IsNullOrEmpty(dir))
{
break;
}
var name = System.IO.Path.GetFileName(dir);
dir = System.IO.Path.GetDirectoryName(dir);
if (name == match)
{
dirWithout = dir;
}
}
return dirWithout;
}
}
string ValidatePathWarning(RepositoryModel repositoryModel, string path)
{
if (repositoryModel != null)
{
if (service.DestinationFileExists(path))
{
return Resources.DestinationAlreadyExists;
}
if (service.DestinationDirectoryExists(path) && !service.DestinationDirectoryEmpty(path))
{
using (var repository = gitService.GetRepository(path))
{
if (repository == null)
{
return Resources.DirectoryAtDestinationNotEmpty;
}
var localUrl = gitService.GetRemoteUri(repository)?.ToRepositoryUrl();
if (localUrl == null)
{
return Resources.LocalRepositoryDoesntHaveARemoteOrigin;
}
var targetUrl = repositoryModel.CloneUrl?.ToRepositoryUrl();
if (localUrl != targetUrl)
{
return string.Format(CultureInfo.CurrentCulture, Resources.LocalRepositoryHasARemoteOf,
localUrl);
}
return Resources.YouHaveAlreadyClonedToThisLocation;
}
}
}
return null;
}
}
}