Disabled honeypot system
This system is being a little buggy and will be fixed in the future
This commit is contained in:
parent
c377ee2df7
commit
5e7c75a498
3 changed files with 13 additions and 9 deletions
|
@ -5,7 +5,7 @@ using EllieBot.Db.Models;
|
||||||
using System.Threading.Channels;
|
using System.Threading.Channels;
|
||||||
|
|
||||||
namespace EllieBot.Modules.Administration.Honeypot;
|
namespace EllieBot.Modules.Administration.Honeypot;
|
||||||
|
/*
|
||||||
public sealed class HoneyPotService : IHoneyPotService, IReadyExecutor, IExecNoCommand, IEService
|
public sealed class HoneyPotService : IHoneyPotService, IReadyExecutor, IExecNoCommand, IEService
|
||||||
{
|
{
|
||||||
private readonly DbService _db;
|
private readonly DbService _db;
|
||||||
|
@ -71,7 +71,8 @@ public sealed class HoneyPotService : IHoneyPotService, IReadyExecutor, IExecNoC
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Log.Information("Honeypot caught user {User} [{UserId}]", user, user.Id);
|
Log.Information("Honeypot caught user {User} [{UserId}]", user, user.Id);
|
||||||
await user.BanAsync();
|
await user.BanAsync(pruneDays: 1);
|
||||||
|
await user.Guild.RemoveBanAsync(user.Id);
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
@ -92,3 +93,4 @@ public sealed class HoneyPotService : IHoneyPotService, IReadyExecutor, IExecNoC
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
|
@ -1,7 +1,7 @@
|
||||||
using EllieBot.Modules.Administration.Honeypot;
|
using EllieBot.Modules.Administration.Honeypot;
|
||||||
|
|
||||||
namespace EllieBot.Modules.Administration;
|
namespace EllieBot.Modules.Administration;
|
||||||
|
/*
|
||||||
public partial class Administration
|
public partial class Administration
|
||||||
{
|
{
|
||||||
[Group]
|
[Group]
|
||||||
|
@ -27,3 +27,4 @@ public partial class Administration
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
|
@ -1,6 +1,7 @@
|
||||||
namespace EllieBot.Modules.Administration.Honeypot;
|
namespace EllieBot.Modules.Administration.Honeypot;
|
||||||
|
/*
|
||||||
public interface IHoneyPotService
|
public interface IHoneyPotService
|
||||||
{
|
{
|
||||||
public Task<bool> ToggleHoneypotChannel(ulong guildId, ulong channelId);
|
public Task<bool> ToggleHoneypotChannel(ulong guildId, ulong channelId);
|
||||||
}
|
}
|
||||||
|
*/
|
Loading…
Reference in a new issue