Flow.Launcher/Flow.Launcher.Core/ExternalPlugins/PluginsManifest.cs

76 lines
2.9 KiB
C#
Raw Normal View History

2025-04-04 07:56:18 +00:00
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
2025-04-04 07:56:18 +00:00
using Flow.Launcher.Plugin;
using Flow.Launcher.Core.Plugin;
namespace Flow.Launcher.Core.ExternalPlugins
{
public static class PluginsManifest
{
2025-04-13 09:59:39 +00:00
private static readonly string ClassName = nameof(PluginsManifest);
private static readonly CommunityPluginStore mainPluginStore =
new("https://raw.githubusercontent.com/Flow-Launcher/Flow.Launcher.PluginsManifest/main/plugins.json",
"https://fastly.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@main/plugins.json",
"https://gcore.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@main/plugins.json",
"https://cdn.jsdelivr.net/gh/Flow-Launcher/Flow.Launcher.PluginsManifest@main/plugins.json");
private static readonly SemaphoreSlim manifestUpdateLock = new(1);
private static DateTime lastFetchedAt = DateTime.MinValue;
2025-04-04 07:56:18 +00:00
private static readonly TimeSpan fetchTimeout = TimeSpan.FromMinutes(2);
public static List<UserPlugin> UserPlugins { get; private set; }
2025-04-04 07:56:18 +00:00
public static async Task<bool> UpdateManifestAsync(bool usePrimaryUrlOnly = false, CancellationToken token = default)
{
bool lockAcquired = false;
try
{
await manifestUpdateLock.WaitAsync(token).ConfigureAwait(false);
lockAcquired = true;
2025-02-10 03:54:09 +00:00
if (UserPlugins == null || usePrimaryUrlOnly || DateTime.Now.Subtract(lastFetchedAt) >= fetchTimeout)
{
var results = await mainPluginStore.FetchAsync(token, usePrimaryUrlOnly).ConfigureAwait(false);
2025-02-10 03:54:09 +00:00
// If the results are empty, we shouldn't update the manifest because the results are invalid.
if (results.Count == 0)
return false;
2025-09-02 12:46:37 +00:00
var updatedPluginResults = new List<UserPlugin>();
for (int i = 0; i < results.Count; i++)
{
if (PluginManager.IsMinimumAppVersionSatisfied(results[i].Name, results[i].MinimumAppVersion))
2025-09-02 12:46:37 +00:00
updatedPluginResults.Add(results[i]);
2025-02-10 03:54:09 +00:00
}
2025-09-02 12:46:37 +00:00
UserPlugins = updatedPluginResults;
lastFetchedAt = DateTime.Now;
return true;
}
}
catch (OperationCanceledException)
{
// Ignored
}
catch (Exception e)
{
PublicApi.Instance.LogException(ClassName, "Http request failed", e);
}
finally
{
// Only release the lock if it was acquired
if (lockAcquired) manifestUpdateLock.Release();
}
2025-02-10 04:01:21 +00:00
return false;
}
}
}