2024-03-25 14:46:45 +00:00
|
|
|
|
using CodexOpenApi;
|
|
|
|
|
using Core;
|
2023-09-11 09:59:33 +00:00
|
|
|
|
using KubernetesWorkflow;
|
2023-11-12 09:07:23 +00:00
|
|
|
|
using KubernetesWorkflow.Types;
|
2023-10-19 09:18:59 +00:00
|
|
|
|
using Utils;
|
2023-04-12 11:53:55 +00:00
|
|
|
|
|
2023-09-11 09:59:33 +00:00
|
|
|
|
namespace CodexPlugin
|
2023-04-12 11:53:55 +00:00
|
|
|
|
{
|
2023-08-15 09:01:18 +00:00
|
|
|
|
public class CodexAccess : ILogHandler
|
2023-04-12 11:53:55 +00:00
|
|
|
|
{
|
2023-09-12 08:31:55 +00:00
|
|
|
|
private readonly IPluginTools tools;
|
2024-03-26 07:58:16 +00:00
|
|
|
|
private readonly Mapper mapper = new Mapper();
|
2023-08-15 09:01:18 +00:00
|
|
|
|
private bool hasContainerCrashed;
|
2023-04-30 08:08:32 +00:00
|
|
|
|
|
2023-09-20 10:55:09 +00:00
|
|
|
|
public CodexAccess(IPluginTools tools, RunningContainer container, CrashWatcher crashWatcher)
|
2023-04-12 11:53:55 +00:00
|
|
|
|
{
|
2023-09-12 08:31:55 +00:00
|
|
|
|
this.tools = tools;
|
2023-06-29 14:07:49 +00:00
|
|
|
|
Container = container;
|
2023-09-20 10:55:09 +00:00
|
|
|
|
CrashWatcher = crashWatcher;
|
2023-08-15 09:01:18 +00:00
|
|
|
|
hasContainerCrashed = false;
|
|
|
|
|
|
2023-09-20 10:55:09 +00:00
|
|
|
|
CrashWatcher.Start(this);
|
2023-04-18 13:33:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-06-21 06:28:40 +00:00
|
|
|
|
public RunningContainer Container { get; }
|
2023-09-20 10:55:09 +00:00
|
|
|
|
public CrashWatcher CrashWatcher { get; }
|
2023-05-11 10:44:53 +00:00
|
|
|
|
|
2024-03-26 07:58:16 +00:00
|
|
|
|
public DebugInfo GetDebugInfo()
|
2023-05-04 09:34:43 +00:00
|
|
|
|
{
|
2024-03-26 07:58:16 +00:00
|
|
|
|
return Map(OnCodex(api => api.GetDebugInfoAsync()));
|
2023-06-29 14:07:49 +00:00
|
|
|
|
}
|
2023-05-04 09:34:43 +00:00
|
|
|
|
|
2024-03-26 09:31:49 +00:00
|
|
|
|
public DebugPeer GetDebugPeer(string peerId)
|
2023-06-29 14:07:49 +00:00
|
|
|
|
{
|
2024-03-26 09:31:49 +00:00
|
|
|
|
// Cannot use openAPI: debug/peer endpoint is not specified there.
|
2024-03-26 10:39:59 +00:00
|
|
|
|
var endpoint = GetEndpoint();
|
|
|
|
|
var str = endpoint.HttpGetString($"debug/peer/{peerId}");
|
2023-06-29 14:07:49 +00:00
|
|
|
|
|
|
|
|
|
if (str.ToLowerInvariant() == "unable to find peer!")
|
2023-05-04 09:34:43 +00:00
|
|
|
|
{
|
2024-03-26 09:31:49 +00:00
|
|
|
|
return new DebugPeer
|
2023-06-29 14:07:49 +00:00
|
|
|
|
{
|
|
|
|
|
IsPeerFound = false
|
|
|
|
|
};
|
2023-05-04 09:34:43 +00:00
|
|
|
|
}
|
2023-06-29 14:07:49 +00:00
|
|
|
|
|
2024-03-26 10:39:59 +00:00
|
|
|
|
var result = endpoint.Deserialize<DebugPeer>(str);
|
2023-06-29 14:07:49 +00:00
|
|
|
|
result.IsPeerFound = true;
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-26 11:14:02 +00:00
|
|
|
|
public void ConnectToPeer(string peerId, string[] peerMultiAddresses)
|
|
|
|
|
{
|
|
|
|
|
OnCodex(api =>
|
|
|
|
|
{
|
|
|
|
|
Time.Wait(api.ConnectPeerAsync(peerId, peerMultiAddresses));
|
|
|
|
|
return Task.FromResult(string.Empty);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-29 14:07:49 +00:00
|
|
|
|
public string UploadFile(FileStream fileStream)
|
|
|
|
|
{
|
2024-03-26 10:39:59 +00:00
|
|
|
|
return OnCodex(api => api.UploadAsync(fileStream));
|
2023-06-29 14:07:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Stream DownloadFile(string contentId)
|
|
|
|
|
{
|
2024-03-26 10:39:59 +00:00
|
|
|
|
var fileResponse = OnCodex(api => api.DownloadNetworkAsync(contentId));
|
|
|
|
|
if (fileResponse.StatusCode != 200) throw new Exception("Download failed with StatusCode: " + fileResponse.StatusCode);
|
|
|
|
|
return fileResponse.Stream;
|
2023-11-10 07:20:08 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-03-26 10:39:59 +00:00
|
|
|
|
public LocalDataset[] LocalFiles()
|
2023-11-10 07:20:08 +00:00
|
|
|
|
{
|
2024-03-26 10:39:59 +00:00
|
|
|
|
return Map(OnCodex(api => api.ListDataAsync()));
|
2023-06-29 14:07:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-03-26 10:39:59 +00:00
|
|
|
|
public StorageAvailability SalesAvailability(StorageAvailability request)
|
2023-06-29 14:07:49 +00:00
|
|
|
|
{
|
2024-03-26 10:39:59 +00:00
|
|
|
|
var body = Map(request);
|
|
|
|
|
var read = OnCodex<SalesAvailabilityREAD>(api => api.OfferStorageAsync(body));
|
|
|
|
|
return Map(read);
|
2023-06-29 14:07:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-03-26 10:39:59 +00:00
|
|
|
|
public string RequestStorage(StoragePurchaseRequest request)
|
2023-06-29 14:07:49 +00:00
|
|
|
|
{
|
2024-03-26 10:39:59 +00:00
|
|
|
|
var body = Map(request);
|
2024-03-26 11:23:38 +00:00
|
|
|
|
throw new Exception("todo");
|
2024-03-26 10:39:59 +00:00
|
|
|
|
var read = ""; /* fix incoming*/ OnCodex<string>(api => api.CreateStorageRequestAsync(request.ContentId.Id, body));
|
|
|
|
|
return read;
|
2023-06-29 14:07:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-03-26 11:23:38 +00:00
|
|
|
|
public StoragePurchase GetPurchaseStatus(string purchaseId)
|
2023-06-29 14:07:49 +00:00
|
|
|
|
{
|
2024-03-26 10:39:59 +00:00
|
|
|
|
return Map(OnCodex(api => api.GetPurchaseAsync(purchaseId)));
|
2023-06-29 14:07:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-08-24 09:32:32 +00:00
|
|
|
|
public string GetName()
|
|
|
|
|
{
|
|
|
|
|
return Container.Name;
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-06 13:33:47 +00:00
|
|
|
|
public PodInfo GetPodInfo()
|
|
|
|
|
{
|
|
|
|
|
var workflow = tools.CreateWorkflow();
|
|
|
|
|
return workflow.GetPodInfo(Container);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-26 07:58:16 +00:00
|
|
|
|
private dynamic Map(dynamic input)
|
|
|
|
|
{
|
|
|
|
|
return mapper.Map(input);
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-25 14:46:45 +00:00
|
|
|
|
private T OnCodex<T>(Func<CodexApi, Task<T>> action)
|
2023-06-29 14:07:49 +00:00
|
|
|
|
{
|
2024-03-25 10:37:41 +00:00
|
|
|
|
var address = GetAddress();
|
2024-03-26 09:31:49 +00:00
|
|
|
|
var result = tools.CreateHttp(CheckContainerCrashed)
|
|
|
|
|
.OnClient(client =>
|
2024-03-25 14:46:45 +00:00
|
|
|
|
{
|
|
|
|
|
var api = new CodexApi(client);
|
|
|
|
|
api.BaseUrl = $"{address.Host}:{address.Port}/api/codex/v1";
|
|
|
|
|
return Time.Wait(action(api));
|
|
|
|
|
});
|
|
|
|
|
return result;
|
|
|
|
|
}
|
2024-03-25 10:37:41 +00:00
|
|
|
|
|
2024-03-26 09:31:49 +00:00
|
|
|
|
private IEndpoint GetEndpoint()
|
|
|
|
|
{
|
|
|
|
|
return tools
|
|
|
|
|
.CreateHttp(CheckContainerCrashed)
|
|
|
|
|
.CreateEndpoint(GetAddress(), "/api/codex/v1/", Container.Name);
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-19 09:18:59 +00:00
|
|
|
|
private Address GetAddress()
|
|
|
|
|
{
|
2023-11-07 11:02:17 +00:00
|
|
|
|
return Container.GetAddress(tools.GetLog(), CodexContainerRecipe.ApiPortTag);
|
2023-10-10 16:08:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-08-29 08:09:48 +00:00
|
|
|
|
private void CheckContainerCrashed(HttpClient client)
|
2023-08-15 09:01:18 +00:00
|
|
|
|
{
|
|
|
|
|
if (hasContainerCrashed) throw new Exception("Container has crashed.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Log(Stream crashLog)
|
|
|
|
|
{
|
2023-09-12 08:31:55 +00:00
|
|
|
|
var log = tools.GetLog();
|
2023-08-15 09:01:18 +00:00
|
|
|
|
var file = log.CreateSubfile();
|
|
|
|
|
log.Log($"Container {Container.Name} has crashed. Downloading crash log to '{file.FullFilename}'...");
|
2023-10-16 09:19:57 +00:00
|
|
|
|
file.Write($"Container Crash Log for {Container.Name}.");
|
2023-08-15 09:01:18 +00:00
|
|
|
|
|
|
|
|
|
using var reader = new StreamReader(crashLog);
|
|
|
|
|
var line = reader.ReadLine();
|
|
|
|
|
while (line != null)
|
|
|
|
|
{
|
|
|
|
|
file.Write(line);
|
|
|
|
|
line = reader.ReadLine();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
log.Log("Crash log successfully downloaded.");
|
|
|
|
|
hasContainerCrashed = true;
|
|
|
|
|
}
|
2023-04-18 13:33:12 +00:00
|
|
|
|
}
|
2023-04-12 11:53:55 +00:00
|
|
|
|
}
|