119 lines
4.2 KiB
C#
119 lines
4.2 KiB
C#
using Discord;
|
|
using Discord.Commands;
|
|
using NadekoBot.Attributes;
|
|
using NadekoBot.Extensions;
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
using System.Collections.Concurrent;
|
|
using System.Linq;
|
|
using Discord.WebSocket;
|
|
using NadekoBot.Services.Searches;
|
|
using NadekoBot.Services;
|
|
|
|
namespace NadekoBot.Modules.Searches
|
|
{
|
|
public partial class Searches
|
|
{
|
|
[Group]
|
|
public class TranslateCommands : NadekoSubmodule
|
|
{
|
|
private readonly SearchesService _searches;
|
|
private readonly IGoogleApiService _google;
|
|
|
|
public TranslateCommands(SearchesService searches, IGoogleApiService google)
|
|
{
|
|
_searches = searches;
|
|
_google = google;
|
|
}
|
|
|
|
[NadekoCommand, Usage, Description, Aliases]
|
|
public async Task Translate(string langs, [Remainder] string text = null)
|
|
{
|
|
try
|
|
{
|
|
await Context.Channel.TriggerTypingAsync().ConfigureAwait(false);
|
|
var translation = await _searches.Translate(langs, text);
|
|
await Context.Channel.SendConfirmAsync(GetText("translation") + " " + langs, translation).ConfigureAwait(false);
|
|
}
|
|
catch
|
|
{
|
|
await ReplyErrorLocalized("bad_input_format").ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
public enum AutoDeleteAutoTranslate
|
|
{
|
|
Del,
|
|
Nodel
|
|
}
|
|
|
|
[NadekoCommand, Usage, Description, Aliases]
|
|
[RequireContext(ContextType.Guild)]
|
|
[RequireUserPermission(GuildPermission.Administrator)]
|
|
[OwnerOnly]
|
|
public async Task AutoTranslate(AutoDeleteAutoTranslate autoDelete = AutoDeleteAutoTranslate.Nodel)
|
|
{
|
|
var channel = (ITextChannel)Context.Channel;
|
|
|
|
if (autoDelete == AutoDeleteAutoTranslate.Del)
|
|
{
|
|
_searches.TranslatedChannels.AddOrUpdate(channel.Id, true, (key, val) => true);
|
|
await ReplyConfirmLocalized("atl_ad_started").ConfigureAwait(false);
|
|
return;
|
|
}
|
|
|
|
if (_searches.TranslatedChannels.TryRemove(channel.Id, out var throwaway))
|
|
{
|
|
await ReplyConfirmLocalized("atl_stopped").ConfigureAwait(false);
|
|
return;
|
|
}
|
|
if (_searches.TranslatedChannels.TryAdd(channel.Id, autoDelete == AutoDeleteAutoTranslate.Del))
|
|
{
|
|
await ReplyConfirmLocalized("atl_started").ConfigureAwait(false);
|
|
}
|
|
}
|
|
|
|
[NadekoCommand, Usage, Description, Aliases]
|
|
[RequireContext(ContextType.Guild)]
|
|
public async Task AutoTransLang([Remainder] string langs = null)
|
|
{
|
|
var ucp = new UserChannelPair
|
|
{
|
|
UserId = Context.User.Id,
|
|
ChannelId = Context.Channel.Id,
|
|
};
|
|
|
|
if (string.IsNullOrWhiteSpace(langs))
|
|
{
|
|
if (_searches.UserLanguages.TryRemove(ucp, out langs))
|
|
await ReplyConfirmLocalized("atl_removed").ConfigureAwait(false);
|
|
return;
|
|
}
|
|
|
|
var langarr = langs.ToLowerInvariant().Split('>');
|
|
if (langarr.Length != 2)
|
|
return;
|
|
var from = langarr[0];
|
|
var to = langarr[1];
|
|
|
|
if (!_google.Languages.Contains(from) || !_google.Languages.Contains(to))
|
|
{
|
|
await ReplyErrorLocalized("invalid_lang").ConfigureAwait(false);
|
|
return;
|
|
}
|
|
|
|
_searches.UserLanguages.AddOrUpdate(ucp, langs, (key, val) => langs);
|
|
|
|
await ReplyConfirmLocalized("atl_set", from, to).ConfigureAwait(false);
|
|
}
|
|
|
|
[NadekoCommand, Usage, Description, Aliases]
|
|
[RequireContext(ContextType.Guild)]
|
|
public async Task Translangs()
|
|
{
|
|
await Context.Channel.SendTableAsync(_google.Languages, str => $"{str,-15}", 3);
|
|
}
|
|
|
|
}
|
|
}
|
|
} |