Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update AniDB CDN url and move all URLs to https #73

Merged
merged 1 commit into from
May 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Jellyfin.Plugin.Anime/Providers/AniDB/AniDbExternalId.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ public string Key
=> ProviderNames.AniDb;

public string UrlFormatString
=> "http://anidb.net/perl-bin/animedb.pl?show=anime&aid={0}";
=> "https://anidb.net/perl-bin/animedb.pl?show=anime&aid={0}";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class AniDbTitleDownloader : IAniDbTitleDownloader
/// <summary>
/// The URL for retrieving a list of all anime titles and their AniDB IDs.
/// </summary>
private const string TitlesUrl = "http://anidb.net/api/anime-titles.xml.gz";
private const string TitlesUrl = "https://anidb.net/api/anime-titles.xml.gz";

private static readonly HttpClient _httpClient;
private readonly ILogger _logger;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ private async Task<string> FindImageUrl(string seriesDataPath)
{
if (reader.NodeType == XmlNodeType.Element && reader.Name == "picture")
{
return "http://img7.anidb.net/pics/anime/" + reader.ReadElementContentAsString();
return "https://cdn.anidb.net/images/main/" + reader.ReadElementContentAsString();
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ namespace Jellyfin.Plugin.Anime.Providers.AniDB.Metadata
public class AniDbSeriesProvider : IRemoteMetadataProvider<Series, SeriesInfo>, IHasOrder
{
private const string SeriesDataFile = "series.xml";
private const string SeriesQueryUrl = "http://api.anidb.net:9001/httpapi?request=anime&client={0}&clientver=1&protover=1&aid={1}";
private const string SeriesQueryUrl = "https://api.anidb.net:9001/httpapi?request=anime&client={0}&clientver=1&protover=1&aid={1}";
private const string ClientName = "mediabrowser";

// AniDB has very low request rate limits, a minimum of 2 seconds between requests, and an average of 4 seconds between requests
public static readonly RateLimiter RequestLimiter = new RateLimiter(TimeSpan.FromSeconds(3), TimeSpan.FromSeconds(5), TimeSpan.FromMinutes(5));
private static readonly int[] IgnoredTagIds = { 6, 22, 23, 60, 128, 129, 185, 216, 242, 255, 268, 269, 289 };
private static readonly Regex AniDbUrlRegex = new Regex(@"http://anidb.net/\w+ \[(?<name>[^\]]*)\]");
private static readonly Regex AniDbUrlRegex = new Regex(@"https?://anidb.net/\w+ \[(?<name>[^\]]*)\]");
private readonly IApplicationPaths _appPaths;
private readonly IHttpClient _httpClient;

Expand Down Expand Up @@ -711,7 +711,7 @@ private static IEnumerable<AniDbPersonInfo> ParseCharacterList(string xml)
var picture = seiyuu.Attribute("picture");
if (picture != null && !string.IsNullOrEmpty(picture.Value))
{
person.Image = "http://img7.anidb.net/pics/anime/" + picture.Value;
person.Image = "https://cdn.anidb.net/images/main/" + picture.Value;
}

var id = seiyuu.Attribute("id");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ public string Key
=> ProviderNames.AniList;

public string UrlFormatString
=> "http://anilist.co/anime/{0}/";
=> "https://anilist.co/anime/{0}/";
}
}
2 changes: 1 addition & 1 deletion Jellyfin.Plugin.Anime/Providers/AniSearch/AniSearchApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
namespace Jellyfin.Plugin.Anime.Providers.AniSearch
{
/// <summary>
/// API for http://anisearch.com
/// API for https://anisearch.com
/// Anisearch does not have an API interface to work with
/// </summary>
internal class AniSearchApi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ public string Key
=> ProviderNames.AniSearch;

public string UrlFormatString
=> "http://www.anisearch.com/anime/{0}";
=> "https://www.anisearch.com/anime/{0}";
}
}