2017-10-13 00:21:39 +00:00
|
|
|
|
using Discord.Commands;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using NadekoBot.Common.Attributes;
|
|
|
|
|
using NadekoBot.Extensions;
|
2017-10-13 04:14:54 +00:00
|
|
|
|
using NadekoBot.Core.Services;
|
2017-10-13 00:21:39 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2017-10-13 02:41:01 +00:00
|
|
|
|
#if !GLOBAL_NADEKO
|
2017-10-13 00:21:39 +00:00
|
|
|
|
namespace NadekoBot.Modules.Administration
|
|
|
|
|
{
|
|
|
|
|
public partial class Administration
|
|
|
|
|
{
|
|
|
|
|
[Group]
|
|
|
|
|
[OwnerOnly]
|
|
|
|
|
public class DangerousCommands : NadekoSubmodule
|
|
|
|
|
{
|
|
|
|
|
private readonly DbService _db;
|
|
|
|
|
|
|
|
|
|
public DangerousCommands(DbService db)
|
|
|
|
|
{
|
|
|
|
|
_db = db;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[NadekoCommand, Usage, Description, Aliases]
|
|
|
|
|
[OwnerOnly]
|
|
|
|
|
public async Task ExecSql([Remainder]string sql)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
int res;
|
|
|
|
|
using (var uow = _db.UnitOfWork)
|
|
|
|
|
{
|
|
|
|
|
res = uow._context.Database.ExecuteSqlCommand(sql);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
await Context.Channel.SendConfirmAsync(res.ToString());
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
await Context.Channel.SendErrorAsync(ex.ToString());
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-10-13 02:41:01 +00:00
|
|
|
|
|
|
|
|
|
[NadekoCommand, Usage, Description, Aliases]
|
|
|
|
|
[OwnerOnly]
|
|
|
|
|
public Task DeleteWaifus() =>
|
|
|
|
|
ExecSql("DELETE FROM WaifuUpdates; DELETE FROM WaifuInfo;");
|
|
|
|
|
|
|
|
|
|
[NadekoCommand, Usage, Description, Aliases]
|
|
|
|
|
[OwnerOnly]
|
|
|
|
|
public Task DeleteCurrency() =>
|
|
|
|
|
ExecSql("DELETE FROM Currency; DELETE FROM CurrencyTransactions;");
|
|
|
|
|
|
|
|
|
|
[NadekoCommand, Usage, Description, Aliases]
|
|
|
|
|
[OwnerOnly]
|
|
|
|
|
public Task DeletePlaylists() =>
|
|
|
|
|
ExecSql("DELETE FROM MusicPlaylists;");
|
|
|
|
|
|
|
|
|
|
[NadekoCommand, Usage, Description, Aliases]
|
|
|
|
|
[OwnerOnly]
|
|
|
|
|
public Task DeleteExp() =>
|
|
|
|
|
ExecSql(@"DELETE FROM UserXpStats;
|
|
|
|
|
UPDATE DiscordUser
|
|
|
|
|
SET ClubId=NULL,
|
|
|
|
|
IsClubAdmin=0,
|
|
|
|
|
TotalXp=0;
|
|
|
|
|
DELETE FROM ClubApplicants;
|
|
|
|
|
DELETE FROM ClubBans;
|
|
|
|
|
DELETE FROM Clubs;");
|
2017-10-13 00:21:39 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|