mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 20:24:16 +01:00
111 lines
4 KiB
C#
111 lines
4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Net.Http;
|
|
using System.Threading.Tasks;
|
|
|
|
using Dalamud.Logging.Internal;
|
|
using Dalamud.Plugin.Internal.Types;
|
|
using Dalamud.Utility;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Dalamud.Plugin.Internal
|
|
{
|
|
/// <summary>
|
|
/// This class represents a single plugin repository.
|
|
/// </summary>
|
|
internal partial class PluginRepository
|
|
{
|
|
// TODO: Change back to master after api4 release
|
|
private const string DalamudPluginsMasterUrl = "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api4/pluginmaster.json";
|
|
|
|
private static readonly ModuleLog Log = new("PLUGINR");
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="PluginRepository"/> class.
|
|
/// </summary>
|
|
/// <param name="pluginMasterUrl">The plugin master URL.</param>
|
|
/// <param name="isEnabled">Whether the plugin repo is enabled.</param>
|
|
public PluginRepository(string pluginMasterUrl, bool isEnabled)
|
|
{
|
|
this.PluginMasterUrl = pluginMasterUrl;
|
|
this.IsThirdParty = pluginMasterUrl != DalamudPluginsMasterUrl;
|
|
this.IsEnabled = isEnabled;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a new instance of the <see cref="PluginRepository"/> class for the main repo.
|
|
/// </summary>
|
|
public static PluginRepository MainRepo => new(DalamudPluginsMasterUrl, true);
|
|
|
|
/// <summary>
|
|
/// Gets the pluginmaster.json URL.
|
|
/// </summary>
|
|
public string PluginMasterUrl { get; }
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether this plugin repository is from a third party.
|
|
/// </summary>
|
|
public bool IsThirdParty { get; }
|
|
|
|
/// <summary>
|
|
/// Gets a value indicating whether this repo is enabled.
|
|
/// </summary>
|
|
public bool IsEnabled { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the plugin master list of available plugins.
|
|
/// </summary>
|
|
public ReadOnlyCollection<RemotePluginManifest>? PluginMaster { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Gets the initialization state of the plugin repository.
|
|
/// </summary>
|
|
public PluginRepositoryState State { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Reload the plugin master asynchronously in a task.
|
|
/// </summary>
|
|
/// <returns>The new state.</returns>
|
|
public async Task ReloadPluginMasterAsync()
|
|
{
|
|
this.State = PluginRepositoryState.InProgress;
|
|
this.PluginMaster = new List<RemotePluginManifest>().AsReadOnly();
|
|
|
|
try
|
|
{
|
|
Log.Information($"Fetching repo: {this.PluginMasterUrl}");
|
|
|
|
// ?ticks causes a cache invalidation. Get a fresh repo every time.
|
|
using var response = await Util.HttpClient.GetAsync(this.PluginMasterUrl + "?" + DateTime.Now.Ticks);
|
|
response.EnsureSuccessStatusCode();
|
|
|
|
var data = await response.Content.ReadAsStringAsync();
|
|
var pluginMaster = JsonConvert.DeserializeObject<List<RemotePluginManifest>>(data);
|
|
|
|
if (pluginMaster == null)
|
|
{
|
|
throw new Exception("Deserialized PluginMaster was null.");
|
|
}
|
|
|
|
pluginMaster.Sort((pm1, pm2) => pm1.Name.CompareTo(pm2.Name));
|
|
|
|
// Set the source for each remote manifest. Allows for checking if is 3rd party.
|
|
foreach (var manifest in pluginMaster)
|
|
{
|
|
manifest.SourceRepo = this;
|
|
}
|
|
|
|
this.PluginMaster = pluginMaster.AsReadOnly();
|
|
|
|
Log.Debug($"Successfully fetched repo: {this.PluginMasterUrl}");
|
|
this.State = PluginRepositoryState.Success;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Log.Error(ex, $"PluginMaster failed: {this.PluginMasterUrl}");
|
|
this.State = PluginRepositoryState.Fail;
|
|
}
|
|
}
|
|
}
|
|
}
|