mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
28 lines
949 B
C#
28 lines
949 B
C#
#nullable disable
|
|
using System.Net.Http.Json;
|
|
|
|
namespace NadekoBot.Modules.Nsfw.Common;
|
|
|
|
public sealed class YandereImageDownloader : ImageDownloader<DapiImageObject>
|
|
{
|
|
private readonly string _baseUrl;
|
|
|
|
public YandereImageDownloader(HttpClient http)
|
|
: base(Booru.Yandere, http)
|
|
=> _baseUrl = "https://yande.re";
|
|
|
|
public override async Task<List<DapiImageObject>> DownloadImagesAsync(
|
|
string[] tags,
|
|
int page,
|
|
bool isExplicit = false,
|
|
CancellationToken cancel = default)
|
|
{
|
|
var tagString = ImageDownloaderHelper.GetTagString(tags, isExplicit);
|
|
|
|
var uri = $"{_baseUrl}/post.json?limit=200&tags={tagString}&page={page}";
|
|
var imageObjects = await _http.GetFromJsonAsync<DapiImageObject[]>(uri, _serializerOptions, cancel);
|
|
if (imageObjects is null)
|
|
return new();
|
|
return imageObjects.Where(x => x.FileUrl is not null).ToList();
|
|
}
|
|
} |