♻️ rename occurrences of debridlinkfr to debridlink

This commit is contained in:
Wald764 2025-02-02 17:19:41 +01:00
parent d6d1813340
commit 20fbf8833a
5 changed files with 14 additions and 14 deletions

View file

@ -38,7 +38,7 @@ export class NavbarComponent implements OnInit {
case 'TorBox':
this.providerLink = 'https://torbox.app/';
break;
case 'DebridLinkFr':
case 'DebridLink':
this.providerLink = 'https://debrid-link.com/';
break;
}

View file

@ -16,6 +16,6 @@ public enum Provider
[Description("TorBox")]
TorBox,
[Description("DebridLinkFr")]
DebridLinkFr
[Description("DebridLink")]
DebridLink
}

View file

@ -27,7 +27,7 @@ public static class DiConfig
services.AddScoped<TorBoxTorrentClient>();
services.AddScoped<Torrents>();
services.AddScoped<TorrentRunner>();
services.AddScoped<DebridLinkFrClient>();
services.AddScoped<DebridLinkClient>();
services.AddSingleton<IAuthorizationHandler, AuthSettingHandler>();

View file

@ -9,12 +9,12 @@ using System.Web;
namespace RdtClient.Service.Services.TorrentClients;
public class DebridLinkFrClient : ITorrentClient
public class DebridLinkClient : ITorrentClient
{
private readonly ILogger<DebridLinkFrClient> _logger;
private readonly ILogger<DebridLinkClient> _logger;
private readonly IHttpClientFactory _httpClientFactory;
public DebridLinkFrClient(ILogger<DebridLinkFrClient> logger, IHttpClientFactory httpClientFactory)
public DebridLinkClient(ILogger<DebridLinkClient> logger, IHttpClientFactory httpClientFactory)
{
_logger = logger;
_httpClientFactory = httpClientFactory;
@ -34,28 +34,28 @@ public class DebridLinkFrClient : ITorrentClient
var httpClient = _httpClientFactory.CreateClient();
httpClient.Timeout = TimeSpan.FromSeconds(Settings.Get.Provider.Timeout);
var debridLinkFrClient = new DebridLinkFrNETClient(apiKey, httpClient);
var DebridLinkClient = new DebridLinkFrNETClient(apiKey, httpClient);
return debridLinkFrClient;
return DebridLinkClient;
}
catch (AggregateException ae)
{
foreach (var inner in ae.InnerExceptions)
{
_logger.LogError(inner, $"The connection to DebridLinkFr has failed: {inner.Message}");
_logger.LogError(inner, $"The connection to DebridLink has failed: {inner.Message}");
}
throw;
}
catch (TaskCanceledException ex) when (ex.InnerException is TimeoutException)
{
_logger.LogError(ex, $"The connection to DebridLinkFr has timed out: {ex.Message}");
_logger.LogError(ex, $"The connection to DebridLink has timed out: {ex.Message}");
throw;
}
catch (TaskCanceledException ex)
{
_logger.LogError(ex, $"The connection to DebridLinkFr has timed out: {ex.Message}");
_logger.LogError(ex, $"The connection to DebridLink has timed out: {ex.Message}");
throw;
}

View file

@ -23,7 +23,7 @@ public class Torrents(
AllDebridTorrentClient allDebridTorrentClient,
PremiumizeTorrentClient premiumizeTorrentClient,
RealDebridTorrentClient realDebridTorrentClient,
DebridLinkFrClient debridLinkFrClient,
DebridLinkClient DebridLinkClient,
TorBoxTorrentClient torBoxTorrentClient)
{
private static readonly SemaphoreSlim RealDebridUpdateLock = new(1, 1);
@ -42,7 +42,7 @@ public class Torrents(
Provider.Premiumize => premiumizeTorrentClient,
Provider.RealDebrid => realDebridTorrentClient,
Provider.AllDebrid => allDebridTorrentClient,
Provider.DebridLinkFr => debridLinkFrClient,
Provider.DebridLink => DebridLinkClient,
Provider.TorBox => torBoxTorrentClient,
_ => throw new("Invalid Provider")
};