Compare commits
31 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0c4fc942b0 | ||
|
|
94b8f07d92 | ||
|
|
f11eef2734 | ||
|
|
0f8946fe27 | ||
|
|
a8cb1392e8 | ||
|
|
4241debc3b | ||
|
|
a99959bd2b | ||
|
|
23644eb93f | ||
|
|
ce0016fa3f | ||
|
|
15d8f49ce9 | ||
|
|
98d8e5b755 | ||
|
|
bfa1a09aab | ||
|
|
84396c34e6 | ||
|
|
4fb4a2415b | ||
|
|
c6cf11626e | ||
|
|
233c304b3c | ||
|
|
343e527fb6 | ||
|
|
25da3c233e | ||
|
|
d7fb3382f7 | ||
|
|
88c9f5372d | ||
|
|
7128a7f8a7 | ||
|
|
6e4f1c1dbd | ||
|
|
3527bc1bd5 | ||
|
|
c0068b58d7 | ||
|
|
feec9426b9 | ||
|
|
a180cfa31d | ||
|
|
b270b48ac1 | ||
|
|
a92c34b47f | ||
|
|
ac3bdba3e8 | ||
|
|
93328b8b88 | ||
|
|
800f9fbb50 |
@@ -1,5 +1,4 @@
|
|||||||
using Moonlight.App.Database.Entities;
|
using Moonlight.App.Database.Entities;
|
||||||
using Moonlight.App.Exceptions;
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using RestSharp;
|
using RestSharp;
|
||||||
|
|
||||||
@@ -14,26 +13,13 @@ public class DaemonApiHelper
|
|||||||
Client = new();
|
Client = new();
|
||||||
}
|
}
|
||||||
|
|
||||||
private string GetApiUrl(Node node)
|
|
||||||
{
|
|
||||||
/* SSL not implemented in moonlight daemon
|
|
||||||
if(node.Ssl)
|
|
||||||
return $"https://{node.Fqdn}:{node.MoonlightDaemonPort}/";
|
|
||||||
else
|
|
||||||
return $"http://{node.Fqdn}:{node.MoonlightDaemonPort}/";*/
|
|
||||||
|
|
||||||
return $"http://{node.Fqdn}:{node.MoonlightDaemonPort}/";
|
|
||||||
}
|
|
||||||
|
|
||||||
public async Task<T> Get<T>(Node node, string resource)
|
public async Task<T> Get<T>(Node node, string resource)
|
||||||
{
|
{
|
||||||
RestRequest request = new(GetApiUrl(node) + resource);
|
var request = await CreateRequest(node, resource);
|
||||||
|
|
||||||
request.AddHeader("Content-Type", "application/json");
|
request.Method = Method.Get;
|
||||||
request.AddHeader("Accept", "application/json");
|
|
||||||
request.AddHeader("Authorization", node.Token);
|
|
||||||
|
|
||||||
var response = await Client.GetAsync(request);
|
var response = await Client.ExecuteAsync(request);
|
||||||
|
|
||||||
if (!response.IsSuccessful)
|
if (!response.IsSuccessful)
|
||||||
{
|
{
|
||||||
@@ -52,4 +38,69 @@ public class DaemonApiHelper
|
|||||||
|
|
||||||
return JsonConvert.DeserializeObject<T>(response.Content!)!;
|
return JsonConvert.DeserializeObject<T>(response.Content!)!;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public async Task Post(Node node, string resource, object body)
|
||||||
|
{
|
||||||
|
var request = await CreateRequest(node, resource);
|
||||||
|
|
||||||
|
request.Method = Method.Post;
|
||||||
|
|
||||||
|
request.AddParameter("text/plain", JsonConvert.SerializeObject(body), ParameterType.RequestBody);
|
||||||
|
|
||||||
|
var response = await Client.ExecuteAsync(request);
|
||||||
|
|
||||||
|
if (!response.IsSuccessful)
|
||||||
|
{
|
||||||
|
if (response.StatusCode != 0)
|
||||||
|
{
|
||||||
|
throw new DaemonException(
|
||||||
|
$"An error occured: ({response.StatusCode}) {response.Content}",
|
||||||
|
(int)response.StatusCode
|
||||||
|
);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
throw new Exception($"An internal error occured: {response.ErrorMessage}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task Delete(Node node, string resource, object body)
|
||||||
|
{
|
||||||
|
var request = await CreateRequest(node, resource);
|
||||||
|
|
||||||
|
request.Method = Method.Delete;
|
||||||
|
|
||||||
|
request.AddParameter("text/plain", JsonConvert.SerializeObject(body), ParameterType.RequestBody);
|
||||||
|
|
||||||
|
var response = await Client.ExecuteAsync(request);
|
||||||
|
|
||||||
|
if (!response.IsSuccessful)
|
||||||
|
{
|
||||||
|
if (response.StatusCode != 0)
|
||||||
|
{
|
||||||
|
throw new DaemonException(
|
||||||
|
$"An error occured: ({response.StatusCode}) {response.Content}",
|
||||||
|
(int)response.StatusCode
|
||||||
|
);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
throw new Exception($"An internal error occured: {response.ErrorMessage}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private Task<RestRequest> CreateRequest(Node node, string resource)
|
||||||
|
{
|
||||||
|
var url = $"http://{node.Fqdn}:{node.MoonlightDaemonPort}/";
|
||||||
|
|
||||||
|
RestRequest request = new(url + resource);
|
||||||
|
|
||||||
|
request.AddHeader("Content-Type", "application/json");
|
||||||
|
request.AddHeader("Accept", "application/json");
|
||||||
|
request.AddHeader("Authorization", node.Token);
|
||||||
|
|
||||||
|
return Task.FromResult(request);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
8
Moonlight/App/ApiClients/Daemon/Requests/Mount.cs
Normal file
8
Moonlight/App/ApiClients/Daemon/Requests/Mount.cs
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
namespace Moonlight.App.ApiClients.Daemon.Requests;
|
||||||
|
|
||||||
|
public class Mount
|
||||||
|
{
|
||||||
|
public string Server { get; set; } = "";
|
||||||
|
public string ServerPath { get; set; } = "";
|
||||||
|
public string Path { get; set; } = "";
|
||||||
|
}
|
||||||
6
Moonlight/App/ApiClients/Daemon/Requests/Unmount.cs
Normal file
6
Moonlight/App/ApiClients/Daemon/Requests/Unmount.cs
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
namespace Moonlight.App.ApiClients.Daemon.Requests;
|
||||||
|
|
||||||
|
public class Unmount
|
||||||
|
{
|
||||||
|
public string Path { get; set; } = "";
|
||||||
|
}
|
||||||
10
Moonlight/App/ApiClients/Daemon/Resources/Container.cs
Normal file
10
Moonlight/App/ApiClients/Daemon/Resources/Container.cs
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
namespace Moonlight.App.ApiClients.Daemon.Resources;
|
||||||
|
|
||||||
|
public class Container
|
||||||
|
{
|
||||||
|
public string Name { get; set; } = "";
|
||||||
|
public long Memory { get; set; }
|
||||||
|
public double Cpu { get; set; }
|
||||||
|
public long NetworkIn { get; set; }
|
||||||
|
public long NetworkOut { get; set; }
|
||||||
|
}
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
namespace Moonlight.App.ApiClients.Daemon.Resources;
|
|
||||||
|
|
||||||
public class ContainerStats
|
|
||||||
{
|
|
||||||
public List<Container> Containers { get; set; } = new();
|
|
||||||
|
|
||||||
public class Container
|
|
||||||
{
|
|
||||||
public string Name { get; set; }
|
|
||||||
public long Memory { get; set; }
|
|
||||||
public double Cpu { get; set; }
|
|
||||||
public long NetworkIn { get; set; }
|
|
||||||
public long NetworkOut { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
7
Moonlight/App/ApiClients/Daemon/Resources/CpuMetrics.cs
Normal file
7
Moonlight/App/ApiClients/Daemon/Resources/CpuMetrics.cs
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
namespace Moonlight.App.ApiClients.Daemon.Resources;
|
||||||
|
|
||||||
|
public class CpuMetrics
|
||||||
|
{
|
||||||
|
public string CpuModel { get; set; } = "";
|
||||||
|
public double CpuUsage { get; set; }
|
||||||
|
}
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
namespace Moonlight.App.ApiClients.Daemon.Resources;
|
|
||||||
|
|
||||||
public class CpuStats
|
|
||||||
{
|
|
||||||
public double Usage { get; set; }
|
|
||||||
public int Cores { get; set; }
|
|
||||||
public string Model { get; set; } = "";
|
|
||||||
}
|
|
||||||
7
Moonlight/App/ApiClients/Daemon/Resources/DiskMetrics.cs
Normal file
7
Moonlight/App/ApiClients/Daemon/Resources/DiskMetrics.cs
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
namespace Moonlight.App.ApiClients.Daemon.Resources;
|
||||||
|
|
||||||
|
public class DiskMetrics
|
||||||
|
{
|
||||||
|
public long Used { get; set; }
|
||||||
|
public long Total { get; set; }
|
||||||
|
}
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
namespace Moonlight.App.ApiClients.Daemon.Resources;
|
|
||||||
|
|
||||||
public class DiskStats
|
|
||||||
{
|
|
||||||
public long FreeBytes { get; set; }
|
|
||||||
public string DriveFormat { get; set; }
|
|
||||||
public string Name { get; set; }
|
|
||||||
public long TotalSize { get; set; }
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
namespace Moonlight.App.ApiClients.Daemon.Resources;
|
||||||
|
|
||||||
|
public class DockerMetrics
|
||||||
|
{
|
||||||
|
public Container[] Containers { get; set; } = Array.Empty<Container>();
|
||||||
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
namespace Moonlight.App.ApiClients.Daemon.Resources;
|
||||||
|
|
||||||
|
public class MemoryMetrics
|
||||||
|
{
|
||||||
|
public long Used { get; set; }
|
||||||
|
public long Total { get; set; }
|
||||||
|
}
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
namespace Moonlight.App.ApiClients.Daemon.Resources;
|
|
||||||
|
|
||||||
public class MemoryStats
|
|
||||||
{
|
|
||||||
public List<MemoryStick> Sticks { get; set; } = new();
|
|
||||||
public double Free { get; set; }
|
|
||||||
public double Used { get; set; }
|
|
||||||
public double Total { get; set; }
|
|
||||||
|
|
||||||
public class MemoryStick
|
|
||||||
{
|
|
||||||
public int Size { get; set; }
|
|
||||||
public string Type { get; set; } = "";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
namespace Moonlight.App.ApiClients.Daemon.Resources;
|
||||||
|
|
||||||
|
public class SystemMetrics
|
||||||
|
{
|
||||||
|
public string OsName { get; set; } = "";
|
||||||
|
public long Uptime { get; set; }
|
||||||
|
}
|
||||||
@@ -5,7 +5,6 @@ namespace Moonlight.App.Events;
|
|||||||
|
|
||||||
public class EventSystem
|
public class EventSystem
|
||||||
{
|
{
|
||||||
private Dictionary<int, object> Storage = new();
|
|
||||||
private List<Subscriber> Subscribers = new();
|
private List<Subscriber> Subscribers = new();
|
||||||
|
|
||||||
private readonly bool Debug = false;
|
private readonly bool Debug = false;
|
||||||
@@ -33,16 +32,8 @@ public class EventSystem
|
|||||||
return Task.CompletedTask;
|
return Task.CompletedTask;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Task Emit(string id, object? d = null)
|
public Task Emit(string id, object? data = null)
|
||||||
{
|
{
|
||||||
int hashCode = -1;
|
|
||||||
|
|
||||||
if (d != null)
|
|
||||||
{
|
|
||||||
hashCode = d.GetHashCode();
|
|
||||||
Storage.TryAdd(hashCode, d);
|
|
||||||
}
|
|
||||||
|
|
||||||
Subscriber[] subscribers;
|
Subscriber[] subscribers;
|
||||||
|
|
||||||
lock (Subscribers)
|
lock (Subscribers)
|
||||||
@@ -58,23 +49,6 @@ public class EventSystem
|
|||||||
{
|
{
|
||||||
tasks.Add(new Task(() =>
|
tasks.Add(new Task(() =>
|
||||||
{
|
{
|
||||||
int storageId = hashCode + 0; // To create a copy of the hash code
|
|
||||||
|
|
||||||
object? data = null;
|
|
||||||
|
|
||||||
if (storageId != -1)
|
|
||||||
{
|
|
||||||
if (Storage.TryGetValue(storageId, out var value))
|
|
||||||
{
|
|
||||||
data = value;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Logger.Warn($"Object with the hash '{storageId}' was not present in the storage");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var stopWatch = new Stopwatch();
|
var stopWatch = new Stopwatch();
|
||||||
stopWatch.Start();
|
stopWatch.Start();
|
||||||
|
|
||||||
@@ -115,7 +89,6 @@ public class EventSystem
|
|||||||
Task.Run(() =>
|
Task.Run(() =>
|
||||||
{
|
{
|
||||||
Task.WaitAll(tasks.ToArray());
|
Task.WaitAll(tasks.ToArray());
|
||||||
Storage.Remove(hashCode);
|
|
||||||
|
|
||||||
if(Debug)
|
if(Debug)
|
||||||
Logger.Debug($"Completed all event tasks for '{id}' and removed object from storage");
|
Logger.Debug($"Completed all event tasks for '{id}' and removed object from storage");
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ using Moonlight.App.ApiClients.Wings;
|
|||||||
using Moonlight.App.ApiClients.Wings.Requests;
|
using Moonlight.App.ApiClients.Wings.Requests;
|
||||||
using Moonlight.App.ApiClients.Wings.Resources;
|
using Moonlight.App.ApiClients.Wings.Resources;
|
||||||
using Moonlight.App.Database.Entities;
|
using Moonlight.App.Database.Entities;
|
||||||
|
using Moonlight.App.Helpers.Wings;
|
||||||
using Moonlight.App.Services;
|
using Moonlight.App.Services;
|
||||||
using RestSharp;
|
using RestSharp;
|
||||||
|
|
||||||
@@ -211,13 +212,27 @@ public class WingsFileAccess : FileAccess
|
|||||||
|
|
||||||
public override async Task Decompress(FileData fileData)
|
public override async Task Decompress(FileData fileData)
|
||||||
{
|
{
|
||||||
var req = new DecompressFile()
|
try
|
||||||
{
|
{
|
||||||
Root = CurrentPath,
|
var req = new DecompressFile()
|
||||||
File = fileData.Name
|
{
|
||||||
};
|
Root = CurrentPath,
|
||||||
|
File = fileData.Name
|
||||||
|
};
|
||||||
|
|
||||||
await WingsApiHelper.Post(Server.Node, $"api/servers/{Server.Uuid}/files/decompress", req);
|
await WingsApiHelper.Post(Server.Node, $"api/servers/{Server.Uuid}/files/decompress", req);
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
if (e.Message.ToLower().Contains("canceled"))
|
||||||
|
{
|
||||||
|
// ignore, maybe do smth better here, like showing a waiting thing or so
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public override Task<string> GetLaunchUrl()
|
public override Task<string> GetLaunchUrl()
|
||||||
|
|||||||
@@ -8,7 +8,14 @@ public static class Formatter
|
|||||||
{
|
{
|
||||||
TimeSpan t = TimeSpan.FromMilliseconds(uptime);
|
TimeSpan t = TimeSpan.FromMilliseconds(uptime);
|
||||||
|
|
||||||
return $"{t.Hours}h {t.Minutes}m {t.Seconds}s";
|
if (t.Days > 0)
|
||||||
|
{
|
||||||
|
return $"{t.Days}d {t.Hours}h {t.Minutes}m {t.Seconds}s";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return $"{t.Hours}h {t.Minutes}m {t.Seconds}s";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static double Round(this double d, int decimals)
|
private static double Round(this double d, int decimals)
|
||||||
@@ -109,4 +116,12 @@ public static class Formatter
|
|||||||
return (i / (1024D * 1024D)).Round(2) + " GB";
|
return (i / (1024D * 1024D)).Round(2) + " GB";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static double BytesToGb(long bytes)
|
||||||
|
{
|
||||||
|
const double gbMultiplier = 1024 * 1024 * 1024; // 1 GB = 1024 MB * 1024 KB * 1024 B
|
||||||
|
|
||||||
|
double gigabytes = (double)bytes / gbMultiplier;
|
||||||
|
return gigabytes;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
7
Moonlight/App/Helpers/Wings/Data/ConsoleMessage.cs
Normal file
7
Moonlight/App/Helpers/Wings/Data/ConsoleMessage.cs
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
namespace Moonlight.App.Helpers.Wings.Data;
|
||||||
|
|
||||||
|
public class ConsoleMessage
|
||||||
|
{
|
||||||
|
public string Content { get; set; } = "";
|
||||||
|
public bool IsInternal { get; set; } = false;
|
||||||
|
}
|
||||||
36
Moonlight/App/Helpers/Wings/Data/ServerResource.cs
Normal file
36
Moonlight/App/Helpers/Wings/Data/ServerResource.cs
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
namespace Moonlight.App.Helpers.Wings.Data;
|
||||||
|
|
||||||
|
public class ServerResource
|
||||||
|
{
|
||||||
|
[JsonProperty("memory_bytes")]
|
||||||
|
public long MemoryBytes { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("memory_limit_bytes")]
|
||||||
|
public long MemoryLimitBytes { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("cpu_absolute")]
|
||||||
|
public float CpuAbsolute { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("network")]
|
||||||
|
public NetworkData Network { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("uptime")]
|
||||||
|
public double Uptime { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("state")]
|
||||||
|
public string State { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("disk_bytes")]
|
||||||
|
public long DiskBytes { get; set; }
|
||||||
|
|
||||||
|
public class NetworkData
|
||||||
|
{
|
||||||
|
[JsonProperty("rx_bytes")]
|
||||||
|
public long RxBytes { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("tx_bytes")]
|
||||||
|
public long TxBytes { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
8
Moonlight/App/Helpers/Wings/Enums/ConsoleState.cs
Normal file
8
Moonlight/App/Helpers/Wings/Enums/ConsoleState.cs
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
namespace Moonlight.App.Helpers.Wings.Enums;
|
||||||
|
|
||||||
|
public enum ConsoleState
|
||||||
|
{
|
||||||
|
Disconnected,
|
||||||
|
Connecting,
|
||||||
|
Connected
|
||||||
|
}
|
||||||
10
Moonlight/App/Helpers/Wings/Enums/ServerState.cs
Normal file
10
Moonlight/App/Helpers/Wings/Enums/ServerState.cs
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
namespace Moonlight.App.Helpers.Wings.Enums;
|
||||||
|
|
||||||
|
public enum ServerState
|
||||||
|
{
|
||||||
|
Starting,
|
||||||
|
Running,
|
||||||
|
Stopping,
|
||||||
|
Offline,
|
||||||
|
Installing
|
||||||
|
}
|
||||||
7
Moonlight/App/Helpers/Wings/Events/BaseEvent.cs
Normal file
7
Moonlight/App/Helpers/Wings/Events/BaseEvent.cs
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
namespace Moonlight.App.Helpers.Wings.Events;
|
||||||
|
|
||||||
|
public class BaseEvent
|
||||||
|
{
|
||||||
|
public string Event { get; set; } = "";
|
||||||
|
public string[] Args { get; set; } = Array.Empty<string>();
|
||||||
|
}
|
||||||
7
Moonlight/App/Helpers/Wings/Events/SendTokenEvent.cs
Normal file
7
Moonlight/App/Helpers/Wings/Events/SendTokenEvent.cs
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
namespace Moonlight.App.Helpers.Wings.Events;
|
||||||
|
|
||||||
|
public class SendTokenEvent
|
||||||
|
{
|
||||||
|
public string Event { get; set; } = "auth";
|
||||||
|
public List<string> Args = new();
|
||||||
|
}
|
||||||
389
Moonlight/App/Helpers/Wings/WingsConsole.cs
Normal file
389
Moonlight/App/Helpers/Wings/WingsConsole.cs
Normal file
@@ -0,0 +1,389 @@
|
|||||||
|
using System.Net.WebSockets;
|
||||||
|
using System.Text;
|
||||||
|
using Logging.Net;
|
||||||
|
using Moonlight.App.Helpers.Wings.Data;
|
||||||
|
using Moonlight.App.Helpers.Wings.Enums;
|
||||||
|
using Moonlight.App.Helpers.Wings.Events;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using ConsoleMessage = Moonlight.App.Helpers.Wings.Data.ConsoleMessage;
|
||||||
|
|
||||||
|
namespace Moonlight.App.Helpers.Wings;
|
||||||
|
|
||||||
|
public class WingsConsole : IDisposable
|
||||||
|
{
|
||||||
|
private ClientWebSocket WebSocket;
|
||||||
|
public List<ConsoleMessage> Messages;
|
||||||
|
private Task? ConsoleTask;
|
||||||
|
|
||||||
|
private string Socket = "";
|
||||||
|
private string Origin = "";
|
||||||
|
private string Token = "";
|
||||||
|
|
||||||
|
private bool Disconnecting;
|
||||||
|
|
||||||
|
public ConsoleState ConsoleState { get; private set; }
|
||||||
|
public ServerState ServerState { get; private set; }
|
||||||
|
public ServerResource Resource { get; private set; }
|
||||||
|
|
||||||
|
public EventHandler<ConsoleState> OnConsoleStateUpdated { get; set; }
|
||||||
|
public EventHandler<ServerState> OnServerStateUpdated { get; set; }
|
||||||
|
public EventHandler<ServerResource> OnResourceUpdated { get; set; }
|
||||||
|
public EventHandler<ConsoleMessage> OnMessage { get; set; }
|
||||||
|
public Func<WingsConsole, Task<string>> OnRequestNewToken { get; set; }
|
||||||
|
|
||||||
|
public WingsConsole()
|
||||||
|
{
|
||||||
|
ConsoleState = ConsoleState.Disconnected;
|
||||||
|
ServerState = ServerState.Offline;
|
||||||
|
Messages = new();
|
||||||
|
|
||||||
|
Resource = new()
|
||||||
|
{
|
||||||
|
Network = new()
|
||||||
|
{
|
||||||
|
RxBytes = 0,
|
||||||
|
TxBytes = 0
|
||||||
|
},
|
||||||
|
State = "offline",
|
||||||
|
Uptime = 0,
|
||||||
|
CpuAbsolute = 0,
|
||||||
|
DiskBytes = 0,
|
||||||
|
MemoryBytes = 0,
|
||||||
|
MemoryLimitBytes = 0
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
public Task Connect(string origin, string socket, string token)
|
||||||
|
{
|
||||||
|
Disconnecting = false;
|
||||||
|
WebSocket = new();
|
||||||
|
ConsoleState = ConsoleState.Disconnected;
|
||||||
|
ServerState = ServerState.Offline;
|
||||||
|
Messages = new();
|
||||||
|
|
||||||
|
Resource = new()
|
||||||
|
{
|
||||||
|
Network = new()
|
||||||
|
{
|
||||||
|
RxBytes = 0,
|
||||||
|
TxBytes = 0
|
||||||
|
},
|
||||||
|
State = "offline",
|
||||||
|
Uptime = 0,
|
||||||
|
CpuAbsolute = 0,
|
||||||
|
DiskBytes = 0,
|
||||||
|
MemoryBytes = 0,
|
||||||
|
MemoryLimitBytes = 0
|
||||||
|
};
|
||||||
|
|
||||||
|
Socket = socket;
|
||||||
|
Origin = origin;
|
||||||
|
Token = token;
|
||||||
|
|
||||||
|
WebSocket.Options.SetRequestHeader("Origin", Origin);
|
||||||
|
WebSocket.Options.SetRequestHeader("Authorization", "Bearer " + Token);
|
||||||
|
|
||||||
|
ConsoleTask = Task.Run(async () =>
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
await Work();
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
Logger.Warn("Error connecting to wings console");
|
||||||
|
Logger.Warn(e);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return Task.CompletedTask;
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task Work()
|
||||||
|
{
|
||||||
|
await UpdateConsoleState(ConsoleState.Connecting);
|
||||||
|
|
||||||
|
await WebSocket.ConnectAsync(
|
||||||
|
new Uri(Socket),
|
||||||
|
CancellationToken.None
|
||||||
|
);
|
||||||
|
|
||||||
|
if (WebSocket.State != WebSocketState.Connecting && WebSocket.State != WebSocketState.Open)
|
||||||
|
{
|
||||||
|
await SaveMessage("Unable to connect to websocket", true);
|
||||||
|
await UpdateConsoleState(ConsoleState.Disconnected);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
await UpdateConsoleState(ConsoleState.Connected);
|
||||||
|
|
||||||
|
await Send(new SendTokenEvent()
|
||||||
|
{
|
||||||
|
Args = { Token }
|
||||||
|
});
|
||||||
|
|
||||||
|
while (WebSocket.State == WebSocketState.Open)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var raw = await ReceiveRaw();
|
||||||
|
|
||||||
|
if(string.IsNullOrEmpty(raw))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
var eventData = JsonConvert.DeserializeObject<BaseEvent>(raw);
|
||||||
|
|
||||||
|
if (eventData == null)
|
||||||
|
{
|
||||||
|
await SaveMessage("Unable to parse event", true);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (eventData.Event)
|
||||||
|
{
|
||||||
|
case "jwt error":
|
||||||
|
if (WebSocket != null)
|
||||||
|
{
|
||||||
|
if (WebSocket.State == WebSocketState.Connecting || WebSocket.State == WebSocketState.Open)
|
||||||
|
await WebSocket.CloseAsync(WebSocketCloseStatus.Empty, null, CancellationToken.None);
|
||||||
|
|
||||||
|
WebSocket.Dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
await UpdateServerState(ServerState.Offline);
|
||||||
|
await UpdateConsoleState(ConsoleState.Disconnected);
|
||||||
|
|
||||||
|
await SaveMessage("Received a jwt error. Disconnected", true);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "token expired":
|
||||||
|
if (WebSocket != null)
|
||||||
|
{
|
||||||
|
if (WebSocket.State == WebSocketState.Connecting || WebSocket.State == WebSocketState.Open)
|
||||||
|
await WebSocket.CloseAsync(WebSocketCloseStatus.Empty, null, CancellationToken.None);
|
||||||
|
|
||||||
|
WebSocket.Dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
await UpdateServerState(ServerState.Offline);
|
||||||
|
await UpdateConsoleState(ConsoleState.Disconnected);
|
||||||
|
|
||||||
|
await SaveMessage("Token expired", true);
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "token expiring":
|
||||||
|
await SaveMessage("Token will expire soon. Generating a new one", true);
|
||||||
|
|
||||||
|
Token = await OnRequestNewToken.Invoke(this);
|
||||||
|
|
||||||
|
await Send(new SendTokenEvent()
|
||||||
|
{
|
||||||
|
Args = { Token }
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "auth success":
|
||||||
|
// Send intents
|
||||||
|
await SendRaw("{\"event\":\"send logs\",\"args\":[null]}");
|
||||||
|
await SendRaw("{\"event\":\"send stats\",\"args\":[null]}");
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "stats":
|
||||||
|
var stats = JsonConvert.DeserializeObject<ServerResource>(eventData.Args[0]);
|
||||||
|
|
||||||
|
if (stats == null)
|
||||||
|
break;
|
||||||
|
|
||||||
|
var serverState = ParseServerState(stats.State);
|
||||||
|
|
||||||
|
if (ServerState != serverState)
|
||||||
|
await UpdateServerState(serverState);
|
||||||
|
|
||||||
|
await UpdateResource(stats);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "status":
|
||||||
|
var serverStateParsed = ParseServerState(eventData.Args[0]);
|
||||||
|
|
||||||
|
if (ServerState != serverStateParsed)
|
||||||
|
await UpdateServerState(serverStateParsed);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "console output":
|
||||||
|
foreach (var line in eventData.Args)
|
||||||
|
{
|
||||||
|
await SaveMessage(line);
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "install output":
|
||||||
|
foreach (var line in eventData.Args)
|
||||||
|
{
|
||||||
|
await SaveMessage(line);
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "daemon message":
|
||||||
|
foreach (var line in eventData.Args)
|
||||||
|
{
|
||||||
|
await SaveMessage(line);
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "install started":
|
||||||
|
await UpdateServerState(ServerState.Installing);
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "install completed":
|
||||||
|
await UpdateServerState(ServerState.Offline);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
if (!Disconnecting)
|
||||||
|
{
|
||||||
|
Logger.Warn("Error while performing websocket actions");
|
||||||
|
Logger.Warn(e);
|
||||||
|
|
||||||
|
await SaveMessage("A unknown error occured while processing websocket", true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private Task UpdateConsoleState(ConsoleState consoleState)
|
||||||
|
{
|
||||||
|
ConsoleState = consoleState;
|
||||||
|
OnConsoleStateUpdated?.Invoke(this, consoleState);
|
||||||
|
|
||||||
|
return Task.CompletedTask;
|
||||||
|
}
|
||||||
|
private Task UpdateServerState(ServerState serverState)
|
||||||
|
{
|
||||||
|
ServerState = serverState;
|
||||||
|
OnServerStateUpdated?.Invoke(this, serverState);
|
||||||
|
|
||||||
|
return Task.CompletedTask;
|
||||||
|
}
|
||||||
|
private Task UpdateResource(ServerResource resource)
|
||||||
|
{
|
||||||
|
Resource = resource;
|
||||||
|
OnResourceUpdated?.Invoke(this, Resource);
|
||||||
|
|
||||||
|
return Task.CompletedTask;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Task SaveMessage(string content, bool internalMessage = false)
|
||||||
|
{
|
||||||
|
var msg = new ConsoleMessage()
|
||||||
|
{
|
||||||
|
Content = content,
|
||||||
|
IsInternal = internalMessage
|
||||||
|
};
|
||||||
|
|
||||||
|
lock (Messages)
|
||||||
|
{
|
||||||
|
Messages.Add(msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
OnMessage?.Invoke(this, msg);
|
||||||
|
|
||||||
|
return Task.CompletedTask;
|
||||||
|
}
|
||||||
|
|
||||||
|
private ServerState ParseServerState(string raw)
|
||||||
|
{
|
||||||
|
switch (raw)
|
||||||
|
{
|
||||||
|
case "offline":
|
||||||
|
return ServerState.Offline;
|
||||||
|
case "starting":
|
||||||
|
return ServerState.Starting;
|
||||||
|
case "running":
|
||||||
|
return ServerState.Running;
|
||||||
|
case "stopping":
|
||||||
|
return ServerState.Stopping;
|
||||||
|
case "installing":
|
||||||
|
return ServerState.Installing;
|
||||||
|
default:
|
||||||
|
return ServerState.Offline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task EnterCommand(string content)
|
||||||
|
{
|
||||||
|
if (ConsoleState == ConsoleState.Connected)
|
||||||
|
{
|
||||||
|
await SendRaw("{\"event\":\"send command\",\"args\":[\"" + content + "\"]}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task SetPowerState(string state)
|
||||||
|
{
|
||||||
|
if (ConsoleState == ConsoleState.Connected)
|
||||||
|
{
|
||||||
|
await SendRaw("{\"event\":\"set state\",\"args\":[\"" + state + "\"]}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task Send(object data)
|
||||||
|
{
|
||||||
|
await SendRaw(JsonConvert.SerializeObject(data));
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task SendRaw(string data)
|
||||||
|
{
|
||||||
|
if (WebSocket.State == WebSocketState.Open)
|
||||||
|
{
|
||||||
|
byte[] byteContentBuffer = Encoding.UTF8.GetBytes(data);
|
||||||
|
await WebSocket.SendAsync(new ArraySegment<byte>(byteContentBuffer), WebSocketMessageType.Text, true,
|
||||||
|
CancellationToken.None);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<string> ReceiveRaw()
|
||||||
|
{
|
||||||
|
ArraySegment<byte> receivedBytes = new ArraySegment<byte>(new byte[1024]);
|
||||||
|
WebSocketReceiveResult result = await WebSocket.ReceiveAsync(receivedBytes, CancellationToken.None);
|
||||||
|
return Encoding.UTF8.GetString(receivedBytes.Array!, 0, result.Count);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task Disconnect()
|
||||||
|
{
|
||||||
|
Disconnecting = true;
|
||||||
|
Messages.Clear();
|
||||||
|
|
||||||
|
if (WebSocket != null)
|
||||||
|
{
|
||||||
|
if (WebSocket.State == WebSocketState.Connecting || WebSocket.State == WebSocketState.Open)
|
||||||
|
await WebSocket.CloseAsync(WebSocketCloseStatus.Empty, null, CancellationToken.None);
|
||||||
|
|
||||||
|
WebSocket.Dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
if(ConsoleTask != null && ConsoleTask.IsCompleted)
|
||||||
|
ConsoleTask.Dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Dispose()
|
||||||
|
{
|
||||||
|
Disconnecting = true;
|
||||||
|
Messages.Clear();
|
||||||
|
|
||||||
|
if (WebSocket != null)
|
||||||
|
{
|
||||||
|
if (WebSocket.State == WebSocketState.Connecting || WebSocket.State == WebSocketState.Open)
|
||||||
|
WebSocket.CloseAsync(WebSocketCloseStatus.Empty, null, CancellationToken.None).Wait();
|
||||||
|
|
||||||
|
WebSocket.Dispose();
|
||||||
|
}
|
||||||
|
|
||||||
|
if(ConsoleTask != null && ConsoleTask.IsCompleted)
|
||||||
|
ConsoleTask.Dispose();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -7,37 +7,34 @@ using Moonlight.App.Database.Entities;
|
|||||||
using Moonlight.App.Repositories.Servers;
|
using Moonlight.App.Repositories.Servers;
|
||||||
using Moonlight.App.Services;
|
using Moonlight.App.Services;
|
||||||
|
|
||||||
namespace Moonlight.App.Helpers;
|
namespace Moonlight.App.Helpers.Wings;
|
||||||
|
|
||||||
public class WingsConsoleHelper
|
public class WingsConsoleHelper
|
||||||
{
|
{
|
||||||
private readonly ServerRepository ServerRepository;
|
private readonly ServerRepository ServerRepository;
|
||||||
private readonly WingsJwtHelper WingsJwtHelper;
|
|
||||||
private readonly string AppUrl;
|
private readonly string AppUrl;
|
||||||
|
|
||||||
public WingsConsoleHelper(
|
public WingsConsoleHelper(
|
||||||
ServerRepository serverRepository,
|
ServerRepository serverRepository,
|
||||||
ConfigService configService,
|
ConfigService configService)
|
||||||
WingsJwtHelper wingsJwtHelper)
|
|
||||||
{
|
{
|
||||||
ServerRepository = serverRepository;
|
ServerRepository = serverRepository;
|
||||||
WingsJwtHelper = wingsJwtHelper;
|
|
||||||
|
|
||||||
AppUrl = configService.GetSection("Moonlight").GetValue<string>("AppUrl");
|
AppUrl = configService.GetSection("Moonlight").GetValue<string>("AppUrl");
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task ConnectWings(PteroConsole.NET.PteroConsole pteroConsole, Server server)
|
public async Task ConnectWings(WingsConsole console, Server server)
|
||||||
{
|
{
|
||||||
var serverData = ServerRepository
|
var serverData = ServerRepository
|
||||||
.Get()
|
.Get()
|
||||||
.Include(x => x.Node)
|
.Include(x => x.Node)
|
||||||
.First(x => x.Id == server.Id);
|
.First(x => x.Id == server.Id);
|
||||||
|
|
||||||
var token = GenerateToken(serverData);
|
var token = await GenerateToken(serverData);
|
||||||
|
|
||||||
if (serverData.Node.Ssl)
|
if (serverData.Node.Ssl)
|
||||||
{
|
{
|
||||||
await pteroConsole.Connect(
|
await console.Connect(
|
||||||
AppUrl,
|
AppUrl,
|
||||||
$"wss://{serverData.Node.Fqdn}:{serverData.Node.HttpPort}/api/servers/{serverData.Uuid}/ws",
|
$"wss://{serverData.Node.Fqdn}:{serverData.Node.HttpPort}/api/servers/{serverData.Uuid}/ws",
|
||||||
token
|
token
|
||||||
@@ -45,7 +42,7 @@ public class WingsConsoleHelper
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
await pteroConsole.Connect(
|
await console.Connect(
|
||||||
AppUrl,
|
AppUrl,
|
||||||
$"ws://{serverData.Node.Fqdn}:{serverData.Node.HttpPort}/api/servers/{serverData.Uuid}/ws",
|
$"ws://{serverData.Node.Fqdn}:{serverData.Node.HttpPort}/api/servers/{serverData.Uuid}/ws",
|
||||||
token
|
token
|
||||||
@@ -53,7 +50,7 @@ public class WingsConsoleHelper
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public string GenerateToken(Server server)
|
public async Task<string> GenerateToken(Server server)
|
||||||
{
|
{
|
||||||
var serverData = ServerRepository
|
var serverData = ServerRepository
|
||||||
.Get()
|
.Get()
|
||||||
@@ -66,7 +63,7 @@ public class WingsConsoleHelper
|
|||||||
|
|
||||||
using (MD5 md5 = MD5.Create())
|
using (MD5 md5 = MD5.Create())
|
||||||
{
|
{
|
||||||
var inputBytes = Encoding.ASCII.GetBytes(userid + serverData.Uuid.ToString());
|
var inputBytes = Encoding.ASCII.GetBytes(userid + server.Uuid.ToString());
|
||||||
var outputBytes = md5.ComputeHash(inputBytes);
|
var outputBytes = md5.ComputeHash(inputBytes);
|
||||||
|
|
||||||
var identifier = Convert.ToHexString(outputBytes).ToLower();
|
var identifier = Convert.ToHexString(outputBytes).ToLower();
|
||||||
@@ -77,7 +74,7 @@ public class WingsConsoleHelper
|
|||||||
.WithAlgorithm(new HMACSHA256Algorithm())
|
.WithAlgorithm(new HMACSHA256Algorithm())
|
||||||
.WithSecret(secret)
|
.WithSecret(secret)
|
||||||
.AddClaim("user_id", userid)
|
.AddClaim("user_id", userid)
|
||||||
.AddClaim("server_uuid", serverData.Uuid.ToString())
|
.AddClaim("server_uuid", server.Uuid.ToString())
|
||||||
.AddClaim("permissions", new[]
|
.AddClaim("permissions", new[]
|
||||||
{
|
{
|
||||||
"*",
|
"*",
|
||||||
@@ -4,7 +4,7 @@ using JWT.Algorithms;
|
|||||||
using JWT.Builder;
|
using JWT.Builder;
|
||||||
using Moonlight.App.Services;
|
using Moonlight.App.Services;
|
||||||
|
|
||||||
namespace Moonlight.App.Helpers;
|
namespace Moonlight.App.Helpers.Wings;
|
||||||
|
|
||||||
public class WingsJwtHelper
|
public class WingsJwtHelper
|
||||||
{
|
{
|
||||||
@@ -5,7 +5,7 @@ using Moonlight.App.Http.Resources.Wings;
|
|||||||
using Moonlight.App.Repositories;
|
using Moonlight.App.Repositories;
|
||||||
using Moonlight.App.Repositories.Servers;
|
using Moonlight.App.Repositories.Servers;
|
||||||
|
|
||||||
namespace Moonlight.App.Helpers;
|
namespace Moonlight.App.Helpers.Wings;
|
||||||
|
|
||||||
public class WingsServerConverter
|
public class WingsServerConverter
|
||||||
{
|
{
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
using Logging.Net;
|
using Logging.Net;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Moonlight.App.Services;
|
using Moonlight.App.Services;
|
||||||
|
using Moonlight.App.Services.Sessions;
|
||||||
|
|
||||||
namespace Moonlight.App.Http.Controllers.Api.Moonlight;
|
namespace Moonlight.App.Http.Controllers.Api.Moonlight;
|
||||||
|
|
||||||
@@ -11,12 +12,41 @@ public class OAuth2Controller : Controller
|
|||||||
private readonly UserService UserService;
|
private readonly UserService UserService;
|
||||||
private readonly OAuth2Service OAuth2Service;
|
private readonly OAuth2Service OAuth2Service;
|
||||||
private readonly DateTimeService DateTimeService;
|
private readonly DateTimeService DateTimeService;
|
||||||
|
private readonly IdentityService IdentityService;
|
||||||
|
|
||||||
public OAuth2Controller(UserService userService, OAuth2Service oAuth2Service, DateTimeService dateTimeService)
|
public OAuth2Controller(
|
||||||
|
UserService userService,
|
||||||
|
OAuth2Service oAuth2Service,
|
||||||
|
DateTimeService dateTimeService,
|
||||||
|
IdentityService identityService)
|
||||||
{
|
{
|
||||||
UserService = userService;
|
UserService = userService;
|
||||||
OAuth2Service = oAuth2Service;
|
OAuth2Service = oAuth2Service;
|
||||||
DateTimeService = dateTimeService;
|
DateTimeService = dateTimeService;
|
||||||
|
IdentityService = identityService;
|
||||||
|
}
|
||||||
|
|
||||||
|
[HttpGet("{id}/start")]
|
||||||
|
public async Task<ActionResult> Start([FromRoute] string id)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (OAuth2Service.Providers.ContainsKey(id))
|
||||||
|
{
|
||||||
|
return Redirect(await OAuth2Service.GetUrl(id));
|
||||||
|
}
|
||||||
|
|
||||||
|
Logger.Warn($"Someone tried to start an oauth2 flow using the id '{id}' which is not registered");
|
||||||
|
|
||||||
|
return Redirect("/");
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
Logger.Warn($"Error starting oauth2 flow for id: {id}");
|
||||||
|
Logger.Warn(e);
|
||||||
|
|
||||||
|
return Redirect("/");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("{id}")]
|
[HttpGet("{id}")]
|
||||||
@@ -24,6 +54,18 @@ public class OAuth2Controller : Controller
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
var currentUser = await IdentityService.Get();
|
||||||
|
|
||||||
|
if (currentUser != null)
|
||||||
|
{
|
||||||
|
if (await OAuth2Service.CanBeLinked(id))
|
||||||
|
{
|
||||||
|
await OAuth2Service.LinkToUser(id, currentUser, code);
|
||||||
|
|
||||||
|
return Redirect("/profile");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
var user = await OAuth2Service.HandleCode(id, code);
|
var user = await OAuth2Service.HandleCode(id, code);
|
||||||
|
|
||||||
Response.Cookies.Append("token", await UserService.GenerateToken(user), new()
|
Response.Cookies.Append("token", await UserService.GenerateToken(user), new()
|
||||||
|
|||||||
@@ -16,14 +16,12 @@ public class ResourcesController : Controller
|
|||||||
{
|
{
|
||||||
private readonly SecurityLogService SecurityLogService;
|
private readonly SecurityLogService SecurityLogService;
|
||||||
private readonly BucketService BucketService;
|
private readonly BucketService BucketService;
|
||||||
private readonly BundleService BundleService;
|
|
||||||
|
|
||||||
public ResourcesController(SecurityLogService securityLogService,
|
public ResourcesController(SecurityLogService securityLogService,
|
||||||
BucketService bucketService, BundleService bundleService)
|
BucketService bucketService)
|
||||||
{
|
{
|
||||||
SecurityLogService = securityLogService;
|
SecurityLogService = securityLogService;
|
||||||
BucketService = bucketService;
|
BucketService = bucketService;
|
||||||
BundleService = bundleService;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("images/{name}")]
|
[HttpGet("images/{name}")]
|
||||||
@@ -77,34 +75,4 @@ public class ResourcesController : Controller
|
|||||||
return Problem();
|
return Problem();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("bundle/js")]
|
|
||||||
public Task<ActionResult> GetJs()
|
|
||||||
{
|
|
||||||
if (BundleService.BundledFinished)
|
|
||||||
{
|
|
||||||
return Task.FromResult<ActionResult>(
|
|
||||||
File(Encoding.ASCII.GetBytes(BundleService.BundledJs), "text/javascript")
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return Task.FromResult<ActionResult>(
|
|
||||||
NotFound()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
[HttpGet("bundle/css")]
|
|
||||||
public Task<ActionResult> GetCss()
|
|
||||||
{
|
|
||||||
if (BundleService.BundledFinished)
|
|
||||||
{
|
|
||||||
return Task.FromResult<ActionResult>(
|
|
||||||
File(Encoding.ASCII.GetBytes(BundleService.BundledCss), "text/css")
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
return Task.FromResult<ActionResult>(
|
|
||||||
NotFound()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -2,6 +2,7 @@
|
|||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using Moonlight.App.Events;
|
using Moonlight.App.Events;
|
||||||
using Moonlight.App.Helpers;
|
using Moonlight.App.Helpers;
|
||||||
|
using Moonlight.App.Helpers.Wings;
|
||||||
using Moonlight.App.Http.Resources.Wings;
|
using Moonlight.App.Http.Resources.Wings;
|
||||||
using Moonlight.App.Repositories;
|
using Moonlight.App.Repositories;
|
||||||
using Moonlight.App.Repositories.Servers;
|
using Moonlight.App.Repositories.Servers;
|
||||||
|
|||||||
@@ -6,5 +6,5 @@ namespace Moonlight.App.Models.Misc;
|
|||||||
public class RunningServer
|
public class RunningServer
|
||||||
{
|
{
|
||||||
public Server Server { get; set; }
|
public Server Server { get; set; }
|
||||||
public ContainerStats.Container Container { get; set; }
|
public Container Container { get; set; }
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,9 @@ public abstract class OAuth2Provider
|
|||||||
public string Url { get; set; }
|
public string Url { get; set; }
|
||||||
public IServiceScopeFactory ServiceScopeFactory { get; set; }
|
public IServiceScopeFactory ServiceScopeFactory { get; set; }
|
||||||
public string DisplayName { get; set; }
|
public string DisplayName { get; set; }
|
||||||
|
public bool CanBeLinked { get; set; } = false;
|
||||||
|
|
||||||
public abstract Task<string> GetUrl();
|
public abstract Task<string> GetUrl();
|
||||||
public abstract Task<User> HandleCode(string code);
|
public abstract Task<User> HandleCode(string code);
|
||||||
|
public abstract Task LinkToUser(User user, string code);
|
||||||
}
|
}
|
||||||
@@ -12,6 +12,11 @@ namespace Moonlight.App.OAuth2.Providers;
|
|||||||
|
|
||||||
public class DiscordOAuth2Provider : OAuth2Provider
|
public class DiscordOAuth2Provider : OAuth2Provider
|
||||||
{
|
{
|
||||||
|
public DiscordOAuth2Provider()
|
||||||
|
{
|
||||||
|
CanBeLinked = true;
|
||||||
|
}
|
||||||
|
|
||||||
public override Task<string> GetUrl()
|
public override Task<string> GetUrl()
|
||||||
{
|
{
|
||||||
string url = $"https://discord.com/api/oauth2/authorize?client_id={Config.ClientId}" +
|
string url = $"https://discord.com/api/oauth2/authorize?client_id={Config.ClientId}" +
|
||||||
@@ -119,4 +124,74 @@ public class DiscordOAuth2Provider : OAuth2Provider
|
|||||||
return user;
|
return user;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override async Task LinkToUser(User user, string code)
|
||||||
|
{
|
||||||
|
// Endpoints
|
||||||
|
|
||||||
|
var endpoint = Url + "/api/moonlight/oauth2/discord";
|
||||||
|
var discordUserDataEndpoint = "https://discordapp.com/api/users/@me";
|
||||||
|
var discordEndpoint = "https://discordapp.com/api/oauth2/token";
|
||||||
|
|
||||||
|
// Generate access token
|
||||||
|
|
||||||
|
using var client = new RestClient();
|
||||||
|
var request = new RestRequest(discordEndpoint);
|
||||||
|
|
||||||
|
request.AddParameter("client_id", Config.ClientId);
|
||||||
|
request.AddParameter("client_secret", Config.ClientSecret);
|
||||||
|
request.AddParameter("grant_type", "authorization_code");
|
||||||
|
request.AddParameter("code", code);
|
||||||
|
request.AddParameter("redirect_uri", endpoint);
|
||||||
|
|
||||||
|
var response = await client.ExecutePostAsync(request);
|
||||||
|
|
||||||
|
if (!response.IsSuccessful)
|
||||||
|
{
|
||||||
|
Logger.Warn("Error verifying oauth2 code");
|
||||||
|
Logger.Warn(response.ErrorMessage);
|
||||||
|
throw new DisplayException("An error occured while verifying oauth2 code");
|
||||||
|
}
|
||||||
|
|
||||||
|
// parse response
|
||||||
|
|
||||||
|
var data = new ConfigurationBuilder().AddJsonStream(
|
||||||
|
new MemoryStream(Encoding.ASCII.GetBytes(response.Content!))
|
||||||
|
).Build();
|
||||||
|
|
||||||
|
var accessToken = data.GetValue<string>("access_token");
|
||||||
|
|
||||||
|
// Now, we will call the discord api with our access token to get the data we need
|
||||||
|
|
||||||
|
var getRequest = new RestRequest(discordUserDataEndpoint);
|
||||||
|
getRequest.AddHeader("Authorization", $"Bearer {accessToken}");
|
||||||
|
|
||||||
|
var getResponse = await client.ExecuteGetAsync(getRequest);
|
||||||
|
|
||||||
|
if (!getResponse.IsSuccessful)
|
||||||
|
{
|
||||||
|
Logger.Warn("An unexpected error occured while fetching user data from remote api");
|
||||||
|
Logger.Warn(getResponse.ErrorMessage);
|
||||||
|
|
||||||
|
throw new DisplayException("An unexpected error occured while fetching user data from remote api");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Parse response
|
||||||
|
|
||||||
|
var getData = new ConfigurationBuilder().AddJsonStream(
|
||||||
|
new MemoryStream(Encoding.ASCII.GetBytes(getResponse.Content!))
|
||||||
|
).Build();
|
||||||
|
|
||||||
|
var id = getData.GetValue<ulong>("id");
|
||||||
|
|
||||||
|
// Handle data
|
||||||
|
|
||||||
|
using var scope = ServiceScopeFactory.CreateScope();
|
||||||
|
|
||||||
|
var userRepo = scope.ServiceProvider.GetRequiredService<Repository<User>>();
|
||||||
|
|
||||||
|
user.DiscordId = id;
|
||||||
|
|
||||||
|
userRepo.Update(user);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -4,7 +4,6 @@ using Moonlight.App.ApiClients.Google.Requests;
|
|||||||
using Moonlight.App.Database.Entities;
|
using Moonlight.App.Database.Entities;
|
||||||
using Moonlight.App.Exceptions;
|
using Moonlight.App.Exceptions;
|
||||||
using Moonlight.App.Helpers;
|
using Moonlight.App.Helpers;
|
||||||
using Moonlight.App.Models.Misc;
|
|
||||||
using Moonlight.App.Repositories;
|
using Moonlight.App.Repositories;
|
||||||
using Moonlight.App.Services;
|
using Moonlight.App.Services;
|
||||||
using RestSharp;
|
using RestSharp;
|
||||||
@@ -13,6 +12,11 @@ namespace Moonlight.App.OAuth2.Providers;
|
|||||||
|
|
||||||
public class GoogleOAuth2Provider : OAuth2Provider
|
public class GoogleOAuth2Provider : OAuth2Provider
|
||||||
{
|
{
|
||||||
|
public GoogleOAuth2Provider()
|
||||||
|
{
|
||||||
|
CanBeLinked = false;
|
||||||
|
}
|
||||||
|
|
||||||
public override Task<string> GetUrl()
|
public override Task<string> GetUrl()
|
||||||
{
|
{
|
||||||
var endpoint = Url + "/api/moonlight/oauth2/google";
|
var endpoint = Url + "/api/moonlight/oauth2/google";
|
||||||
@@ -127,4 +131,9 @@ public class GoogleOAuth2Provider : OAuth2Provider
|
|||||||
return user;
|
return user;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override Task LinkToUser(User user, string code)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -5,6 +5,7 @@ using Moonlight.App.ApiClients.Daemon.Resources;
|
|||||||
using Moonlight.App.ApiClients.Wings;
|
using Moonlight.App.ApiClients.Wings;
|
||||||
using Moonlight.App.Database.Entities;
|
using Moonlight.App.Database.Entities;
|
||||||
using Moonlight.App.Events;
|
using Moonlight.App.Events;
|
||||||
|
using Moonlight.App.Helpers;
|
||||||
using Moonlight.App.Repositories;
|
using Moonlight.App.Repositories;
|
||||||
using Moonlight.App.Repositories.Servers;
|
using Moonlight.App.Repositories.Servers;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
@@ -81,12 +82,12 @@ public class CleanupService
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var cpuStats = await nodeService.GetCpuStats(node);
|
var cpuMetrics = await nodeService.GetCpuMetrics(node);
|
||||||
var memoryStats = await nodeService.GetMemoryStats(node);
|
var memoryMetrics = await nodeService.GetMemoryMetrics(node);
|
||||||
|
|
||||||
if (cpuStats.Usage > maxCpu || memoryStats.Free < minMemory)
|
if (cpuMetrics.CpuUsage > maxCpu || (Formatter.BytesToGb(memoryMetrics.Total) - (Formatter.BytesToGb(memoryMetrics.Used))) < minMemory)
|
||||||
{
|
{
|
||||||
var containerStats = await nodeService.GetContainerStats(node);
|
var dockerMetrics = await nodeService.GetDockerMetrics(node);
|
||||||
|
|
||||||
var serverRepository = scope.ServiceProvider.GetRequiredService<ServerRepository>();
|
var serverRepository = scope.ServiceProvider.GetRequiredService<ServerRepository>();
|
||||||
var imageRepository = scope.ServiceProvider.GetRequiredService<ImageRepository>();
|
var imageRepository = scope.ServiceProvider.GetRequiredService<ImageRepository>();
|
||||||
@@ -101,9 +102,9 @@ public class CleanupService
|
|||||||
)
|
)
|
||||||
.ToArray();
|
.ToArray();
|
||||||
|
|
||||||
var containerMappedToServers = new Dictionary<ContainerStats.Container, Server>();
|
var containerMappedToServers = new Dictionary<Container, Server>();
|
||||||
|
|
||||||
foreach (var container in containerStats.Containers)
|
foreach (var container in dockerMetrics.Containers)
|
||||||
{
|
{
|
||||||
if (Guid.TryParse(container.Name, out Guid uuid))
|
if (Guid.TryParse(container.Name, out Guid uuid))
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
using Moonlight.App.ApiClients.Daemon;
|
using Moonlight.App.ApiClients.Daemon;
|
||||||
|
using Moonlight.App.ApiClients.Daemon.Requests;
|
||||||
using Moonlight.App.ApiClients.Daemon.Resources;
|
using Moonlight.App.ApiClients.Daemon.Resources;
|
||||||
using Moonlight.App.ApiClients.Wings;
|
using Moonlight.App.ApiClients.Wings;
|
||||||
using Moonlight.App.ApiClients.Wings.Resources;
|
using Moonlight.App.ApiClients.Wings.Resources;
|
||||||
@@ -24,35 +25,56 @@ public class NodeService
|
|||||||
return await WingsApiHelper.Get<SystemStatus>(node, "api/system");
|
return await WingsApiHelper.Get<SystemStatus>(node, "api/system");
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<CpuStats> GetCpuStats(Node node)
|
public async Task<CpuMetrics> GetCpuMetrics(Node node)
|
||||||
{
|
{
|
||||||
return await DaemonApiHelper.Get<CpuStats>(node, "stats/cpu");
|
return await DaemonApiHelper.Get<CpuMetrics>(node, "metrics/cpu");
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<MemoryStats> GetMemoryStats(Node node)
|
public async Task<MemoryMetrics> GetMemoryMetrics(Node node)
|
||||||
{
|
{
|
||||||
return await DaemonApiHelper.Get<MemoryStats>(node, "stats/memory");
|
return await DaemonApiHelper.Get<MemoryMetrics>(node, "metrics/memory");
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<DiskStats> GetDiskStats(Node node)
|
public async Task<DiskMetrics> GetDiskMetrics(Node node)
|
||||||
{
|
{
|
||||||
return await DaemonApiHelper.Get<DiskStats>(node, "stats/disk");
|
return await DaemonApiHelper.Get<DiskMetrics>(node, "metrics/disk");
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<ContainerStats> GetContainerStats(Node node)
|
public async Task<SystemMetrics> GetSystemMetrics(Node node)
|
||||||
{
|
{
|
||||||
return await DaemonApiHelper.Get<ContainerStats>(node, "stats/container");
|
return await DaemonApiHelper.Get<SystemMetrics>(node, "metrics/system");
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<DockerMetrics> GetDockerMetrics(Node node)
|
||||||
|
{
|
||||||
|
return await DaemonApiHelper.Get<DockerMetrics>(node, "metrics/docker");
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task Mount(Node node, string server, string serverPath, string path)
|
||||||
|
{
|
||||||
|
await DaemonApiHelper.Post(node, "mount", new Mount()
|
||||||
|
{
|
||||||
|
Server = server,
|
||||||
|
ServerPath = serverPath,
|
||||||
|
Path = path
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task Unmount(Node node, string path)
|
||||||
|
{
|
||||||
|
await DaemonApiHelper.Delete(node, "mount", new Unmount()
|
||||||
|
{
|
||||||
|
Path = path
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<bool> IsHostUp(Node node)
|
public async Task<bool> IsHostUp(Node node)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
//TODO: Implement status caching
|
await GetSystemMetrics(node);
|
||||||
var data = await GetStatus(node);
|
|
||||||
|
|
||||||
if (data != null)
|
return true;
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
catch (Exception)
|
catch (Exception)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -80,6 +80,26 @@ public class OAuth2Service
|
|||||||
return await provider.HandleCode(code);
|
return await provider.HandleCode(code);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Task<bool> CanBeLinked(string id)
|
||||||
|
{
|
||||||
|
if (Providers.All(x => x.Key != id))
|
||||||
|
throw new DisplayException("Invalid oauth2 id");
|
||||||
|
|
||||||
|
var provider = Providers[id];
|
||||||
|
|
||||||
|
return Task.FromResult(provider.CanBeLinked);
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task LinkToUser(string id, User user, string code)
|
||||||
|
{
|
||||||
|
if (Providers.All(x => x.Key != id))
|
||||||
|
throw new DisplayException("Invalid oauth2 id");
|
||||||
|
|
||||||
|
var provider = Providers[id];
|
||||||
|
|
||||||
|
await provider.LinkToUser(user, code);
|
||||||
|
}
|
||||||
|
|
||||||
private string GetAppUrl()
|
private string GetAppUrl()
|
||||||
{
|
{
|
||||||
if (EnableOverrideUrl)
|
if (EnableOverrideUrl)
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ using Moonlight.App.Events;
|
|||||||
using Moonlight.App.Exceptions;
|
using Moonlight.App.Exceptions;
|
||||||
using Moonlight.App.Helpers;
|
using Moonlight.App.Helpers;
|
||||||
using Moonlight.App.Helpers.Files;
|
using Moonlight.App.Helpers.Files;
|
||||||
|
using Moonlight.App.Helpers.Wings;
|
||||||
using Moonlight.App.Models.Misc;
|
using Moonlight.App.Models.Misc;
|
||||||
using Moonlight.App.Repositories;
|
using Moonlight.App.Repositories;
|
||||||
using Moonlight.App.Repositories.Servers;
|
using Moonlight.App.Repositories.Servers;
|
||||||
|
|||||||
@@ -1,129 +0,0 @@
|
|||||||
using Logging.Net;
|
|
||||||
|
|
||||||
namespace Moonlight.App.Services.Sessions;
|
|
||||||
|
|
||||||
public class BundleService
|
|
||||||
{
|
|
||||||
public BundleService(ConfigService configService)
|
|
||||||
{
|
|
||||||
var url = configService
|
|
||||||
.GetSection("Moonlight")
|
|
||||||
.GetValue<string>("AppUrl");
|
|
||||||
|
|
||||||
#region JS
|
|
||||||
|
|
||||||
JsFiles = new();
|
|
||||||
|
|
||||||
JsFiles.AddRange(new[]
|
|
||||||
{
|
|
||||||
url + "/_framework/blazor.server.js",
|
|
||||||
url + "/assets/plugins/global/plugins.bundle.js",
|
|
||||||
url + "/_content/XtermBlazor/XtermBlazor.min.js",
|
|
||||||
url + "/_content/BlazorTable/BlazorTable.min.js",
|
|
||||||
url + "/_content/CurrieTechnologies.Razor.SweetAlert2/sweetAlert2.min.js",
|
|
||||||
url + "/_content/Blazor.ContextMenu/blazorContextMenu.min.js",
|
|
||||||
"https://www.google.com/recaptcha/api.js",
|
|
||||||
"https://cdn.jsdelivr.net/npm/xterm-addon-fit@0.5.0/lib/xterm-addon-fit.min.js",
|
|
||||||
"https://cdn.jsdelivr.net/npm/xterm-addon-search@0.8.2/lib/xterm-addon-search.min.js",
|
|
||||||
"https://cdn.jsdelivr.net/npm/xterm-addon-web-links@0.5.0/lib/xterm-addon-web-links.min.js",
|
|
||||||
url + "/_content/BlazorMonaco/lib/monaco-editor/min/vs/loader.js",
|
|
||||||
"require.config({ paths: { 'vs': '/_content/BlazorMonaco/lib/monaco-editor/min/vs' } });",
|
|
||||||
url + "/_content/BlazorMonaco/lib/monaco-editor/min/vs/editor/editor.main.js",
|
|
||||||
url + "/_content/BlazorMonaco/jsInterop.js",
|
|
||||||
url + "/assets/js/scripts.bundle.js",
|
|
||||||
url + "/assets/js/moonlight.js",
|
|
||||||
"moonlight.loading.registerXterm();",
|
|
||||||
url + "/_content/Blazor-ApexCharts/js/apex-charts.min.js",
|
|
||||||
url + "/_content/Blazor-ApexCharts/js/blazor-apex-charts.js"
|
|
||||||
});
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#region CSS
|
|
||||||
|
|
||||||
CssFiles = new();
|
|
||||||
|
|
||||||
CssFiles.AddRange(new[]
|
|
||||||
{
|
|
||||||
"https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700",
|
|
||||||
url + "/assets/css/style.bundle.css",
|
|
||||||
url + "/assets/css/flashbang.css",
|
|
||||||
url + "/assets/css/snow.css",
|
|
||||||
url + "/assets/css/utils.css",
|
|
||||||
url + "/assets/css/blazor.css",
|
|
||||||
url + "/_content/XtermBlazor/XtermBlazor.css",
|
|
||||||
url + "/_content/BlazorMonaco/lib/monaco-editor/min/vs/editor/editor.main.css",
|
|
||||||
url + "/_content/Blazor.ContextMenu/blazorContextMenu.min.css",
|
|
||||||
url + "/assets/plugins/global/plugins.bundle.css"
|
|
||||||
});
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
CacheId = Guid.NewGuid().ToString();
|
|
||||||
|
|
||||||
Task.Run(Bundle);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Javascript
|
|
||||||
public string BundledJs { get; private set; }
|
|
||||||
public readonly List<string> JsFiles;
|
|
||||||
|
|
||||||
// CSS
|
|
||||||
public string BundledCss { get; private set; }
|
|
||||||
public readonly List<string> CssFiles;
|
|
||||||
|
|
||||||
// States
|
|
||||||
public string CacheId { get; private set; }
|
|
||||||
public bool BundledFinished { get; set; } = false;
|
|
||||||
private bool IsBundling { get; set; } = false;
|
|
||||||
|
|
||||||
private async Task Bundle()
|
|
||||||
{
|
|
||||||
if (!IsBundling)
|
|
||||||
IsBundling = true;
|
|
||||||
|
|
||||||
Logger.Info("Bundling js and css files");
|
|
||||||
|
|
||||||
BundledJs = "";
|
|
||||||
BundledCss = "";
|
|
||||||
|
|
||||||
BundledJs = await BundleFiles(
|
|
||||||
JsFiles
|
|
||||||
);
|
|
||||||
|
|
||||||
BundledCss = await BundleFiles(
|
|
||||||
CssFiles
|
|
||||||
);
|
|
||||||
|
|
||||||
Logger.Info("Successfully bundled");
|
|
||||||
BundledFinished = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
private async Task<string> BundleFiles(IEnumerable<string> items)
|
|
||||||
{
|
|
||||||
var bundled = "";
|
|
||||||
|
|
||||||
using HttpClient client = new HttpClient();
|
|
||||||
foreach (string item in items)
|
|
||||||
{
|
|
||||||
// Item is a url, fetch it
|
|
||||||
if (item.StartsWith("http"))
|
|
||||||
{
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var jsCode = await client.GetStringAsync(item);
|
|
||||||
bundled += jsCode + "\n";
|
|
||||||
}
|
|
||||||
catch (Exception e)
|
|
||||||
{
|
|
||||||
Logger.Warn($"Error fetching '{item}' while bundling");
|
|
||||||
Logger.Warn(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else // If not, it is probably a manual addition, so add it
|
|
||||||
bundled += item + "\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
return bundled;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -9,21 +9,36 @@ public class SmartDeployService
|
|||||||
private readonly Repository<CloudPanel> CloudPanelRepository;
|
private readonly Repository<CloudPanel> CloudPanelRepository;
|
||||||
private readonly WebSpaceService WebSpaceService;
|
private readonly WebSpaceService WebSpaceService;
|
||||||
private readonly NodeService NodeService;
|
private readonly NodeService NodeService;
|
||||||
|
private readonly ConfigService ConfigService;
|
||||||
|
|
||||||
public SmartDeployService(
|
public SmartDeployService(
|
||||||
NodeRepository nodeRepository,
|
NodeRepository nodeRepository,
|
||||||
NodeService nodeService,
|
NodeService nodeService,
|
||||||
WebSpaceService webSpaceService,
|
WebSpaceService webSpaceService,
|
||||||
Repository<CloudPanel> cloudPanelRepository)
|
Repository<CloudPanel> cloudPanelRepository,
|
||||||
|
ConfigService configService)
|
||||||
{
|
{
|
||||||
NodeRepository = nodeRepository;
|
NodeRepository = nodeRepository;
|
||||||
NodeService = nodeService;
|
NodeService = nodeService;
|
||||||
WebSpaceService = webSpaceService;
|
WebSpaceService = webSpaceService;
|
||||||
CloudPanelRepository = cloudPanelRepository;
|
CloudPanelRepository = cloudPanelRepository;
|
||||||
|
ConfigService = configService;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<Node?> GetNode()
|
public async Task<Node?> GetNode()
|
||||||
{
|
{
|
||||||
|
var config = ConfigService
|
||||||
|
.GetSection("Moonlight")
|
||||||
|
.GetSection("SmartDeploy")
|
||||||
|
.GetSection("Server");
|
||||||
|
|
||||||
|
if (config.GetValue<bool>("EnableOverride"))
|
||||||
|
{
|
||||||
|
var nodeId = config.GetValue<int>("OverrideNode");
|
||||||
|
|
||||||
|
return NodeRepository.Get().FirstOrDefault(x => x.Id == nodeId);
|
||||||
|
}
|
||||||
|
|
||||||
var data = new Dictionary<Node, double>();
|
var data = new Dictionary<Node, double>();
|
||||||
|
|
||||||
foreach (var node in NodeRepository.Get().ToArray())
|
foreach (var node in NodeRepository.Get().ToArray())
|
||||||
@@ -59,17 +74,17 @@ public class SmartDeployService
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var cpuStats = await NodeService.GetCpuStats(node);
|
var cpuMetrics = await NodeService.GetCpuMetrics(node);
|
||||||
var memoryStats = await NodeService.GetMemoryStats(node);
|
var memoryMetrics = await NodeService.GetMemoryMetrics(node);
|
||||||
var diskStats = await NodeService.GetDiskStats(node);
|
var diskMetrics = await NodeService.GetDiskMetrics(node);
|
||||||
|
|
||||||
var cpuWeight = 0.5; // Weight of CPU usage in the final score
|
var cpuWeight = 0.5; // Weight of CPU usage in the final score
|
||||||
var memoryWeight = 0.3; // Weight of memory usage in the final score
|
var memoryWeight = 0.3; // Weight of memory usage in the final score
|
||||||
var diskSpaceWeight = 0.2; // Weight of free disk space in the final score
|
var diskSpaceWeight = 0.2; // Weight of free disk space in the final score
|
||||||
|
|
||||||
var cpuScore = (1 - cpuStats.Usage) * cpuWeight; // CPU score is based on the inverse of CPU usage
|
var cpuScore = (1 - cpuMetrics.CpuUsage) * cpuWeight; // CPU score is based on the inverse of CPU usage
|
||||||
var memoryScore = (1 - (memoryStats.Used / 1024)) * memoryWeight; // Memory score is based on the percentage of free memory
|
var memoryScore = (1 - (memoryMetrics.Used / 1024)) * memoryWeight; // Memory score is based on the percentage of free memory
|
||||||
var diskSpaceScore = (double) diskStats.FreeBytes / 1000000000 * diskSpaceWeight; // Disk space score is based on the amount of free disk space in GB
|
var diskSpaceScore = (double) (diskMetrics.Total - diskMetrics.Used) / 1000000000 * diskSpaceWeight; // Disk space score is based on the amount of free disk space in GB
|
||||||
|
|
||||||
var finalScore = cpuScore + memoryScore + diskSpaceScore;
|
var finalScore = cpuScore + memoryScore + diskSpaceScore;
|
||||||
|
|
||||||
|
|||||||
@@ -41,7 +41,6 @@
|
|||||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3-beta1" />
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3-beta1" />
|
||||||
<PackageReference Include="Otp.NET" Version="1.3.0" />
|
<PackageReference Include="Otp.NET" Version="1.3.0" />
|
||||||
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="7.0.0" />
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="7.0.0" />
|
||||||
<PackageReference Include="PteroConsole.NET" Version="1.0.4" />
|
|
||||||
<PackageReference Include="QRCoder" Version="1.4.3" />
|
<PackageReference Include="QRCoder" Version="1.4.3" />
|
||||||
<PackageReference Include="RestSharp" Version="109.0.0-preview.1" />
|
<PackageReference Include="RestSharp" Version="109.0.0-preview.1" />
|
||||||
<PackageReference Include="SSH.NET" Version="2020.0.2" />
|
<PackageReference Include="SSH.NET" Version="2020.0.2" />
|
||||||
@@ -72,7 +71,6 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="App\ApiClients\CloudPanel\Resources\" />
|
<Folder Include="App\ApiClients\CloudPanel\Resources\" />
|
||||||
<Folder Include="App\ApiClients\Daemon\Requests\" />
|
|
||||||
<Folder Include="App\Http\Middleware" />
|
<Folder Include="App\Http\Middleware" />
|
||||||
<Folder Include="storage\backups\" />
|
<Folder Include="storage\backups\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|||||||
@@ -7,7 +7,6 @@
|
|||||||
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
|
||||||
|
|
||||||
@inject ConfigService ConfigService
|
@inject ConfigService ConfigService
|
||||||
@inject BundleService BundleService
|
|
||||||
@inject LoadingMessageRepository LoadingMessageRepository
|
@inject LoadingMessageRepository LoadingMessageRepository
|
||||||
|
|
||||||
@{
|
@{
|
||||||
@@ -38,29 +37,20 @@
|
|||||||
|
|
||||||
<link rel="shortcut icon" href="@(moonlightConfig.GetValue<string>("AppUrl"))/api/moonlight/resources/images/logo.svg"/>
|
<link rel="shortcut icon" href="@(moonlightConfig.GetValue<string>("AppUrl"))/api/moonlight/resources/images/logo.svg"/>
|
||||||
|
|
||||||
@*This import is not in the bundle because the files it references are linked relative to the current lath*@
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700"/>
|
||||||
<link rel="stylesheet" type="text/css" href="/assets/css/boxicons.min.css"/>
|
|
||||||
|
|
||||||
@if (BundleService.BundledFinished)
|
<link rel="stylesheet" type="text/css" href="/assets/css/style.bundle.css"/>
|
||||||
{
|
<link rel="stylesheet" type="text/css" href="/assets/css/flashbang.css"/>
|
||||||
<link rel="stylesheet" type="text/css" href="/api/moonlight/resources/bundle/css?idontwannabecached=@(BundleService.CacheId)"/>
|
<link rel="stylesheet" type="text/css" href="/assets/css/snow.css"/>
|
||||||
}
|
<link rel="stylesheet" type="text/css" href="/assets/css/utils.css"/>
|
||||||
else
|
<link rel="stylesheet" type="text/css" href="/assets/css/boxicons.min.css"/>
|
||||||
{
|
<link rel="stylesheet" type="text/css" href="/assets/css/blazor.css"/>
|
||||||
foreach (var cssFile in BundleService.CssFiles)
|
|
||||||
{
|
<link rel="stylesheet" type="text/css" href="/_content/XtermBlazor/XtermBlazor.css"/>
|
||||||
if (cssFile.StartsWith("http"))
|
<link rel="stylesheet" type="text/css" href="/_content/BlazorMonaco/lib/monaco-editor/min/vs/editor/editor.main.css"/>
|
||||||
{
|
<link rel="stylesheet" type="text/css" href="/_content/Blazor.ContextMenu/blazorContextMenu.min.css"/>
|
||||||
<link rel="stylesheet" type="text/css" href="@(cssFile)">
|
|
||||||
}
|
<link href="/assets/plugins/global/plugins.bundle.css" rel="stylesheet" type="text/css"/>
|
||||||
else
|
|
||||||
{
|
|
||||||
<style>
|
|
||||||
@cssFile
|
|
||||||
</style>
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
<base href="~/"/>
|
<base href="~/"/>
|
||||||
@@ -106,24 +96,33 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@if (BundleService.BundledFinished)
|
<script src="/_framework/blazor.server.js"></script>
|
||||||
{
|
<script src="/assets/plugins/global/plugins.bundle.js"></script>
|
||||||
<script src="/api/moonlight/resources/bundle/js?idontwannabecached=@(BundleService.CacheId)">
|
<script src="/_content/XtermBlazor/XtermBlazor.min.js"></script>
|
||||||
</script>
|
<script src="/_content/BlazorTable/BlazorTable.min.js"></script>
|
||||||
}
|
<script src="/_content/CurrieTechnologies.Razor.SweetAlert2/sweetAlert2.min.js"></script>
|
||||||
else
|
<script src="/_content/Blazor.ContextMenu/blazorContextMenu.min.js"></script>
|
||||||
{
|
|
||||||
foreach (var jsFile in BundleService.JsFiles)
|
<script src="https://www.google.com/recaptcha/api.js"></script>
|
||||||
{
|
|
||||||
if (jsFile.StartsWith("http"))
|
<script src="https://cdn.jsdelivr.net/npm/xterm-addon-fit@0.5.0/lib/xterm-addon-fit.min.js"></script>
|
||||||
{
|
<script src="https://cdn.jsdelivr.net/npm/xterm-addon-search@0.8.2/lib/xterm-addon-search.min.js"></script>
|
||||||
<script src="@(jsFile)"></script>
|
<script src="https://cdn.jsdelivr.net/npm/xterm-addon-web-links@0.5.0/lib/xterm-addon-web-links.min.js"></script>
|
||||||
}
|
|
||||||
else
|
<script src="/_content/BlazorMonaco/lib/monaco-editor/min/vs/loader.js"></script>
|
||||||
{
|
<script>require.config({ paths: { 'vs': '/_content/BlazorMonaco/lib/monaco-editor/min/vs' } });</script>
|
||||||
@Html.Raw("<script>" + jsFile +"</script>")
|
<script src="/_content/BlazorMonaco/lib/monaco-editor/min/vs/editor/editor.main.js"></script>
|
||||||
}
|
<script src="/_content/BlazorMonaco/jsInterop.js"></script>
|
||||||
}
|
|
||||||
}
|
<script src="/assets/js/scripts.bundle.js"></script>
|
||||||
|
<script src="/assets/js/moonlight.js"></script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
moonlight.loading.registerXterm();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script src="_content/Blazor-ApexCharts/js/apex-charts.min.js"></script>
|
||||||
|
<script src="_content/Blazor-ApexCharts/js/blazor-apex-charts.js"></script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@@ -9,6 +9,7 @@ using Moonlight.App.ApiClients.Wings;
|
|||||||
using Moonlight.App.Database;
|
using Moonlight.App.Database;
|
||||||
using Moonlight.App.Events;
|
using Moonlight.App.Events;
|
||||||
using Moonlight.App.Helpers;
|
using Moonlight.App.Helpers;
|
||||||
|
using Moonlight.App.Helpers.Wings;
|
||||||
using Moonlight.App.LogMigrator;
|
using Moonlight.App.LogMigrator;
|
||||||
using Moonlight.App.Repositories;
|
using Moonlight.App.Repositories;
|
||||||
using Moonlight.App.Repositories.Domains;
|
using Moonlight.App.Repositories.Domains;
|
||||||
@@ -127,7 +128,6 @@ namespace Moonlight
|
|||||||
builder.Services.AddScoped<ReCaptchaService>();
|
builder.Services.AddScoped<ReCaptchaService>();
|
||||||
builder.Services.AddScoped<IpBanService>();
|
builder.Services.AddScoped<IpBanService>();
|
||||||
builder.Services.AddSingleton<OAuth2Service>();
|
builder.Services.AddSingleton<OAuth2Service>();
|
||||||
builder.Services.AddSingleton<BundleService>();
|
|
||||||
|
|
||||||
builder.Services.AddScoped<SubscriptionService>();
|
builder.Services.AddScoped<SubscriptionService>();
|
||||||
builder.Services.AddScoped<SubscriptionAdminService>();
|
builder.Services.AddScoped<SubscriptionAdminService>();
|
||||||
|
|||||||
@@ -185,6 +185,8 @@ else
|
|||||||
await ToastService.Info(SmartTranslateService.Translate("Starting download"));
|
await ToastService.Info(SmartTranslateService.Translate("Starting download"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
await ToastService.Error(SmartTranslateService.Translate("You are not able to download folders using the moonlight file manager"));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -31,12 +31,17 @@
|
|||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item mt-2">
|
<li class="nav-item mt-2">
|
||||||
<a class="nav-link text-active-primary ms-0 me-10 py-5 @(Index == 1 ? "active" : "")" href="/profile/security">
|
<a class="nav-link text-active-primary ms-0 me-10 py-5 @(Index == 1 ? "active" : "")" href="/profile/discord">
|
||||||
|
<TL>Discord</TL>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="nav-item mt-2">
|
||||||
|
<a class="nav-link text-active-primary ms-0 me-10 py-5 @(Index == 2 ? "active" : "")" href="/profile/security">
|
||||||
<TL>Security</TL>
|
<TL>Security</TL>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item mt-2">
|
<li class="nav-item mt-2">
|
||||||
<a class="nav-link text-active-primary ms-0 me-10 py-5 @(Index == 2 ? "active" : "")" href="/profile/subscriptions">
|
<a class="nav-link text-active-primary ms-0 me-10 py-5 @(Index == 3 ? "active" : "")" href="/profile/subscriptions">
|
||||||
<TL>Subscriptions</TL>
|
<TL>Subscriptions</TL>
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
@using PteroConsole.NET
|
@using Moonlight.App.Services
|
||||||
@using Moonlight.App.Services
|
|
||||||
@using Task = System.Threading.Tasks.Task
|
|
||||||
@using Moonlight.App.Helpers
|
@using Moonlight.App.Helpers
|
||||||
@using Logging.Net
|
@using Logging.Net
|
||||||
@using BlazorContextMenu
|
@using BlazorContextMenu
|
||||||
@@ -101,9 +99,6 @@
|
|||||||
|
|
||||||
@code
|
@code
|
||||||
{
|
{
|
||||||
[CascadingParameter]
|
|
||||||
public PteroConsole Console { get; set; }
|
|
||||||
|
|
||||||
[CascadingParameter]
|
[CascadingParameter]
|
||||||
public Server CurrentServer { get; set; }
|
public Server CurrentServer { get; set; }
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,9 @@
|
|||||||
@using PteroConsole.NET
|
@using Moonlight.App.Helpers
|
||||||
@using PteroConsole.NET.Enums
|
|
||||||
@using Task = System.Threading.Tasks.Task
|
|
||||||
@using Moonlight.App.Helpers
|
|
||||||
@using Moonlight.App.Repositories
|
@using Moonlight.App.Repositories
|
||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Logging.Net
|
|
||||||
@using Moonlight.App.Database.Entities
|
@using Moonlight.App.Database.Entities
|
||||||
|
@using Moonlight.App.Helpers.Wings
|
||||||
|
@using Moonlight.App.Helpers.Wings.Data
|
||||||
@using Moonlight.App.Services.Interop
|
@using Moonlight.App.Services.Interop
|
||||||
@using Moonlight.Shared.Components.Xterm
|
@using Moonlight.Shared.Components.Xterm
|
||||||
|
|
||||||
@@ -37,7 +35,7 @@
|
|||||||
@code
|
@code
|
||||||
{
|
{
|
||||||
[CascadingParameter]
|
[CascadingParameter]
|
||||||
public PteroConsole Console { get; set; }
|
public WingsConsole Console { get; set; }
|
||||||
|
|
||||||
[CascadingParameter]
|
[CascadingParameter]
|
||||||
public Server CurrentServer { get; set; }
|
public Server CurrentServer { get; set; }
|
||||||
@@ -51,21 +49,35 @@
|
|||||||
Console.OnMessage += OnMessage;
|
Console.OnMessage += OnMessage;
|
||||||
}
|
}
|
||||||
|
|
||||||
private async void OnMessage(object? sender, string e)
|
private async void OnMessage(object? sender, ConsoleMessage message)
|
||||||
{
|
{
|
||||||
if (Terminal != null)
|
if (Terminal != null)
|
||||||
{
|
{
|
||||||
var s = e;
|
if (message.IsInternal)
|
||||||
|
{
|
||||||
|
await Terminal.WriteLine("\x1b[38;5;16;48;5;135m\x1b[39m\x1b[1m Moonlight \x1b[0m " + message.Content + "\x1b[0m");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var s = message.Content;
|
||||||
|
|
||||||
s = s.Replace("Pterodactyl Daemon", "Moonlight Daemon");
|
if (s.Contains("Moonlight Daemon") || s.Contains("Pterodactyl Daemon"))
|
||||||
s = s.Replace("Checking server disk space usage, this could take a few seconds...", TranslationService.Translate("Checking disk space"));
|
{
|
||||||
s = s.Replace("Updating process configuration files...", TranslationService.Translate("Updating config files"));
|
s = s.Replace("[39m", "\x1b[0m");
|
||||||
s = s.Replace("Ensuring file permissions are set correctly, this could take a few seconds...", TranslationService.Translate("Checking file permissions"));
|
s = s.Replace("[33m", "[38;5;16;48;5;135m\x1b[39m");
|
||||||
s = s.Replace("Pulling Docker container image, this could take a few minutes to complete...", TranslationService.Translate("Downloading server image"));
|
}
|
||||||
s = s.Replace("Finished pulling Docker container image", TranslationService.Translate("Downloaded server image"));
|
|
||||||
s = s.Replace("container@pterodactyl~", "server@moonlight >");
|
|
||||||
|
|
||||||
await Terminal.WriteLine(s);
|
s = s.Replace("[Pterodactyl Daemon]:", " Moonlight ");
|
||||||
|
s = s.Replace("[Moonlight Daemon]:", " Moonlight ");
|
||||||
|
s = s.Replace("Checking server disk space usage, this could take a few seconds...", TranslationService.Translate("Checking disk space"));
|
||||||
|
s = s.Replace("Updating process configuration files...", TranslationService.Translate("Updating config files"));
|
||||||
|
s = s.Replace("Ensuring file permissions are set correctly, this could take a few seconds...", TranslationService.Translate("Checking file permissions"));
|
||||||
|
s = s.Replace("Pulling Docker container image, this could take a few minutes to complete...", TranslationService.Translate("Downloading server image"));
|
||||||
|
s = s.Replace("Finished pulling Docker container image", TranslationService.Translate("Downloaded server image"));
|
||||||
|
s = s.Replace("container@pterodactyl~", "server@moonlight >");
|
||||||
|
|
||||||
|
await Terminal.WriteLine(s);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -85,9 +97,9 @@
|
|||||||
|
|
||||||
private void RunOnFirstRender()
|
private void RunOnFirstRender()
|
||||||
{
|
{
|
||||||
lock (Console.MessageCache)
|
lock (Console.Messages)
|
||||||
{
|
{
|
||||||
foreach (var message in Console.MessageCache.TakeLast(30))
|
foreach (var message in Console.Messages)
|
||||||
{
|
{
|
||||||
OnMessage(null, message);
|
OnMessage(null, message);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
@using Moonlight.App.Helpers.Files
|
@using Moonlight.App.Helpers.Files
|
||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Moonlight.App.ApiClients.Wings
|
@using Moonlight.App.ApiClients.Wings
|
||||||
|
@using Moonlight.App.Helpers.Wings
|
||||||
|
|
||||||
@inject WingsApiHelper WingsApiHelper
|
@inject WingsApiHelper WingsApiHelper
|
||||||
@inject WingsJwtHelper WingsJwtHelper
|
@inject WingsJwtHelper WingsJwtHelper
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
@using PteroConsole.NET
|
@using Moonlight.App.Services
|
||||||
@using PteroConsole.NET.Enums
|
|
||||||
@using Task = System.Threading.Tasks.Task
|
|
||||||
@using Moonlight.App.Services
|
|
||||||
@using Moonlight.App.Database.Entities
|
@using Moonlight.App.Database.Entities
|
||||||
@using Moonlight.App.Helpers
|
@using Moonlight.App.Helpers
|
||||||
|
@using Moonlight.App.Helpers.Wings
|
||||||
|
@using Moonlight.App.Helpers.Wings.Enums
|
||||||
|
|
||||||
@inject SmartTranslateService TranslationService
|
@inject SmartTranslateService TranslationService
|
||||||
|
|
||||||
@@ -77,32 +76,32 @@
|
|||||||
|
|
||||||
case ServerState.Starting:
|
case ServerState.Starting:
|
||||||
<span class="text-warning"><TL>Starting</TL></span>
|
<span class="text-warning"><TL>Starting</TL></span>
|
||||||
<span class="text-gray-700 pt-1 fw-semibold">(@(Formatter.FormatUptime(Console.ServerResource.Uptime)))</span>
|
<span class="text-gray-700 pt-1 fw-semibold">(@(Formatter.FormatUptime(Console.Resource.Uptime)))</span>
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ServerState.Stopping:
|
case ServerState.Stopping:
|
||||||
<span class="text-warning"><TL>Stopping</TL></span>
|
<span class="text-warning"><TL>Stopping</TL></span>
|
||||||
<span class="text-gray-700 pt-1 fw-semibold">(@(Formatter.FormatUptime(Console.ServerResource.Uptime)))</span>
|
<span class="text-gray-700 pt-1 fw-semibold">(@(Formatter.FormatUptime(Console.Resource.Uptime)))</span>
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ServerState.Running:
|
case ServerState.Running:
|
||||||
<span class="text-success"><TL>Online</TL></span>
|
<span class="text-success"><TL>Online</TL></span>
|
||||||
<span class="text-gray-700 pt-1 fw-semibold">(@(Formatter.FormatUptime(Console.ServerResource.Uptime)))</span>
|
<span class="text-gray-700 pt-1 fw-semibold">(@(Formatter.FormatUptime(Console.Resource.Uptime)))</span>
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="col fs-5">
|
<div class="col fs-5">
|
||||||
<span class="fw-bold"><TL>Cpu</TL>:</span>
|
<span class="fw-bold"><TL>Cpu</TL>:</span>
|
||||||
<span class="ms-1 text-muted">@(Math.Round(Console.ServerResource.CpuAbsolute, 2))%</span>
|
<span class="ms-1 text-muted">@(Math.Round(Console.Resource.CpuAbsolute / (CurrentServer.Cpu / 100f), 2))%</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="col fs-5">
|
<div class="col fs-5">
|
||||||
<span class="fw-bold"><TL>Memory</TL>:</span>
|
<span class="fw-bold"><TL>Memory</TL>:</span>
|
||||||
<span class="ms-1 text-muted">@(Formatter.FormatSize(Console.ServerResource.MemoryBytes)) / @(Formatter.FormatSize(Console.ServerResource.MemoryLimitBytes))</span>
|
<span class="ms-1 text-muted">@(Formatter.FormatSize(Console.Resource.MemoryBytes)) / @(Formatter.FormatSize(Console.Resource.MemoryLimitBytes))</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="col fs-5">
|
<div class="col fs-5">
|
||||||
<span class="fw-bold"><TL>Disk</TL>:</span>
|
<span class="fw-bold"><TL>Disk</TL>:</span>
|
||||||
<span class="ms-1 text-muted">@(Formatter.FormatSize(Console.ServerResource.DiskBytes)) / @(Math.Round(CurrentServer.Disk / 1024f, 2)) GB</span>
|
<span class="ms-1 text-muted">@(Formatter.FormatSize(Console.Resource.DiskBytes)) / @(Math.Round(CurrentServer.Disk / 1024f, 2)) GB</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -178,7 +177,7 @@
|
|||||||
public User User { get; set; }
|
public User User { get; set; }
|
||||||
|
|
||||||
[CascadingParameter]
|
[CascadingParameter]
|
||||||
public PteroConsole Console { get; set; }
|
public WingsConsole Console { get; set; }
|
||||||
|
|
||||||
[Parameter]
|
[Parameter]
|
||||||
public RenderFragment ChildContent { get; set; }
|
public RenderFragment ChildContent { get; set; }
|
||||||
@@ -190,8 +189,8 @@
|
|||||||
|
|
||||||
protected override void OnInitialized()
|
protected override void OnInitialized()
|
||||||
{
|
{
|
||||||
Console.OnServerStateUpdated += async (sender, state) => { await InvokeAsync(StateHasChanged); };
|
Console.OnServerStateUpdated += async (_, _) => { await InvokeAsync(StateHasChanged); };
|
||||||
Console.OnServerResourceUpdated += async (sender, x) => { await InvokeAsync(StateHasChanged); };
|
Console.OnResourceUpdated += async (_, _) => { await InvokeAsync(StateHasChanged); };
|
||||||
}
|
}
|
||||||
|
|
||||||
#region Power Actions
|
#region Power Actions
|
||||||
|
|||||||
@@ -5,9 +5,11 @@
|
|||||||
@using Moonlight.App.Repositories
|
@using Moonlight.App.Repositories
|
||||||
@using Moonlight.App.Repositories.Servers
|
@using Moonlight.App.Repositories.Servers
|
||||||
@using Logging.Net
|
@using Logging.Net
|
||||||
|
@using Moonlight.App.ApiClients.Wings
|
||||||
@using Moonlight.App.Database.Entities
|
@using Moonlight.App.Database.Entities
|
||||||
|
|
||||||
@inject ServerRepository ServerRepository
|
@inject ServerRepository ServerRepository
|
||||||
|
@inject ServerService ServerService
|
||||||
@inject SmartTranslateService TranslationService
|
@inject SmartTranslateService TranslationService
|
||||||
|
|
||||||
<div class="col">
|
<div class="col">
|
||||||
@@ -28,7 +30,8 @@
|
|||||||
OnClick="Save"
|
OnClick="Save"
|
||||||
Text="@(TranslationService.Translate("Change"))"
|
Text="@(TranslationService.Translate("Change"))"
|
||||||
WorkingText="@(TranslationService.Translate("Changing"))"
|
WorkingText="@(TranslationService.Translate("Changing"))"
|
||||||
CssClasses="btn-primary"></WButton>
|
CssClasses="btn-primary">
|
||||||
|
</WButton>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@@ -58,6 +61,20 @@
|
|||||||
|
|
||||||
ServerRepository.Update(CurrentServer);
|
ServerRepository.Update(CurrentServer);
|
||||||
|
|
||||||
|
var details = await ServerService.GetDetails(CurrentServer);
|
||||||
|
|
||||||
|
// For better user experience, we start the j2s server right away when the user enables j2s
|
||||||
|
if (details.State == "offline")
|
||||||
|
{
|
||||||
|
await ServerService.SetPowerState(CurrentServer, PowerSignal.Start);
|
||||||
|
}
|
||||||
|
|
||||||
|
// For better user experience, we kill the j2s server right away when the user disables j2s and the server is starting
|
||||||
|
if (details.State == "starting")
|
||||||
|
{
|
||||||
|
await ServerService.SetPowerState(CurrentServer, PowerSignal.Kill);
|
||||||
|
}
|
||||||
|
|
||||||
await Loader.Reload();
|
await Loader.Reload();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -41,7 +41,7 @@ else
|
|||||||
</div>
|
</div>
|
||||||
<div class="m-0">
|
<div class="m-0">
|
||||||
<span class="fw-bolder d-block fs-2qx lh-1 ls-n1 mb-1">
|
<span class="fw-bolder d-block fs-2qx lh-1 ls-n1 mb-1">
|
||||||
@if (CpuStats == null)
|
@if (CpuMetrics == null)
|
||||||
{
|
{
|
||||||
<span class="text-muted">
|
<span class="text-muted">
|
||||||
<TL>Loading</TL>
|
<TL>Loading</TL>
|
||||||
@@ -50,12 +50,12 @@ else
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
<span>
|
<span>
|
||||||
@(CpuStats.Usage)% <TL>of</TL> @(CpuStats.Cores) <TL>Cores used</TL>
|
@(CpuMetrics.CpuUsage)% <TL>of CPU used</TL>
|
||||||
</span>
|
</span>
|
||||||
}
|
}
|
||||||
</span>
|
</span>
|
||||||
<span class="fw-semibold fs-6">
|
<span class="fw-semibold fs-6">
|
||||||
@if (CpuStats == null)
|
@if (CpuMetrics == null)
|
||||||
{
|
{
|
||||||
<span class="text-muted">
|
<span class="text-muted">
|
||||||
<TL>Loading</TL>
|
<TL>Loading</TL>
|
||||||
@@ -63,7 +63,7 @@ else
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
<span>@(CpuStats.Model)</span>
|
<span>@(CpuMetrics.CpuModel)</span>
|
||||||
}
|
}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
@@ -78,7 +78,7 @@ else
|
|||||||
</div>
|
</div>
|
||||||
<div class="m-0">
|
<div class="m-0">
|
||||||
<span class="fw-bolder d-block fs-2qx lh-1 ls-n1 mb-1">
|
<span class="fw-bolder d-block fs-2qx lh-1 ls-n1 mb-1">
|
||||||
@if (MemoryStats == null)
|
@if (MemoryMetrics == null)
|
||||||
{
|
{
|
||||||
<span class="text-muted">
|
<span class="text-muted">
|
||||||
<TL>Loading</TL>
|
<TL>Loading</TL>
|
||||||
@@ -87,32 +87,12 @@ else
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
<span>
|
<span>
|
||||||
@(Formatter.FormatSize(MemoryStats.Used * 1024D * 1024D)) <TL>of</TL> @(Formatter.FormatSize(MemoryStats.Total * 1024D * 1024D)) <TL>used</TL>
|
@(Formatter.FormatSize(MemoryMetrics.Used)) <TL>of</TL> @(Formatter.FormatSize(MemoryMetrics.Total)) <TL>memory used</TL>
|
||||||
</span>
|
</span>
|
||||||
}
|
}
|
||||||
</span>
|
</span>
|
||||||
<span class="fw-semibold fs-6">
|
<span class="fw-semibold fs-6">
|
||||||
@if (MemoryStats == null)
|
@*IDK what to put here*@
|
||||||
{
|
|
||||||
<span class="text-muted">
|
|
||||||
<TL>Loading</TL>
|
|
||||||
</span>
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (MemoryStats.Sticks.Any())
|
|
||||||
{
|
|
||||||
foreach (var stick in SortMemorySticks(MemoryStats.Sticks))
|
|
||||||
{
|
|
||||||
<span>@(stick)</span>
|
|
||||||
<br/>
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
<span>No memory sticks detected</span>
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -126,7 +106,7 @@ else
|
|||||||
</div>
|
</div>
|
||||||
<div class="m-0">
|
<div class="m-0">
|
||||||
<span class="fw-bolder d-block fs-2qx lh-1 ls-n1 mb-1">
|
<span class="fw-bolder d-block fs-2qx lh-1 ls-n1 mb-1">
|
||||||
@if (DiskStats == null)
|
@if (DiskMetrics == null)
|
||||||
{
|
{
|
||||||
<span class="text-muted">
|
<span class="text-muted">
|
||||||
<TL>Loading</TL>
|
<TL>Loading</TL>
|
||||||
@@ -135,21 +115,12 @@ else
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
<span>
|
<span>
|
||||||
@(Formatter.FormatSize(DiskStats.TotalSize - DiskStats.FreeBytes)) <TL>of</TL> @(Formatter.FormatSize(DiskStats.TotalSize)) <TL>used</TL>
|
@(Formatter.FormatSize(DiskMetrics.Used)) <TL>of</TL> @(Formatter.FormatSize(DiskMetrics.Total)) <TL>used</TL>
|
||||||
</span>
|
</span>
|
||||||
}
|
}
|
||||||
</span>
|
</span>
|
||||||
<span class="fw-semibold fs-6">
|
<span class="fw-semibold fs-6">
|
||||||
@if (DiskStats == null)
|
@*IDK what to put here*@
|
||||||
{
|
|
||||||
<span class="text-muted">
|
|
||||||
<TL>Loading</TL>
|
|
||||||
</span>
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
<span>@(DiskStats.Name) - @(DiskStats.DriveFormat)</span>
|
|
||||||
}
|
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -239,7 +210,7 @@ else
|
|||||||
</div>
|
</div>
|
||||||
<div class="m-0">
|
<div class="m-0">
|
||||||
<span class="fw-bolder d-block fs-2qx lh-1 ls-n1 mb-1">
|
<span class="fw-bolder d-block fs-2qx lh-1 ls-n1 mb-1">
|
||||||
@if (ContainerStats == null)
|
@if (DockerMetrics == null)
|
||||||
{
|
{
|
||||||
<span class="text-muted">
|
<span class="text-muted">
|
||||||
<TL>Loading</TL>
|
<TL>Loading</TL>
|
||||||
@@ -248,12 +219,12 @@ else
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
<span>
|
<span>
|
||||||
<TL>@(ContainerStats.Containers.Count)</TL>
|
<TL>@(DockerMetrics.Containers.Length)</TL>
|
||||||
</span>
|
</span>
|
||||||
}
|
}
|
||||||
</span>
|
</span>
|
||||||
<span class="fw-semibold fs-6">
|
<span class="fw-semibold fs-6">
|
||||||
@if (ContainerStats == null)
|
@if (DockerMetrics == null)
|
||||||
{
|
{
|
||||||
<span class="text-muted">
|
<span class="text-muted">
|
||||||
<TL>Loading</TL>
|
<TL>Loading</TL>
|
||||||
@@ -290,11 +261,11 @@ else
|
|||||||
|
|
||||||
private Node? Node;
|
private Node? Node;
|
||||||
|
|
||||||
private CpuStats CpuStats;
|
private CpuMetrics CpuMetrics;
|
||||||
private MemoryStats MemoryStats;
|
private MemoryMetrics MemoryMetrics;
|
||||||
private DiskStats DiskStats;
|
private DiskMetrics DiskMetrics;
|
||||||
|
private DockerMetrics DockerMetrics;
|
||||||
private SystemStatus SystemStatus;
|
private SystemStatus SystemStatus;
|
||||||
private ContainerStats ContainerStats;
|
|
||||||
|
|
||||||
private async Task Load(LazyLoader arg)
|
private async Task Load(LazyLoader arg)
|
||||||
{
|
{
|
||||||
@@ -311,16 +282,16 @@ else
|
|||||||
SystemStatus = await NodeService.GetStatus(Node);
|
SystemStatus = await NodeService.GetStatus(Node);
|
||||||
await InvokeAsync(StateHasChanged);
|
await InvokeAsync(StateHasChanged);
|
||||||
|
|
||||||
CpuStats = await NodeService.GetCpuStats(Node);
|
CpuMetrics = await NodeService.GetCpuMetrics(Node);
|
||||||
await InvokeAsync(StateHasChanged);
|
await InvokeAsync(StateHasChanged);
|
||||||
|
|
||||||
MemoryStats = await NodeService.GetMemoryStats(Node);
|
MemoryMetrics = await NodeService.GetMemoryMetrics(Node);
|
||||||
await InvokeAsync(StateHasChanged);
|
await InvokeAsync(StateHasChanged);
|
||||||
|
|
||||||
DiskStats = await NodeService.GetDiskStats(Node);
|
DiskMetrics = await NodeService.GetDiskMetrics(Node);
|
||||||
await InvokeAsync(StateHasChanged);
|
await InvokeAsync(StateHasChanged);
|
||||||
|
|
||||||
ContainerStats = await NodeService.GetContainerStats(Node);
|
DockerMetrics = await NodeService.GetDockerMetrics(Node);
|
||||||
await InvokeAsync(StateHasChanged);
|
await InvokeAsync(StateHasChanged);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
@@ -330,28 +301,4 @@ else
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<string> SortMemorySticks(List<MemoryStats.MemoryStick> sticks)
|
|
||||||
{
|
|
||||||
// Thank you ChatGPT <3
|
|
||||||
|
|
||||||
var groupedMemory = sticks.GroupBy(memory => new { memory.Type, memory.Size })
|
|
||||||
.Select(group => new
|
|
||||||
{
|
|
||||||
Type = group.Key.Type,
|
|
||||||
Size = group.Key.Size,
|
|
||||||
Count = group.Count()
|
|
||||||
});
|
|
||||||
|
|
||||||
var sortedMemory = groupedMemory.OrderBy(memory => memory.Type)
|
|
||||||
.ThenBy(memory => memory.Size);
|
|
||||||
|
|
||||||
List<string> sortedList = sortedMemory.Select(memory =>
|
|
||||||
{
|
|
||||||
string sizeString = $"{memory.Size}GB";
|
|
||||||
return $"{memory.Count}x {memory.Type} {sizeString}";
|
|
||||||
}).ToList();
|
|
||||||
|
|
||||||
return sortedList;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -132,9 +132,9 @@
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var containerStats = await NodeService.GetContainerStats(node);
|
var dockerMetrics = await NodeService.GetDockerMetrics(node);
|
||||||
|
|
||||||
foreach (var container in containerStats.Containers)
|
foreach (var container in dockerMetrics.Containers)
|
||||||
{
|
{
|
||||||
if (Guid.TryParse(container.Name, out Guid uuid))
|
if (Guid.TryParse(container.Name, out Guid uuid))
|
||||||
{
|
{
|
||||||
|
|||||||
77
Moonlight/Shared/Views/Profile/Discord.razor
Normal file
77
Moonlight/Shared/Views/Profile/Discord.razor
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
@page "/profile/discord"
|
||||||
|
|
||||||
|
@using Moonlight.Shared.Components.Navigations
|
||||||
|
@using Moonlight.App.Database.Entities
|
||||||
|
@using Moonlight.App.Repositories
|
||||||
|
@using Moonlight.App.Services
|
||||||
|
|
||||||
|
@inject Repository<User> UserRepository
|
||||||
|
@inject SmartTranslateService SmartTranslateService
|
||||||
|
|
||||||
|
<ProfileNavigation Index="1"/>
|
||||||
|
|
||||||
|
@if (User.DiscordId == 0)
|
||||||
|
{
|
||||||
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
|
<div class="alert bg-warning d-flex flex-column flex-sm-row p-5 mb-10">
|
||||||
|
<i class="fs-2hx text-light me-4 mb-5 mb-sm-0 bx bx-error bx-lg"></i>
|
||||||
|
|
||||||
|
<div class="d-flex flex-column text-light pe-0 pe-sm-10">
|
||||||
|
<h4 class="mb-2 light">
|
||||||
|
<TL>Your account is currently not linked to discord</TL>
|
||||||
|
</h4>
|
||||||
|
<TL>To use features like the discord bot, link your moonlight account with your discord account</TL><br/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="col">
|
||||||
|
<div class="card card-body">
|
||||||
|
<a class="btn btn-primary" href="/api/moonlight/oauth2/discord/start">
|
||||||
|
<TL>Link account</TL>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
|
<div class="alert bg-success d-flex flex-column flex-sm-row p-5 mb-10">
|
||||||
|
<i class="fs-2hx text-light me-4 mb-5 mb-sm-0 bx bx-check bx-lg"></i>
|
||||||
|
|
||||||
|
<div class="d-flex flex-column text-light pe-0 pe-sm-10">
|
||||||
|
<h4 class="mb-2 light">
|
||||||
|
<TL>Your account is linked to a discord account</TL>
|
||||||
|
</h4>
|
||||||
|
<TL>You are able to use features like the discord bot of moonlight</TL>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<div class="card card-body">
|
||||||
|
<WButton CssClasses="btn-danger"
|
||||||
|
Text="@(SmartTranslateService.Translate("Remove link"))"
|
||||||
|
WorkingText="@(SmartTranslateService.Translate("Working"))"
|
||||||
|
OnClick="RemoveLink">
|
||||||
|
</WButton>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
|
||||||
|
@code
|
||||||
|
{
|
||||||
|
[CascadingParameter]
|
||||||
|
public User User { get; set; }
|
||||||
|
|
||||||
|
private async Task RemoveLink()
|
||||||
|
{
|
||||||
|
User.DiscordId = 0;
|
||||||
|
UserRepository.Update(User);
|
||||||
|
|
||||||
|
await InvokeAsync(StateHasChanged);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
@inject AlertService AlertService
|
@inject AlertService AlertService
|
||||||
@inject ToastService ToastService
|
@inject ToastService ToastService
|
||||||
|
|
||||||
<ProfileNavigation Index="1"/>
|
<ProfileNavigation Index="2"/>
|
||||||
|
|
||||||
<div class="card mb-5 mb-xl-10">
|
<div class="card mb-5 mb-xl-10">
|
||||||
<LazyLoader Load="Load">
|
<LazyLoader Load="Load">
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
@inject SubscriptionService SubscriptionService
|
@inject SubscriptionService SubscriptionService
|
||||||
@inject SmartTranslateService SmartTranslateService
|
@inject SmartTranslateService SmartTranslateService
|
||||||
|
|
||||||
<ProfileNavigation Index="2"/>
|
<ProfileNavigation Index="3"/>
|
||||||
|
|
||||||
<div class="card mb-3">
|
<div class="card mb-3">
|
||||||
<div class="row g-0">
|
<div class="row g-0">
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
@page "/server/{ServerUuid}/{Route?}"
|
@page "/server/{ServerUuid}/{Route?}"
|
||||||
@using PteroConsole.NET
|
|
||||||
@using Task = System.Threading.Tasks.Task
|
@using Task = System.Threading.Tasks.Task
|
||||||
@using Moonlight.App.Repositories.Servers
|
@using Moonlight.App.Repositories.Servers
|
||||||
@using PteroConsole.NET.Enums
|
|
||||||
@using Microsoft.EntityFrameworkCore
|
@using Microsoft.EntityFrameworkCore
|
||||||
@using Logging.Net
|
@using Logging.Net
|
||||||
@using Moonlight.App.Database.Entities
|
@using Moonlight.App.Database.Entities
|
||||||
@using Moonlight.App.Events
|
@using Moonlight.App.Events
|
||||||
@using Moonlight.App.Helpers
|
@using Moonlight.App.Helpers
|
||||||
|
@using Moonlight.App.Helpers.Wings
|
||||||
|
@using Moonlight.App.Helpers.Wings.Enums
|
||||||
@using Moonlight.App.Repositories
|
@using Moonlight.App.Repositories
|
||||||
@using Moonlight.App.Services
|
@using Moonlight.App.Services
|
||||||
@using Moonlight.Shared.Components.Xterm
|
@using Moonlight.Shared.Components.Xterm
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
{
|
{
|
||||||
if (NodeOnline)
|
if (NodeOnline)
|
||||||
{
|
{
|
||||||
if (Console.ConnectionState == ConnectionState.Connected)
|
if (Console.ConsoleState == ConsoleState.Connected)
|
||||||
{
|
{
|
||||||
if (Console.ServerState == ServerState.Installing)
|
if (Console.ServerState == ServerState.Installing)
|
||||||
{
|
{
|
||||||
@@ -179,7 +179,7 @@
|
|||||||
[Parameter]
|
[Parameter]
|
||||||
public string? Route { get; set; }
|
public string? Route { get; set; }
|
||||||
|
|
||||||
private PteroConsole? Console;
|
private WingsConsole? Console;
|
||||||
private Server? CurrentServer;
|
private Server? CurrentServer;
|
||||||
private Node Node;
|
private Node Node;
|
||||||
private bool NodeOnline = false;
|
private bool NodeOnline = false;
|
||||||
@@ -193,11 +193,11 @@
|
|||||||
{
|
{
|
||||||
Console = new();
|
Console = new();
|
||||||
|
|
||||||
Console.OnConnectionStateUpdated += (_, _) => { InvokeAsync(StateHasChanged); };
|
Console.OnConsoleStateUpdated += (_, _) => { InvokeAsync(StateHasChanged); };
|
||||||
Console.OnServerResourceUpdated += async (_, _) => { await InvokeAsync(StateHasChanged); };
|
Console.OnResourceUpdated += (_, _) => { InvokeAsync(StateHasChanged); };
|
||||||
Console.OnServerStateUpdated += async (_, _) => { await InvokeAsync(StateHasChanged); };
|
Console.OnServerStateUpdated += (_, _) => { InvokeAsync(StateHasChanged); };
|
||||||
|
|
||||||
Console.RequestToken += (_) => WingsConsoleHelper.GenerateToken(CurrentServer!);
|
Console.OnRequestNewToken += async _ => await WingsConsoleHelper.GenerateToken(CurrentServer!);
|
||||||
|
|
||||||
Console.OnMessage += async (_, s) =>
|
Console.OnMessage += async (_, s) =>
|
||||||
{
|
{
|
||||||
@@ -205,7 +205,10 @@
|
|||||||
{
|
{
|
||||||
if (InstallConsole != null)
|
if (InstallConsole != null)
|
||||||
{
|
{
|
||||||
await InstallConsole.WriteLine(s);
|
if (s.IsInternal)
|
||||||
|
await InstallConsole.WriteLine("\x1b[38;5;16;48;5;135m\x1b[39m\x1b[1m Moonlight \x1b[0m " + s.Content + "\x1b[0m");
|
||||||
|
else
|
||||||
|
await InstallConsole.WriteLine(s.Content);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -280,7 +283,7 @@
|
|||||||
|
|
||||||
await lazyLoader.SetText("Connecting to console");
|
await lazyLoader.SetText("Connecting to console");
|
||||||
|
|
||||||
await WingsConsoleHelper.ConnectWings(Console!, CurrentServer);
|
await ReconnectConsole();
|
||||||
|
|
||||||
await Event.On<Server>($"server.{CurrentServer.Uuid}.installComplete", this, server =>
|
await Event.On<Server>($"server.{CurrentServer.Uuid}.installComplete", this, server =>
|
||||||
{
|
{
|
||||||
@@ -296,11 +299,22 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private async Task ReconnectConsole()
|
||||||
|
{
|
||||||
|
await Console!.Disconnect();
|
||||||
|
await WingsConsoleHelper.ConnectWings(Console!, CurrentServer!);
|
||||||
|
}
|
||||||
|
|
||||||
public async void Dispose()
|
public async void Dispose()
|
||||||
{
|
{
|
||||||
if (CurrentServer != null)
|
if (CurrentServer != null)
|
||||||
{
|
{
|
||||||
await Event.Off($"server.{CurrentServer.Uuid}.installComplete", this);
|
await Event.Off($"server.{CurrentServer.Uuid}.installComplete", this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (Console != null)
|
||||||
|
{
|
||||||
|
Console.Dispose();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
@page "/servers"
|
@page "/servers"
|
||||||
@using Moonlight.App.Services.Sessions
|
|
||||||
@using Moonlight.App.Repositories.Servers
|
@using Moonlight.App.Repositories.Servers
|
||||||
@using Microsoft.EntityFrameworkCore
|
@using Microsoft.EntityFrameworkCore
|
||||||
@using Moonlight.App.Database.Entities
|
@using Moonlight.App.Database.Entities
|
||||||
@@ -9,9 +8,97 @@
|
|||||||
@inject IServiceScopeFactory ServiceScopeFactory
|
@inject IServiceScopeFactory ServiceScopeFactory
|
||||||
|
|
||||||
<LazyLoader Load="Load">
|
<LazyLoader Load="Load">
|
||||||
@if (AllServers.Any())
|
@if (AllServers.Any())
|
||||||
|
{
|
||||||
|
if (UseSortedServerView)
|
||||||
{
|
{
|
||||||
@foreach (var server in AllServers)
|
var groupedServers = AllServers
|
||||||
|
.OrderBy(x => x.Name)
|
||||||
|
.GroupBy(x => x.Image.Name);
|
||||||
|
|
||||||
|
foreach (var groupedServer in groupedServers)
|
||||||
|
{
|
||||||
|
<div class="separator separator-content my-15">@(groupedServer.Key)</div>
|
||||||
|
<div class="card card-body bg-secondary py-0 my-0 mx-0 px-0">
|
||||||
|
@foreach (var server in groupedServer)
|
||||||
|
{
|
||||||
|
<div class="row mx-4 my-4">
|
||||||
|
<a class="card card-body" href="/server/@(server.Uuid)">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col">
|
||||||
|
<div class="d-flex align-items-center">
|
||||||
|
<div class="symbol symbol-50px me-3">
|
||||||
|
<i class="bx bx-md bx-server"></i>
|
||||||
|
</div>
|
||||||
|
<div class="d-flex justify-content-start flex-column">
|
||||||
|
<a href="/server/@(server.Uuid)" class="text-gray-800 text-hover-primary mb-1 fs-5">
|
||||||
|
@(server.Name)
|
||||||
|
</a>
|
||||||
|
<span class="text-gray-400 fw-semibold d-block fs-6">
|
||||||
|
@(Math.Round(server.Memory / 1024D, 2)) GB / @(Math.Round(server.Disk / 1024D, 2)) GB / @(server.Node.Name) <span class="text-gray-700">- @(server.Image.Name)</span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="d-none d-sm-block col my-auto fs-6">
|
||||||
|
@(server.Node.Fqdn):@(server.MainAllocation.Port)
|
||||||
|
</div>
|
||||||
|
<div class="d-none d-sm-block col my-auto fs-6">
|
||||||
|
@if (StatusCache.ContainsKey(server))
|
||||||
|
{
|
||||||
|
var status = StatusCache[server];
|
||||||
|
|
||||||
|
switch (status)
|
||||||
|
{
|
||||||
|
case "offline":
|
||||||
|
<span class="text-danger">
|
||||||
|
<TL>Offline</TL>
|
||||||
|
</span>
|
||||||
|
break;
|
||||||
|
case "stopping":
|
||||||
|
<span class="text-warning">
|
||||||
|
<TL>Stopping</TL>
|
||||||
|
</span>
|
||||||
|
break;
|
||||||
|
case "starting":
|
||||||
|
<span class="text-warning">
|
||||||
|
<TL>Starting</TL>
|
||||||
|
</span>
|
||||||
|
break;
|
||||||
|
case "running":
|
||||||
|
<span class="text-success">
|
||||||
|
<TL>Running</TL>
|
||||||
|
</span>
|
||||||
|
break;
|
||||||
|
case "failed":
|
||||||
|
<span class="text-gray-400">
|
||||||
|
<TL>Failed</TL>
|
||||||
|
</span>
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
<span class="text-danger">
|
||||||
|
<TL>Offline</TL>
|
||||||
|
</span>
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
<span class="text-gray-400">
|
||||||
|
<TL>Loading</TL>
|
||||||
|
</span>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
foreach (var server in AllServers)
|
||||||
{
|
{
|
||||||
<div class="row px-5 mb-5">
|
<div class="row px-5 mb-5">
|
||||||
<a class="card card-body" href="/server/@(server.Uuid)">
|
<a class="card card-body" href="/server/@(server.Uuid)">
|
||||||
@@ -42,28 +129,42 @@
|
|||||||
switch (status)
|
switch (status)
|
||||||
{
|
{
|
||||||
case "offline":
|
case "offline":
|
||||||
<span class="text-danger"><TL>Offline</TL></span>
|
<span class="text-danger">
|
||||||
|
<TL>Offline</TL>
|
||||||
|
</span>
|
||||||
break;
|
break;
|
||||||
case "stopping":
|
case "stopping":
|
||||||
<span class="text-warning"><TL>Stopping</TL></span>
|
<span class="text-warning">
|
||||||
|
<TL>Stopping</TL>
|
||||||
|
</span>
|
||||||
break;
|
break;
|
||||||
case "starting":
|
case "starting":
|
||||||
<span class="text-warning"><TL>Starting</TL></span>
|
<span class="text-warning">
|
||||||
|
<TL>Starting</TL>
|
||||||
|
</span>
|
||||||
break;
|
break;
|
||||||
case "running":
|
case "running":
|
||||||
<span class="text-success"><TL>Running</TL></span>
|
<span class="text-success">
|
||||||
|
<TL>Running</TL>
|
||||||
|
</span>
|
||||||
break;
|
break;
|
||||||
case "failed":
|
case "failed":
|
||||||
<span class="text-gray-400"><TL>Failed</TL></span>
|
<span class="text-gray-400">
|
||||||
|
<TL>Failed</TL>
|
||||||
|
</span>
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
<span class="text-danger"><TL>Offline</TL></span>
|
<span class="text-danger">
|
||||||
|
<TL>Offline</TL>
|
||||||
|
</span>
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
<span class="text-gray-400"><TL>Loading</TL></span>
|
<span class="text-gray-400">
|
||||||
|
<TL>Loading</TL>
|
||||||
|
</span>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -71,19 +172,41 @@
|
|||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
}
|
||||||
{
|
else
|
||||||
<div class="alert bg-info d-flex flex-column flex-sm-row w-100 p-5">
|
{
|
||||||
<div class="d-flex flex-column pe-0 pe-sm-10">
|
<div class="alert bg-info d-flex flex-column flex-sm-row w-100 p-5">
|
||||||
<h4 class="fw-semibold">
|
<div class="d-flex flex-column pe-0 pe-sm-10">
|
||||||
<TL>You have no servers</TL>
|
<h4 class="fw-semibold">
|
||||||
</h4>
|
<TL>You have no servers</TL>
|
||||||
<span>
|
</h4>
|
||||||
<TL>We were not able to find any servers associated with your account</TL>
|
<span>
|
||||||
</span>
|
<TL>We were not able to find any servers associated with your account</TL>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
|
||||||
|
<div class="row mt-7 px-3">
|
||||||
|
<div class="card">
|
||||||
|
<div class="card-header">
|
||||||
|
<div class="card-title">
|
||||||
|
<span class="badge badge-primary badge-lg">Beta</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
}
|
<div class="card-body">
|
||||||
|
<div class="row">
|
||||||
|
<label class="col-lg-4 col-form-label fw-semibold fs-6">Sorted server view</label>
|
||||||
|
<div class="col-lg-8 d-flex align-items-center">
|
||||||
|
<div class="form-check form-check-solid form-switch form-check-custom fv-row">
|
||||||
|
<input class="form-check-input w-45px h-30px" type="checkbox" id="sortedServerView" @bind="UseSortedServerView">
|
||||||
|
<label class="form-check-label" for="sortedServerView"></label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</LazyLoader>
|
</LazyLoader>
|
||||||
|
|
||||||
@code
|
@code
|
||||||
@@ -94,6 +217,8 @@
|
|||||||
private Server[] AllServers;
|
private Server[] AllServers;
|
||||||
private readonly Dictionary<Server, string> StatusCache = new();
|
private readonly Dictionary<Server, string> StatusCache = new();
|
||||||
|
|
||||||
|
private bool UseSortedServerView = false;
|
||||||
|
|
||||||
private Task Load(LazyLoader arg)
|
private Task Load(LazyLoader arg)
|
||||||
{
|
{
|
||||||
AllServers = ServerRepository
|
AllServers = ServerRepository
|
||||||
@@ -127,7 +252,7 @@
|
|||||||
return Task.CompletedTask;
|
return Task.CompletedTask;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AddStatus(App.Database.Entities.Server server, string status)
|
private void AddStatus(Server server, string status)
|
||||||
{
|
{
|
||||||
lock (StatusCache)
|
lock (StatusCache)
|
||||||
{
|
{
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user