mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
* Lots of cleanup on the warnings in the solution. Deprecated IsLastWriteLessThan and made a new method HasFileBeenModifiedSince. * Added some tests for the new extension method. * Changed filter import to use correct import * Scan Series now uses Refresh Metadata for Series, rather than library one. * Fixed an issue where cover generation wasn't properly taking forced update into consideration. Removed a case of cover generation for no reason. * Fixed series downloads not triggering backend call
163 lines
5.7 KiB
C#
163 lines
5.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net.Http;
|
|
using System.Threading.Tasks;
|
|
using API.DTOs.Update;
|
|
using API.Interfaces.Services;
|
|
using API.SignalR;
|
|
using API.SignalR.Presence;
|
|
using Flurl.Http;
|
|
using Flurl.Http.Configuration;
|
|
using Kavita.Common.EnvironmentInfo;
|
|
using MarkdownDeep;
|
|
using Microsoft.AspNetCore.SignalR;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace API.Services.Tasks
|
|
{
|
|
internal class GithubReleaseMetadata
|
|
{
|
|
/// <summary>
|
|
/// Name of the Tag
|
|
/// <example>v0.4.3</example>
|
|
/// </summary>
|
|
public string Tag_Name { get; init; }
|
|
/// <summary>
|
|
/// Name of the Release
|
|
/// </summary>
|
|
public string Name { get; init; }
|
|
/// <summary>
|
|
/// Body of the Release
|
|
/// </summary>
|
|
public string Body { get; init; }
|
|
/// <summary>
|
|
/// Url of the release on Github
|
|
/// </summary>
|
|
public string Html_Url { get; init; }
|
|
}
|
|
|
|
public class UntrustedCertClientFactory : DefaultHttpClientFactory
|
|
{
|
|
public override HttpMessageHandler CreateMessageHandler() {
|
|
return new HttpClientHandler {
|
|
ServerCertificateCustomValidationCallback = (_, _, _, _) => true
|
|
};
|
|
}
|
|
}
|
|
|
|
public class VersionUpdaterService : IVersionUpdaterService
|
|
{
|
|
private readonly ILogger<VersionUpdaterService> _logger;
|
|
private readonly IHubContext<MessageHub> _messageHub;
|
|
private readonly IPresenceTracker _tracker;
|
|
private readonly Markdown _markdown = new MarkdownDeep.Markdown();
|
|
private static readonly string GithubLatestReleasesUrl = "https://api.github.com/repos/Kareadita/Kavita/releases/latest";
|
|
private static readonly string GithubAllReleasesUrl = "https://api.github.com/repos/Kareadita/Kavita/releases";
|
|
|
|
public VersionUpdaterService(ILogger<VersionUpdaterService> logger, IHubContext<MessageHub> messageHub, IPresenceTracker tracker)
|
|
{
|
|
_logger = logger;
|
|
_messageHub = messageHub;
|
|
_tracker = tracker;
|
|
|
|
FlurlHttp.ConfigureClient(GithubLatestReleasesUrl, cli =>
|
|
cli.Settings.HttpClientFactory = new UntrustedCertClientFactory());
|
|
FlurlHttp.ConfigureClient(GithubAllReleasesUrl, cli =>
|
|
cli.Settings.HttpClientFactory = new UntrustedCertClientFactory());
|
|
}
|
|
|
|
/// <summary>
|
|
/// Fetches the latest release from Github
|
|
/// </summary>
|
|
public async Task<UpdateNotificationDto> CheckForUpdate()
|
|
{
|
|
var update = await GetGithubRelease();
|
|
return CreateDto(update);
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public async Task<IEnumerable<UpdateNotificationDto>> GetAllReleases()
|
|
{
|
|
var updates = await GetGithubReleases();
|
|
return updates.Select(CreateDto);
|
|
}
|
|
|
|
private UpdateNotificationDto CreateDto(GithubReleaseMetadata update)
|
|
{
|
|
if (update == null || string.IsNullOrEmpty(update.Tag_Name)) return null;
|
|
var version = update.Tag_Name.Replace("v", string.Empty);
|
|
var updateVersion = new Version(version);
|
|
|
|
return new UpdateNotificationDto()
|
|
{
|
|
CurrentVersion = version,
|
|
UpdateVersion = updateVersion.ToString(),
|
|
UpdateBody = _markdown.Transform(update.Body.Trim()),
|
|
UpdateTitle = update.Name,
|
|
UpdateUrl = update.Html_Url,
|
|
IsDocker = new OsInfo(Array.Empty<IOsVersionAdapter>()).IsDocker
|
|
};
|
|
}
|
|
|
|
public async Task PushUpdate(UpdateNotificationDto update)
|
|
{
|
|
if (update == null) return;
|
|
|
|
var admins = await _tracker.GetOnlineAdmins();
|
|
var updateVersion = new Version(update.CurrentVersion);
|
|
|
|
if (BuildInfo.Version < updateVersion)
|
|
{
|
|
_logger.LogInformation("Server is out of date. Current: {CurrentVersion}. Available: {AvailableUpdate}", BuildInfo.Version, updateVersion);
|
|
await SendEvent(update, admins);
|
|
}
|
|
else if (Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT") == Environments.Development)
|
|
{
|
|
_logger.LogInformation("Server is up to date. Current: {CurrentVersion}", BuildInfo.Version);
|
|
await SendEvent(update, admins);
|
|
}
|
|
}
|
|
|
|
private async Task SendEvent(UpdateNotificationDto update, IReadOnlyList<string> admins)
|
|
{
|
|
var connections = new List<string>();
|
|
foreach (var admin in admins)
|
|
{
|
|
connections.AddRange(await _tracker.GetConnectionsForUser(admin));
|
|
}
|
|
|
|
await _messageHub.Clients.Users(admins).SendAsync("UpdateAvailable", new SignalRMessage
|
|
{
|
|
Name = "UpdateAvailable",
|
|
Body = update
|
|
});
|
|
}
|
|
|
|
|
|
private static async Task<GithubReleaseMetadata> GetGithubRelease()
|
|
{
|
|
var update = await GithubLatestReleasesUrl
|
|
.WithHeader("Accept", "application/json")
|
|
.WithHeader("User-Agent", "Kavita")
|
|
.GetJsonAsync<GithubReleaseMetadata>();
|
|
|
|
return update;
|
|
}
|
|
|
|
private static async Task<IEnumerable<GithubReleaseMetadata>> GetGithubReleases()
|
|
{
|
|
var update = await GithubAllReleasesUrl
|
|
.WithHeader("Accept", "application/json")
|
|
.WithHeader("User-Agent", "Kavita")
|
|
.GetJsonAsync<IEnumerable<GithubReleaseMetadata>>();
|
|
|
|
return update;
|
|
}
|
|
}
|
|
}
|