mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-12 02:08:27 -04:00
360 lines
11 KiB
C#
360 lines
11 KiB
C#
#nullable disable
|
|
using Google;
|
|
using Google.Apis.Services;
|
|
using Google.Apis.Urlshortener.v1;
|
|
using Google.Apis.YouTube.v3;
|
|
using Newtonsoft.Json.Linq;
|
|
using System.Net;
|
|
using System.Text.RegularExpressions;
|
|
using System.Xml;
|
|
|
|
namespace NadekoBot.Services;
|
|
|
|
public class GoogleApiService : IGoogleApiService, INService
|
|
{
|
|
private static readonly Regex
|
|
_plRegex = new("(?:youtu\\.be\\/|list=)(?<id>[\\da-zA-Z\\-_]*)", RegexOptions.Compiled);
|
|
|
|
public IReadOnlyDictionary<string, string> Languages { get; } = new Dictionary<string, string>
|
|
{
|
|
{ "afrikaans", "af" },
|
|
{ "albanian", "sq" },
|
|
{ "arabic", "ar" },
|
|
{ "armenian", "hy" },
|
|
{ "azerbaijani", "az" },
|
|
{ "basque", "eu" },
|
|
{ "belarusian", "be" },
|
|
{ "bengali", "bn" },
|
|
{ "bulgarian", "bg" },
|
|
{ "catalan", "ca" },
|
|
{ "chinese-traditional", "zh-TW" },
|
|
{ "chinese-simplified", "zh-CN" },
|
|
{ "chinese", "zh-CN" },
|
|
{ "croatian", "hr" },
|
|
{ "czech", "cs" },
|
|
{ "danish", "da" },
|
|
{ "dutch", "nl" },
|
|
{ "english", "en" },
|
|
{ "esperanto", "eo" },
|
|
{ "estonian", "et" },
|
|
{ "filipino", "tl" },
|
|
{ "finnish", "fi" },
|
|
{ "french", "fr" },
|
|
{ "galician", "gl" },
|
|
{ "german", "de" },
|
|
{ "georgian", "ka" },
|
|
{ "greek", "el" },
|
|
{ "haitian Creole", "ht" },
|
|
{ "hebrew", "iw" },
|
|
{ "hindi", "hi" },
|
|
{ "hungarian", "hu" },
|
|
{ "icelandic", "is" },
|
|
{ "indonesian", "id" },
|
|
{ "irish", "ga" },
|
|
{ "italian", "it" },
|
|
{ "japanese", "ja" },
|
|
{ "korean", "ko" },
|
|
{ "lao", "lo" },
|
|
{ "latin", "la" },
|
|
{ "latvian", "lv" },
|
|
{ "lithuanian", "lt" },
|
|
{ "macedonian", "mk" },
|
|
{ "malay", "ms" },
|
|
{ "maltese", "mt" },
|
|
{ "norwegian", "no" },
|
|
{ "persian", "fa" },
|
|
{ "polish", "pl" },
|
|
{ "portuguese", "pt" },
|
|
{ "romanian", "ro" },
|
|
{ "russian", "ru" },
|
|
{ "serbian", "sr" },
|
|
{ "slovak", "sk" },
|
|
{ "slovenian", "sl" },
|
|
{ "spanish", "es" },
|
|
{ "swahili", "sw" },
|
|
{ "swedish", "sv" },
|
|
{ "tamil", "ta" },
|
|
{ "telugu", "te" },
|
|
{ "thai", "th" },
|
|
{ "turkish", "tr" },
|
|
{ "ukrainian", "uk" },
|
|
{ "urdu", "ur" },
|
|
{ "vietnamese", "vi" },
|
|
{ "welsh", "cy" },
|
|
{ "yiddish", "yi" },
|
|
{ "af", "af" },
|
|
{ "sq", "sq" },
|
|
{ "ar", "ar" },
|
|
{ "hy", "hy" },
|
|
{ "az", "az" },
|
|
{ "eu", "eu" },
|
|
{ "be", "be" },
|
|
{ "bn", "bn" },
|
|
{ "bg", "bg" },
|
|
{ "ca", "ca" },
|
|
{ "zh-tw", "zh-TW" },
|
|
{ "zh-cn", "zh-CN" },
|
|
{ "hr", "hr" },
|
|
{ "cs", "cs" },
|
|
{ "da", "da" },
|
|
{ "nl", "nl" },
|
|
{ "en", "en" },
|
|
{ "eo", "eo" },
|
|
{ "et", "et" },
|
|
{ "tl", "tl" },
|
|
{ "fi", "fi" },
|
|
{ "fr", "fr" },
|
|
{ "gl", "gl" },
|
|
{ "de", "de" },
|
|
{ "ka", "ka" },
|
|
{ "el", "el" },
|
|
{ "ht", "ht" },
|
|
{ "iw", "iw" },
|
|
{ "hi", "hi" },
|
|
{ "hu", "hu" },
|
|
{ "is", "is" },
|
|
{ "id", "id" },
|
|
{ "ga", "ga" },
|
|
{ "it", "it" },
|
|
{ "ja", "ja" },
|
|
{ "ko", "ko" },
|
|
{ "lo", "lo" },
|
|
{ "la", "la" },
|
|
{ "lv", "lv" },
|
|
{ "lt", "lt" },
|
|
{ "mk", "mk" },
|
|
{ "ms", "ms" },
|
|
{ "mt", "mt" },
|
|
{ "no", "no" },
|
|
{ "fa", "fa" },
|
|
{ "pl", "pl" },
|
|
{ "pt", "pt" },
|
|
{ "ro", "ro" },
|
|
{ "ru", "ru" },
|
|
{ "sr", "sr" },
|
|
{ "sk", "sk" },
|
|
{ "sl", "sl" },
|
|
{ "es", "es" },
|
|
{ "sw", "sw" },
|
|
{ "sv", "sv" },
|
|
{ "ta", "ta" },
|
|
{ "te", "te" },
|
|
{ "th", "th" },
|
|
{ "tr", "tr" },
|
|
{ "uk", "uk" },
|
|
{ "ur", "ur" },
|
|
{ "vi", "vi" },
|
|
{ "cy", "cy" },
|
|
{ "yi", "yi" }
|
|
};
|
|
|
|
private readonly YouTubeService _yt;
|
|
private readonly UrlshortenerService _sh;
|
|
|
|
//private readonly Regex YtVideoIdRegex = new Regex(@"(?:youtube\.com\/\S*(?:(?:\/e(?:mbed))?\/|watch\?(?:\S*?&?v\=))|youtu\.be\/)(?<id>[a-zA-Z0-9_-]{6,11})", RegexOptions.Compiled);
|
|
private readonly IBotCredsProvider _creds;
|
|
private readonly IHttpClientFactory _httpFactory;
|
|
|
|
public GoogleApiService(IBotCredsProvider creds, IHttpClientFactory factory)
|
|
{
|
|
_creds = creds;
|
|
_httpFactory = factory;
|
|
|
|
var bcs = new BaseClientService.Initializer
|
|
{
|
|
ApplicationName = "Nadeko Bot",
|
|
ApiKey = _creds.GetCreds().GoogleApiKey
|
|
};
|
|
|
|
_yt = new(bcs);
|
|
_sh = new(bcs);
|
|
}
|
|
|
|
public async Task<IEnumerable<string>> GetPlaylistIdsByKeywordsAsync(string keywords, int count = 1)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(keywords))
|
|
throw new ArgumentNullException(nameof(keywords));
|
|
|
|
if (count <= 0)
|
|
throw new ArgumentOutOfRangeException(nameof(count));
|
|
|
|
var match = _plRegex.Match(keywords);
|
|
if (match.Length > 1)
|
|
return new[] { match.Groups["id"].Value };
|
|
var query = _yt.Search.List("snippet");
|
|
query.MaxResults = count;
|
|
query.Type = "playlist";
|
|
query.Q = keywords;
|
|
|
|
return (await query.ExecuteAsync()).Items.Select(i => i.Id.PlaylistId);
|
|
}
|
|
|
|
public async Task<IEnumerable<string>> GetRelatedVideosAsync(string id, int count = 1, string user = null)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(id))
|
|
throw new ArgumentNullException(nameof(id));
|
|
|
|
if (count <= 0)
|
|
throw new ArgumentOutOfRangeException(nameof(count));
|
|
|
|
var query = _yt.Search.List("snippet");
|
|
query.MaxResults = count;
|
|
query.RelatedToVideoId = id;
|
|
query.Type = "video";
|
|
query.QuotaUser = user;
|
|
return (await query.ExecuteAsync()).Items.Select(i => "https://www.youtube.com/watch?v=" + i.Id.VideoId);
|
|
}
|
|
|
|
public async Task<IEnumerable<string>> GetVideoLinksByKeywordAsync(string keywords, int count = 1)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(keywords))
|
|
throw new ArgumentNullException(nameof(keywords));
|
|
|
|
if (count <= 0)
|
|
throw new ArgumentOutOfRangeException(nameof(count));
|
|
|
|
var query = _yt.Search.List("snippet");
|
|
query.MaxResults = count;
|
|
query.Q = keywords;
|
|
query.Type = "video";
|
|
query.SafeSearch = SearchResource.ListRequest.SafeSearchEnum.Strict;
|
|
return (await query.ExecuteAsync()).Items.Select(i => "https://www.youtube.com/watch?v=" + i.Id.VideoId);
|
|
}
|
|
|
|
public async Task<IEnumerable<(string Name, string Id, string Url)>> GetVideoInfosByKeywordAsync(
|
|
string keywords,
|
|
int count = 1)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(keywords))
|
|
throw new ArgumentNullException(nameof(keywords));
|
|
|
|
if (count <= 0)
|
|
throw new ArgumentOutOfRangeException(nameof(count));
|
|
|
|
var query = _yt.Search.List("snippet");
|
|
query.MaxResults = count;
|
|
query.Q = keywords;
|
|
query.Type = "video";
|
|
return (await query.ExecuteAsync()).Items.Select(i
|
|
=> (i.Snippet.Title.TrimTo(50), i.Id.VideoId, "https://www.youtube.com/watch?v=" + i.Id.VideoId));
|
|
}
|
|
|
|
public Task<string> ShortenUrl(Uri url)
|
|
=> ShortenUrl(url.ToString());
|
|
|
|
public async Task<string> ShortenUrl(string url)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(url))
|
|
throw new ArgumentNullException(nameof(url));
|
|
|
|
if (string.IsNullOrWhiteSpace(_creds.GetCreds().GoogleApiKey))
|
|
return url;
|
|
|
|
try
|
|
{
|
|
var response = await _sh.Url.Insert(new()
|
|
{
|
|
LongUrl = url
|
|
})
|
|
.ExecuteAsync();
|
|
return response.Id;
|
|
}
|
|
catch (GoogleApiException ex) when (ex.HttpStatusCode == HttpStatusCode.Forbidden)
|
|
{
|
|
return url;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Log.Warning(ex, "Error shortening URL");
|
|
return url;
|
|
}
|
|
}
|
|
|
|
public async Task<IEnumerable<string>> GetPlaylistTracksAsync(string playlistId, int count = 50)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(playlistId))
|
|
throw new ArgumentNullException(nameof(playlistId));
|
|
|
|
if (count <= 0)
|
|
throw new ArgumentOutOfRangeException(nameof(count));
|
|
|
|
string nextPageToken = null;
|
|
|
|
var toReturn = new List<string>(count);
|
|
|
|
do
|
|
{
|
|
var toGet = count > 50 ? 50 : count;
|
|
count -= toGet;
|
|
|
|
var query = _yt.PlaylistItems.List("contentDetails");
|
|
query.MaxResults = toGet;
|
|
query.PlaylistId = playlistId;
|
|
query.PageToken = nextPageToken;
|
|
|
|
var data = await query.ExecuteAsync();
|
|
|
|
toReturn.AddRange(data.Items.Select(i => i.ContentDetails.VideoId));
|
|
nextPageToken = data.NextPageToken;
|
|
} while (count > 0 && !string.IsNullOrWhiteSpace(nextPageToken));
|
|
|
|
return toReturn;
|
|
}
|
|
|
|
public async Task<IReadOnlyDictionary<string, TimeSpan>> GetVideoDurationsAsync(IEnumerable<string> videoIds)
|
|
{
|
|
var videoIdsList = videoIds as List<string> ?? videoIds.ToList();
|
|
|
|
var toReturn = new Dictionary<string, TimeSpan>();
|
|
|
|
if (!videoIdsList.Any())
|
|
return toReturn;
|
|
var remaining = videoIdsList.Count;
|
|
|
|
do
|
|
{
|
|
var toGet = remaining > 50 ? 50 : remaining;
|
|
remaining -= toGet;
|
|
|
|
var q = _yt.Videos.List("contentDetails");
|
|
q.Id = string.Join(",", videoIdsList.Take(toGet));
|
|
videoIdsList = videoIdsList.Skip(toGet).ToList();
|
|
var items = (await q.ExecuteAsync()).Items;
|
|
foreach (var i in items)
|
|
toReturn.Add(i.Id, XmlConvert.ToTimeSpan(i.ContentDetails.Duration));
|
|
} while (remaining > 0);
|
|
|
|
return toReturn;
|
|
}
|
|
|
|
public async Task<string> Translate(string sourceText, string sourceLanguage, string targetLanguage)
|
|
{
|
|
string text;
|
|
|
|
if (!Languages.ContainsKey(sourceLanguage) || !Languages.ContainsKey(targetLanguage))
|
|
throw new ArgumentException(nameof(sourceLanguage) + "/" + nameof(targetLanguage));
|
|
|
|
|
|
var url = new Uri(string.Format(
|
|
"https://translate.googleapis.com/translate_a/single?client=gtx&sl={0}&tl={1}&dt=t&q={2}",
|
|
ConvertToLanguageCode(sourceLanguage),
|
|
ConvertToLanguageCode(targetLanguage),
|
|
WebUtility.UrlEncode(sourceText)));
|
|
using (var http = _httpFactory.CreateClient())
|
|
{
|
|
http.DefaultRequestHeaders.Add("user-agent",
|
|
"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36");
|
|
text = await http.GetStringAsync(url);
|
|
}
|
|
|
|
return string.Concat(JArray.Parse(text)[0].Select(x => x[0]));
|
|
}
|
|
|
|
private string ConvertToLanguageCode(string language)
|
|
{
|
|
Languages.TryGetValue(language, out var mode);
|
|
return mode;
|
|
}
|
|
}
|
|
|