This repository was archived by the owner on Dec 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 223
/
Copy pathMainService.Plugins.cs
296 lines (278 loc) · 12.4 KB
/
MainService.Plugins.cs
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
// Copyright (C) 2016-2022 The Neo Project.
// The neo-cli is free software distributed under the MIT software
// license, see the accompanying file LICENSE in the main directory of
// the project or http://www.opensource.org/licenses/mit-license.php
// for more details.
//
// Redistribution and use in source and binary forms with or without
// modifications are permitted.
using Microsoft.Extensions.Configuration;
using Neo.ConsoleService;
using Neo.Json;
using Neo.Plugins;
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Security.Cryptography;
using System.Threading.Tasks;
namespace Neo.CLI
{
partial class MainService
{
/// <summary>
/// Process "install" command
/// </summary>
/// <param name="pluginName">Plugin name</param>
[ConsoleCommand("install", Category = "Plugin Commands")]
private async Task OnInstallCommandAsync(string pluginName)
{
if (PluginExists(pluginName))
{
ConsoleHelper.Warning("Plugin already exist.");
return;
}
await InstallPluginAsync(pluginName);
ConsoleHelper.Warning("Install successful, please restart neo-cli.");
}
/// <summary>
/// Force to install a plugin again. This will overwrite
/// existing plugin files, in case of any file missing or
/// damage to the old version.
/// </summary>
/// <param name="pluginName">name of the plugin</param>
[ConsoleCommand("reinstall", Category = "Plugin Commands", Description = "Overwrite existing plugin by force.")]
private async Task OnReinstallCommand(string pluginName)
{
await InstallPluginAsync(pluginName, overWrite: true);
ConsoleHelper.Warning("Reinstall successful, please restart neo-cli.");
}
/// <summary>
/// Download plugin from github release
/// The function of download and install are divided
/// for the consideration of `update` command that
/// might be added in the future.
/// </summary>
/// <param name="pluginName">name of the plugin</param>
/// <returns>Downloaded content</returns>
private async Task<MemoryStream> DownloadPluginAsync(string pluginName)
{
var url =
$"https://github.com/neo-project/neo-modules/releases/download/v{typeof(Plugin).Assembly.GetVersion()}/{pluginName}.zip";
using HttpClient http = new();
HttpResponseMessage response = await http.GetAsync(url);
if (response.StatusCode == HttpStatusCode.NotFound)
{
response.Dispose();
Version versionCore = typeof(Plugin).Assembly.GetName().Version;
HttpRequestMessage request = new(HttpMethod.Get,
"https://api.github.com/repos/neo-project/neo-modules/releases");
request.Headers.UserAgent.ParseAdd(
$"{GetType().Assembly.GetName().Name}/{GetType().Assembly.GetVersion()}");
using HttpResponseMessage responseApi = await http.SendAsync(request);
byte[] buffer = await responseApi.Content.ReadAsByteArrayAsync();
var releases = JObject.Parse(buffer);
var asset = ((JArray)releases)
.Where(p => !p["tag_name"].GetString().Contains('-'))
.Select(p => new
{
Version = Version.Parse(p["tag_name"].GetString().TrimStart('v')),
Assets = (JArray)p["assets"]
})
.OrderByDescending(p => p.Version)
.First(p => p.Version <= versionCore).Assets
.FirstOrDefault(p => p["name"].GetString() == $"{pluginName}.zip");
if (asset is null) throw new Exception("Plugin doesn't exist.");
response = await http.GetAsync(asset["browser_download_url"].GetString());
}
using (response)
{
var totalRead = 0L;
byte[] buffer = new byte[1024];
int read;
await using Stream stream = await response.Content.ReadAsStreamAsync();
ConsoleHelper.Info("From ", $"{url}");
var output = new MemoryStream();
while ((read = await stream.ReadAsync(buffer)) > 0)
{
output.Write(buffer, 0, read);
totalRead += read;
Console.Write(
$"\rDownloading {pluginName}.zip {totalRead / 1024}KB/{response.Content.Headers.ContentLength / 1024}KB {(totalRead * 100) / response.Content.Headers.ContentLength}%");
}
Console.WriteLine();
return output;
}
}
/// <summary>
/// Install plugin from stream
/// </summary>
/// <param name="pluginName">name of the plugin</param>
/// <param name="installed">installed dependency</param>
/// <param name="overWrite">Install by force for `update`</param>
/// <param name="saveConfig">Need to save the config file to the mode</param>
private async Task InstallPluginAsync(string pluginName, HashSet<string> installed = null,
bool overWrite = false, bool saveConfig = true)
{
installed ??= new HashSet<string>();
if (!installed.Add(pluginName)) return;
if (!overWrite && PluginExists(pluginName)) return;
await using MemoryStream stream = await DownloadPluginAsync(pluginName);
using (SHA256 sha256 = SHA256.Create())
{
ConsoleHelper.Info("SHA256: ", $"{sha256.ComputeHash(stream.ToArray()).ToHexString()}");
}
using ZipArchive zip = new(stream, ZipArchiveMode.Read);
ZipArchiveEntry entry = zip.Entries.FirstOrDefault(p => p.Name == "config.json");
if (entry is not null)
{
await using Stream es = entry.Open();
await InstallDependenciesAsync(es, installed);
}
if (!Directory.Exists($"{StrExeFilePath}Plugins"))
{
Directory.CreateDirectory($"{StrExeFilePath}Plugins");
}
zip.ExtractToDirectory($"{StrExeFilePath}", true);
Console.WriteLine();
if (!saveConfig) return;
// Save the config.json to current mode
try
{
var pluginActualName = GetPluginActualName(pluginName);
if (File.Exists($"{ModePath}/{_currentMode}/{pluginActualName}.json"))
{
if (File.Exists($"{PluginPath}/{pluginActualName}/config.json"))
// plugin contains config.json && mode contains plugin.json
// replace the config.json with plugin.json from mode
File.Copy($"{ModePath}/{_currentMode}/{pluginActualName}.json", $"{PluginPath}/{pluginActualName}/config.json", true);
else
// plugin doesn't contain config.json && mode contains plugin.json
// delete the plugin.json from mode
File.Delete($"{ModePath}/{_currentMode}/{pluginActualName}.json");
}
else if (File.Exists($"{PluginPath}/{pluginActualName}/config.json"))
// plugin contains config.json && mode doesn't contain plugin.json
// copy the config.json to mode
File.Copy($"{PluginPath}/{pluginActualName}/config.json", $"{ModePath}/{_currentMode}/{pluginActualName}.json", false);
AddPluginToMode(pluginActualName, _currentMode);
}
catch (Exception e)
{
// ignored
Console.WriteLine(e.Message);
}
}
/// <summary>
/// Install the dependency of the plugin
/// </summary>
/// <param name="config">plugin config path in temp</param>
/// <param name="installed">Dependency set</param>
private async Task InstallDependenciesAsync(Stream config, HashSet<string> installed)
{
IConfigurationSection dependency = new ConfigurationBuilder()
.AddJsonStream(config)
.Build()
.GetSection("Dependency");
if (!dependency.Exists()) return;
var dependencies = dependency.GetChildren().Select(p => p.Get<string>()).ToArray();
if (dependencies.Length == 0) return;
foreach (string plugin in dependencies.Where(p => !PluginExists(p)))
{
ConsoleHelper.Info($"Installing dependency: {plugin}");
await InstallPluginAsync(plugin, installed);
}
}
/// <summary>
/// Check that the plugin has all necessary files
/// </summary>
/// <param name="pluginName"> Name of the plugin</param>
/// <returns></returns>
private static bool PluginExists(string pluginName)
{
return Plugin.Plugins.Any(p => p.Name.Equals(pluginName, StringComparison.InvariantCultureIgnoreCase)) ||
new DirectoryInfo("Plugins").GetDirectories().Any(p => p.Name.Equals(pluginName, StringComparison.InvariantCultureIgnoreCase));
}
/// <summary>
/// Process "uninstall" command
/// </summary>
/// <param name="pluginName">Plugin name</param>
[ConsoleCommand("uninstall", Category = "Plugin Commands")]
private void OnUnInstallCommand(string pluginName)
{
if (!PluginExists(pluginName))
{
ConsoleHelper.Warning("Plugin not found");
return;
}
pluginName = GetPluginActualName(pluginName);
foreach (var p in Plugin.Plugins)
{
try
{
using var reader = File.OpenRead($"{PluginPath}/{p.Name}/config.json");
if (new ConfigurationBuilder()
.AddJsonStream(reader)
.Build()
.GetSection("Dependency")
.GetChildren()
.Select(d => d.Get<string>())
.Any(v => v.Equals(pluginName, StringComparison.InvariantCultureIgnoreCase)))
{
ConsoleHelper.Error(
$"Can not uninstall. Other plugins depend on this plugin, try `reinstall {pluginName}` if the plugin is broken.");
return;
}
}
catch (Exception)
{
// ignored
}
}
try
{
Directory.Delete($"{PluginPath}/{pluginName}", true);
var config = $"{ModePath}/{_currentMode}/{pluginName}.json";
if (File.Exists(config))
File.Delete(config);
RemovePluginFromMode(pluginName, _currentMode);
}
catch (IOException) { }
ConsoleHelper.Info("Uninstall successful, please restart neo-cli.");
}
/// <summary>
/// Process "plugins" command
/// </summary>
[ConsoleCommand("plugins", Category = "Plugin Commands")]
private void OnPluginsCommand()
{
if (Plugin.Plugins.Count > 0)
{
Console.WriteLine("Loaded plugins:");
foreach (Plugin plugin in Plugin.Plugins)
{
var name = $"{plugin.Name}@{plugin.Version}";
Console.WriteLine($"\t{name,-25}{plugin.Description}");
}
}
else
{
ConsoleHelper.Warning("No loaded plugins");
}
}
private static string GetPluginActualName(string pluginName)
{
var pluginActualName = "";
foreach (var plugin in new DirectoryInfo($"{PluginPath}").GetDirectories())
{
if (!string.Equals(plugin.Name, pluginName, StringComparison.CurrentCultureIgnoreCase)) continue;
pluginActualName = plugin.Name;
break;
}
return pluginActualName;
}
}
}