mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
e815deba58
- Bump Telegram Bot Framework to 0.6.9-gf1e77653ff
28 lines
852 B
C#
28 lines
852 B
C#
using Newtonsoft.Json;
|
|
using Telegram.Bot.Types;
|
|
using West.TelegramBot.ContentStore.Model;
|
|
|
|
namespace West.TelegramBot.ContentStore.Service;
|
|
|
|
public class OBoobsService : IRandomMediaService
|
|
{
|
|
private readonly HttpClient _httpClient;
|
|
|
|
public OBoobsService()
|
|
{
|
|
_httpClient = new HttpClient
|
|
{
|
|
BaseAddress = new Uri("http://api.oboobs.ru")
|
|
};
|
|
}
|
|
|
|
public async Task<RandomMedia> GetRandomMediaAsync()
|
|
{
|
|
var httpResp = await _httpClient.GetAsync("boobs/1/1/random");
|
|
var boobsResponse = JsonConvert.DeserializeObject<List<OBoobsItem>>(await httpResp.Content.ReadAsStringAsync());
|
|
var boobsItem = boobsResponse[0];
|
|
var boobsId = boobsItem.Id.ToString("D5");
|
|
|
|
return new RandomMedia($"https://media.oboobs.ru/boobs/{boobsId}.jpg", boobsItem.Model);
|
|
}
|
|
} |