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
|
using PKISharp.WACS.Clients.IIS;
using PKISharp.WACS.DomainObjects;
using System;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
namespace PKISharp.WACS.Plugins.ValidationPlugins.Http
{
internal class FileSystem : HttpValidation<FileSystemOptions, FileSystem>
{
protected IIISClient _iisClient;
public FileSystem(FileSystemOptions options, IIISClient iisClient, RunLevel runLevel, HttpValidationParameters pars) : base(options, runLevel, pars) => _iisClient = iisClient;
protected override Task DeleteFile(string path)
{
var fi = new FileInfo(path);
if (fi.Exists)
{
_log.Verbose("Deleting file {path}", path);
fi.Delete();
}
else
{
_log.Warning("File {path} already deleted", path);
}
return Task.CompletedTask;
}
protected override Task DeleteFolder(string path)
{
var di = new DirectoryInfo(path);
if (di.Exists)
{
_log.Verbose("Deleting folder {path}", path);
di.Delete();
}
else
{
_log.Warning("Folder {path} already deleted", path);
}
return Task.CompletedTask;
}
protected override Task<bool> IsEmpty(string path)
{
var x = new DirectoryInfo(path);
return Task.FromResult(x.Exists && !x.EnumerateFileSystemInfos().Any());
}
protected override async Task WriteFile(string path, string content)
{
var fi = new FileInfo(path);
if (!fi.Directory.Exists)
{
fi.Directory.Create();
}
_log.Verbose("Writing file to {path}", path);
await File.WriteAllTextAsync(path, content);
}
/// <summary>
/// Update webroot
/// </summary>
/// <param name="scheduled"></param>
protected override void Refresh(TargetPart targetPart)
{
if (string.IsNullOrEmpty(_options.Path))
{
// Update web root path
var siteId = _options.SiteId ?? targetPart.SiteId;
if (siteId > 0)
{
_path = _iisClient.GetWebSite(siteId.Value).Path;
}
else
{
throw new Exception("No path specified");
}
}
else
{
_path = _options.Path;
}
}
}
}
|