forked from sourcegit-scm/sourcegit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddToIgnore.cs
More file actions
69 lines (60 loc) · 2 KB
/
Copy pathAddToIgnore.cs
File metadata and controls
69 lines (60 loc) · 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
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.IO;
using System.Threading.Tasks;
namespace SourceGit.ViewModels
{
public class AddToIgnore : Popup
{
public List<Models.GitIgnoreFile> StorageFiles
{
get;
}
[Required(ErrorMessage = "Ignore pattern is required!")]
public string Pattern
{
get => _pattern;
set => SetProperty(ref _pattern, value, true);
}
[Required(ErrorMessage = "Storage file is required!!!")]
public Models.GitIgnoreFile SelectedStorageFile
{
get => _selectedStorageFile;
set
{
if (SetProperty(ref _selectedStorageFile, value, true))
Pattern = value.Pattern;
}
}
public AddToIgnore(Repository repo, string pattern)
{
_repo = repo;
_pattern = pattern;
StorageFiles = Models.GitIgnoreFile.GetSupported(repo.FullPath, repo.GitDir, pattern);
SelectedStorageFile = StorageFiles[0];
}
public override async Task<bool> Sure()
{
using var lockWatcher = _repo.LockWatcher();
ProgressDescription = "Adding Ignored File(s) ...";
var file = _selectedStorageFile.FullPath;
if (!File.Exists(file))
{
await File.WriteAllLinesAsync(file!, [_pattern]);
}
else
{
var org = await File.ReadAllTextAsync(file);
if (!org.EndsWith('\n'))
await File.AppendAllLinesAsync(file, ["", _pattern]);
else
await File.AppendAllLinesAsync(file, [_pattern]);
}
_repo.MarkWorkingCopyDirtyManually();
return true;
}
private readonly Repository _repo;
private string _pattern;
private Models.GitIgnoreFile _selectedStorageFile;
}
}