-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathCodeScanConfigService.cs
More file actions
270 lines (239 loc) · 8.67 KB
/
CodeScanConfigService.cs
File metadata and controls
270 lines (239 loc) · 8.67 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
using System;
using System.Collections.Generic;
using System.Data;
using System.IO;
using System.IO.Compression;
using System.Net.Http;
using System.Reflection;
using System.Text.Json;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
using Pidgin;
using Serilog;
using UnitystationLauncher.Constants;
using UnitystationLauncher.ContentScanning;
using UnitystationLauncher.Exceptions;
using UnitystationLauncher.Models.ConfigFile;
using UnitystationLauncher.Models.ContentScanning;
using UnitystationLauncher.Models.Enums;
using UnitystationLauncher.Services.Interface;
namespace UnitystationLauncher.Services;
public class CodeScanConfigService : ICodeScanConfigService
{
private static string _nameConfig = @"CodeScanList.json";
private readonly HttpClient _httpClient;
private readonly IPreferencesService _preferencesService;
private readonly IEnvironmentService _environmentService;
public CodeScanConfigService(HttpClient httpClient, IPreferencesService preferencesService, IEnvironmentService environmentService)
{
_httpClient = httpClient;
_preferencesService = preferencesService;
_environmentService = environmentService;
}
#region Public Interface
public async Task<(string, bool)> GetGoodFileVersionAsync(string version)
{
if (await ValidGoodFilesVersionAsync(version) == false)
{
return ("", false);
}
string pathBase = _preferencesService.GetPreferences().InstallationPath;
string folderName = GetFolderName(version, _environmentService);
string versionPath = Path.Combine(pathBase, "nonbuild", version, folderName);
if (Directory.Exists(versionPath) == false)
{
string zipExtractPath = Path.Combine(pathBase, "nonbuild", version);
HttpResponseMessage request = await _httpClient.GetAsync($"{ApiUrls.GoodFilesBaseUrl}/{version}/{folderName}.zip", HttpCompletionOption.ResponseHeadersRead);
await using Stream responseStream = await request.Content.ReadAsStreamAsync();
ZipArchive archive = new(responseStream);
archive.ExtractToDirectory(zipExtractPath, true);
string zipDirectory = Path.Combine(zipExtractPath, GetZipFolderName());
Directory.Move(zipDirectory, versionPath);
}
return (versionPath, true);
}
public async Task<bool> ValidGoodFilesVersionAsync(string goodFileVersion)
{
string jsonData = "";
try
{
HttpResponseMessage response = await _httpClient.GetAsync(ApiUrls.AllowedGoodFilesUrl);
if (!response.IsSuccessStatusCode)
{
Log.Error("Unable to download config" + response);
return false;
}
jsonData = await response.Content.ReadAsStringAsync();
}
catch (Exception e)
{
Log.Error("Unable to download ValidGoodFilesVersionAsync config" + e);
return false;
}
HashSet<string>? allowedList = JsonSerializer.Deserialize<HashSet<string>>(jsonData, options: new()
{
IgnoreReadOnlyProperties = true,
PropertyNameCaseInsensitive = true
});
if (allowedList == null)
{
return false;
}
return allowedList.Contains(goodFileVersion);
}
public async Task<SandboxConfig> LoadConfigAsync()
{
string configPath = Path.Combine(_environmentService.GetUserdataDirectory(), _nameConfig);
try
{
HttpResponseMessage response = await _httpClient.GetAsync(ApiUrls.CodeScanListUrl);
if (response.IsSuccessStatusCode)
{
string jsonData = await response.Content.ReadAsStringAsync();
File.Delete(configPath);
await File.WriteAllTextAsync(configPath, jsonData);
Log.Information("JSON file saved successfully.");
}
else
{
Log.Error("Unable to download config" + response);
}
}
catch (Exception e)
{
Log.Error("Unable to download config" + e);
}
if (File.Exists(configPath) == false)
{
Assembly assembly = Assembly.GetExecutingAssembly();
string resourceName = "UnitystationLauncher.CodeScanList.json";
await using (Stream? stream = assembly.GetManifestResourceStream(resourceName))
{
if (stream != null)
{
// Copy the contents of the resource to a file location
await using FileStream fileStream = File.Create(configPath);
stream.Seek(0L, SeekOrigin.Begin);
await stream.CopyToAsync(fileStream);
}
}
Log.Error("had to use backup config");
}
using StreamReader file = File.OpenText(configPath);
try
{
SandboxConfig? data = JsonSerializer.Deserialize<SandboxConfig>(await file.ReadToEndAsync(), new JsonSerializerOptions
{
AllowTrailingCommas = true,
Converters =
{
new JsonStringEnumConverter(allowIntegerValues: false)
}
});
if (data == null)
{
Log.Error("unable to de-serialise config");
throw new DataException("unable to de-serialise config");
}
foreach (KeyValuePair<string, Dictionary<string, TypeConfig>> @namespace in data.Types)
{
foreach (KeyValuePair<string, TypeConfig> @class in @namespace.Value)
{
ParseTypeConfig(@class.Value);
}
}
return data;
}
catch (Exception e)
{
Log.Error(e, e.Message);
throw;
}
}
#endregion
#region Private Helpers
private string GetZipFolderName()
{
CurrentEnvironment os = _environmentService.GetCurrentEnvironment();
switch (os)
{
case CurrentEnvironment.WindowsStandalone:
return "StandaloneWindows64";
case CurrentEnvironment.LinuxFlatpak:
case CurrentEnvironment.LinuxStandalone:
return "StandaloneLinux64";
case CurrentEnvironment.MacOsStandalone:
return "StandaloneOSX";
default:
throw new UnsupportedPlatformException($"Unable to determine OS Version {os}");
}
}
public static string GetFolderName(string version, IEnvironmentService environmentService)
{
CurrentEnvironment os = environmentService.GetCurrentEnvironment();
switch (os)
{
case CurrentEnvironment.WindowsStandalone:
return version + "_Windows";
case CurrentEnvironment.LinuxFlatpak:
case CurrentEnvironment.LinuxStandalone:
return version + "_Linux";
case CurrentEnvironment.MacOsStandalone:
return version + "_Mac";
default:
throw new UnsupportedPlatformException($"Unable to determine OS Version {os}");
}
}
private static void ParseTypeConfig(TypeConfig cfg)
{
if (cfg.Methods != null)
{
List<WhitelistMethodDefine> list = new();
foreach (string m in cfg.Methods)
{
try
{
list.Add(Parsers.MethodParser.ParseOrThrow(m));
}
catch (ParseException e)
{
Log.Error($"Parse exception for '{m}': {e}");
}
}
cfg.MethodsParsed = list.ToArray();
}
else
{
cfg.MethodsParsed = Array.Empty<WhitelistMethodDefine>();
}
if (cfg.Fields != null)
{
List<WhitelistFieldDefine> list = new();
foreach (string f in cfg.Fields)
{
try
{
list.Add(Parsers.FieldParser.ParseOrThrow(f));
}
catch (ParseException e)
{
Log.Error($"Parse exception for '{f}': {e}");
throw;
}
}
cfg.FieldsParsed = list.ToArray();
}
else
{
cfg.FieldsParsed = Array.Empty<WhitelistFieldDefine>();
}
if (cfg.NestedTypes != null)
{
foreach (TypeConfig nested in cfg.NestedTypes.Values)
{
ParseTypeConfig(nested);
}
}
}
#endregion
}