2020-07-05 11:16:21 +00:00
using System.Text ;
2020-02-12 14:16:19 +00:00
2020-12-25 11:56:46 +00:00
using Myriad.Builders ;
2020-12-22 15:55:13 +00:00
using Myriad.Cache ;
using Myriad.Extensions ;
using Myriad.Types ;
2020-02-12 14:16:19 +00:00
using PluralKit.Core ;
2019-06-21 11:49:58 +00:00
2021-11-27 02:10:56 +00:00
namespace PluralKit.Bot ;
public class ServerConfig
2019-06-21 11:49:58 +00:00
{
2021-11-27 02:10:56 +00:00
private readonly IDiscordCache _cache ;
2022-01-22 08:05:01 +00:00
public ServerConfig ( IDiscordCache cache )
2021-11-27 02:10:56 +00:00
{
_cache = cache ;
}
public async Task SetLogChannel ( Context ctx )
2019-06-21 11:49:58 +00:00
{
2021-11-27 02:10:56 +00:00
await ctx . CheckGuildContext ( ) . CheckAuthorPermission ( PermissionSet . ManageGuild , "Manage Server" ) ;
2022-01-22 08:05:01 +00:00
var settings = await ctx . Repository . GetGuild ( ctx . Guild . Id ) ;
2021-11-27 02:10:56 +00:00
if ( await ctx . MatchClear ( "the server log channel" ) )
2019-06-21 11:49:58 +00:00
{
2022-01-22 08:05:01 +00:00
await ctx . Repository . UpdateGuild ( ctx . Guild . Id , new GuildPatch { LogChannel = null } ) ;
2021-11-27 02:10:56 +00:00
await ctx . Reply ( $"{Emojis.Success} Proxy logging channel cleared." ) ;
return ;
2019-10-05 05:41:00 +00:00
}
2021-11-27 02:10:56 +00:00
if ( ! ctx . HasNext ( ) )
2019-10-05 05:41:00 +00:00
{
2021-11-27 02:10:56 +00:00
if ( settings . LogChannel = = null )
2021-10-29 17:28:27 +00:00
{
2021-11-27 02:10:56 +00:00
await ctx . Reply ( "This server does not have a log channel set." ) ;
2021-10-29 17:28:27 +00:00
return ;
}
2021-08-27 15:03:47 +00:00
2021-11-27 02:10:56 +00:00
await ctx . Reply ( $"This server's log channel is currently set to <#{settings.LogChannel}>." ) ;
return ;
2019-06-21 11:49:58 +00:00
}
2019-11-03 18:15:50 +00:00
2021-11-27 02:10:56 +00:00
Channel channel = null ;
var channelString = ctx . PeekArgument ( ) ;
channel = await ctx . MatchChannel ( ) ;
if ( channel = = null | | channel . GuildId ! = ctx . Guild . Id ) throw Errors . ChannelNotFound ( channelString ) ;
if ( channel . Type ! = Channel . ChannelType . GuildText )
throw new PKError ( "PluralKit cannot log messages to this type of channel." ) ;
var perms = await _cache . PermissionsIn ( channel . Id ) ;
if ( ! perms . HasFlag ( PermissionSet . SendMessages ) )
throw new PKError ( "PluralKit is missing **Send Messages** permissions in the new log channel." ) ;
if ( ! perms . HasFlag ( PermissionSet . EmbedLinks ) )
throw new PKError ( "PluralKit is missing **Embed Links** permissions in the new log channel." ) ;
2022-01-22 08:05:01 +00:00
await ctx . Repository . UpdateGuild ( ctx . Guild . Id , new GuildPatch { LogChannel = channel . Id } ) ;
2021-11-27 02:10:56 +00:00
await ctx . Reply ( $"{Emojis.Success} Proxy logging channel set to <#{channel.Id}>." ) ;
}
2019-11-03 18:15:50 +00:00
2021-11-27 02:10:56 +00:00
public async Task SetLogEnabled ( Context ctx , bool enable )
{
await ctx . CheckGuildContext ( ) . CheckAuthorPermission ( PermissionSet . ManageGuild , "Manage Server" ) ;
var affectedChannels = new List < Channel > ( ) ;
if ( ctx . Match ( "all" ) )
affectedChannels = ( await _cache . GetGuildChannels ( ctx . Guild . Id ) )
. Where ( x = > x . Type = = Channel . ChannelType . GuildText ) . ToList ( ) ;
else if ( ! ctx . HasNext ( ) ) throw new PKSyntaxError ( "You must pass one or more #channels." ) ;
else
while ( ctx . HasNext ( ) )
{
var channelString = ctx . PeekArgument ( ) ;
var channel = await ctx . MatchChannel ( ) ;
if ( channel = = null | | channel . GuildId ! = ctx . Guild . Id ) throw Errors . ChannelNotFound ( channelString ) ;
affectedChannels . Add ( channel ) ;
}
2019-11-03 18:15:50 +00:00
2021-11-27 02:10:56 +00:00
ulong? logChannel = null ;
2022-01-22 08:05:01 +00:00
var config = await ctx . Repository . GetGuild ( ctx . Guild . Id ) ;
2021-11-27 02:10:56 +00:00
logChannel = config . LogChannel ;
2021-08-27 15:03:47 +00:00
2021-11-27 02:10:56 +00:00
var blacklist = config . LogBlacklist . ToHashSet ( ) ;
if ( enable )
blacklist . ExceptWith ( affectedChannels . Select ( c = > c . Id ) ) ;
else
blacklist . UnionWith ( affectedChannels . Select ( c = > c . Id ) ) ;
2021-09-30 01:51:38 +00:00
2022-01-22 08:05:01 +00:00
await ctx . Repository . UpdateGuild ( ctx . Guild . Id , new GuildPatch { LogBlacklist = blacklist . ToArray ( ) } ) ;
2020-06-13 11:58:27 +00:00
2021-11-27 02:10:56 +00:00
await ctx . Reply (
$"{Emojis.Success} Message logging for the given channels {(enable ? " enabled " : " disabled ")}." +
( logChannel = = null
? $"\n{Emojis.Warn} Please note that no logging channel is set, so there is nowhere to log messages to. You can set a logging channel using `pk;log channel #your-log-channel`."
: "" ) ) ;
}
2020-07-05 10:54:27 +00:00
2021-11-27 02:10:56 +00:00
public async Task ShowBlacklisted ( Context ctx )
{
await ctx . CheckGuildContext ( ) . CheckAuthorPermission ( PermissionSet . ManageGuild , "Manage Server" ) ;
2020-07-05 10:54:27 +00:00
2022-01-22 08:05:01 +00:00
var blacklist = await ctx . Repository . GetGuild ( ctx . Guild . Id ) ;
2021-08-27 15:03:47 +00:00
2021-11-27 02:10:56 +00:00
// Resolve all channels from the cache and order by position
var channels = ( await Task . WhenAll ( blacklist . Blacklist
2021-11-18 18:11:02 +00:00
. Select ( id = > _cache . TryGetChannel ( id ) ) ) )
2021-11-27 02:10:56 +00:00
. Where ( c = > c ! = null )
. OrderBy ( c = > c . Position )
. ToList ( ) ;
2020-07-05 10:54:27 +00:00
2021-11-27 02:10:56 +00:00
if ( channels . Count = = 0 )
{
await ctx . Reply ( "This server has no blacklisted channels." ) ;
return ;
}
2020-07-05 11:08:18 +00:00
2021-11-27 02:10:56 +00:00
await ctx . Paginate ( channels . ToAsyncEnumerable ( ) , channels . Count , 25 ,
$"Blacklisted channels for {ctx.Guild.Name}" ,
null ,
async ( eb , l ) = >
{
async Task < string > CategoryName ( ulong? id ) = >
id ! = null ? ( await _cache . GetChannel ( id . Value ) ) . Name : "(no category)" ;
2021-08-27 15:03:47 +00:00
2021-11-27 02:10:56 +00:00
ulong? lastCategory = null ;
2020-07-05 11:16:21 +00:00
2021-11-27 02:10:56 +00:00
var fieldValue = new StringBuilder ( ) ;
foreach ( var channel in l )
{
if ( lastCategory ! = channel ! . ParentId & & fieldValue . Length > 0 )
2020-07-05 11:16:21 +00:00
{
2021-11-27 02:10:56 +00:00
eb . Field ( new Embed . Field ( await CategoryName ( lastCategory ) , fieldValue . ToString ( ) ) ) ;
fieldValue . Clear ( ) ;
}
else
{
fieldValue . Append ( "\n" ) ;
2020-07-05 11:16:21 +00:00
}
2021-11-27 02:10:56 +00:00
fieldValue . Append ( channel . Mention ( ) ) ;
lastCategory = channel . ParentId ;
2021-08-27 15:03:47 +00:00
}
2021-11-27 02:10:56 +00:00
eb . Field ( new Embed . Field ( await CategoryName ( lastCategory ) , fieldValue . ToString ( ) ) ) ;
} ) ;
}
2021-08-27 15:03:47 +00:00
2021-11-27 02:10:56 +00:00
public async Task SetBlacklisted ( Context ctx , bool shouldAdd )
{
await ctx . CheckGuildContext ( ) . CheckAuthorPermission ( PermissionSet . ManageGuild , "Manage Server" ) ;
var affectedChannels = new List < Channel > ( ) ;
if ( ctx . Match ( "all" ) )
affectedChannels = ( await _cache . GetGuildChannels ( ctx . Guild . Id ) )
. Where ( x = > x . Type = = Channel . ChannelType . GuildText ) . ToList ( ) ;
else if ( ! ctx . HasNext ( ) ) throw new PKSyntaxError ( "You must pass one or more #channels." ) ;
else
while ( ctx . HasNext ( ) )
{
var channelString = ctx . PeekArgument ( ) ;
var channel = await ctx . MatchChannel ( ) ;
if ( channel = = null | | channel . GuildId ! = ctx . Guild . Id ) throw Errors . ChannelNotFound ( channelString ) ;
affectedChannels . Add ( channel ) ;
}
2021-09-30 01:51:38 +00:00
2022-01-22 08:05:01 +00:00
var guild = await ctx . Repository . GetGuild ( ctx . Guild . Id ) ;
2019-11-03 18:15:50 +00:00
2021-11-27 02:10:56 +00:00
var blacklist = guild . Blacklist . ToHashSet ( ) ;
if ( shouldAdd )
blacklist . UnionWith ( affectedChannels . Select ( c = > c . Id ) ) ;
else
blacklist . ExceptWith ( affectedChannels . Select ( c = > c . Id ) ) ;
2020-02-14 23:12:03 +00:00
2022-01-22 08:05:01 +00:00
await ctx . Repository . UpdateGuild ( ctx . Guild . Id , new GuildPatch { Blacklist = blacklist . ToArray ( ) } ) ;
2020-02-14 23:12:03 +00:00
2021-11-27 02:10:56 +00:00
await ctx . Reply (
$"{Emojis.Success} Channels {(shouldAdd ? " added to " : " removed from ")} the proxy blacklist." ) ;
}
2020-06-13 11:58:27 +00:00
2021-11-27 02:10:56 +00:00
public async Task SetLogCleanup ( Context ctx )
{
await ctx . CheckGuildContext ( ) . CheckAuthorPermission ( PermissionSet . ManageGuild , "Manage Server" ) ;
2020-06-13 11:58:27 +00:00
2022-01-22 08:05:01 +00:00
var botList = string . Join ( ", " , LoggerCleanService . Bots . Select ( b = > b . Name ) . OrderBy ( x = > x . ToLowerInvariant ( ) ) ) ;
2020-06-29 13:20:28 +00:00
2022-01-22 08:05:01 +00:00
var guild = await ctx . Repository . GetGuild ( ctx . Guild . Id ) ;
2021-12-06 09:02:25 +00:00
2021-11-27 02:10:56 +00:00
bool newValue ;
if ( ctx . Match ( "enable" , "on" , "yes" ) )
{
newValue = true ;
}
else if ( ctx . Match ( "disable" , "off" , "no" ) )
{
newValue = false ;
}
else
{
var eb = new EmbedBuilder ( )
. Title ( "Log cleanup settings" )
. Field ( new Embed . Field ( "Supported bots" , botList ) ) ;
2022-01-22 08:05:01 +00:00
var guildCfg = await ctx . Repository . GetGuild ( ctx . Guild . Id ) ;
2021-11-27 02:10:56 +00:00
if ( guildCfg . LogCleanupEnabled )
eb . Description (
"Log cleanup is currently **on** for this server. To disable it, type `pk;logclean off`." ) ;
2020-06-13 11:58:27 +00:00
else
2021-11-27 02:10:56 +00:00
eb . Description (
"Log cleanup is currently **off** for this server. To enable it, type `pk;logclean on`." ) ;
await ctx . Reply ( embed : eb . Build ( ) ) ;
return ;
2020-02-14 23:12:03 +00:00
}
2021-11-27 02:10:56 +00:00
2022-01-22 08:05:01 +00:00
await ctx . Repository . UpdateGuild ( ctx . Guild . Id , new GuildPatch { LogCleanupEnabled = newValue } ) ;
2021-11-27 02:10:56 +00:00
if ( newValue )
await ctx . Reply (
$"{Emojis.Success} Log cleanup has been **enabled** for this server. Messages deleted by PluralKit will now be cleaned up from logging channels managed by the following bots:\n- **{botList}**\n\n{Emojis.Note} Make sure PluralKit has the **Manage Messages** permission in the channels in question.\n{Emojis.Note} Also, make sure to blacklist the logging channel itself from the bots in question to prevent conflicts." ) ;
else
await ctx . Reply ( $"{Emojis.Success} Log cleanup has been **disabled** for this server." ) ;
2019-06-21 11:49:58 +00:00
}
}