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
56 lines (49 loc) · 1.58 KB
/
AddToIgnore.cs
File metadata and controls
56 lines (49 loc) · 1.58 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
using System.ComponentModel.DataAnnotations;
using System.IO;
using System.Threading.Tasks;
namespace SourceGit.ViewModels
{
public class AddToIgnore : Popup
{
[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 StorageFile
{
get;
set;
}
public AddToIgnore(Repository repo, string pattern)
{
_repo = repo;
_pattern = pattern;
StorageFile = Models.GitIgnoreFile.Supported[0];
}
public override async Task<bool> Sure()
{
using var lockWatcher = _repo.LockWatcher();
ProgressDescription = "Adding Ignored File(s) ...";
var file = StorageFile.GetFullPath(_repo.FullPath, _repo.GitDir);
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;
}
}