2019-07-16 19:59:06 +00:00
using System.Linq ;
2019-04-29 18:21:16 +00:00
using System.Threading.Tasks ;
2019-07-16 19:59:06 +00:00
using App.Metrics ;
2019-04-29 18:21:16 +00:00
using Discord ;
using Discord.Commands ;
2019-05-21 21:40:26 +00:00
namespace PluralKit.Bot.Commands {
2019-04-29 18:21:16 +00:00
public class MiscCommands : ModuleBase < PKCommandContext > {
2019-06-15 10:03:07 +00:00
public BotConfig BotConfig { get ; set ; }
2019-07-16 19:59:06 +00:00
public IMetrics Metrics { get ; set ; }
2019-06-15 10:03:07 +00:00
2019-04-29 18:21:16 +00:00
[Command("invite")]
2019-07-10 11:55:48 +00:00
[Alias("inv")]
2019-04-29 18:21:16 +00:00
[Remarks("invite")]
2019-06-15 10:03:07 +00:00
public async Task Invite ( )
{
var clientId = BotConfig . ClientId ? ? ( await Context . Client . GetApplicationInfoAsync ( ) ) . Id ;
2019-04-29 18:21:16 +00:00
var permissions = new GuildPermissions (
addReactions : true ,
attachFiles : true ,
embedLinks : true ,
manageMessages : true ,
manageWebhooks : true ,
readMessageHistory : true ,
sendMessages : true
) ;
2019-06-15 10:03:07 +00:00
var invite = $"https://discordapp.com/oauth2/authorize?client_id={clientId}&scope=bot&permissions={permissions.RawValue}" ;
2019-04-29 18:21:16 +00:00
await Context . Channel . SendMessageAsync ( $"{Emojis.Success} Use this link to add PluralKit to your server:\n<{invite}>" ) ;
}
2019-07-10 11:57:59 +00:00
[Command("mn")] public Task Mn ( ) = > Context . Channel . SendMessageAsync ( "Gotta catch 'em all!" ) ;
[Command("fire")] public Task Fire ( ) = > Context . Channel . SendMessageAsync ( "*A giant lightning bolt promptly erupts into a pillar of fire as it hits your opponent.*" ) ;
[Command("thunder")] public Task Thunder ( ) = > Context . Channel . SendMessageAsync ( "*A giant ball of lightning is conjured and fired directly at your opponent, vanquishing them.*" ) ;
[Command("freeze")] public Task Freeze ( ) = > Context . Channel . SendMessageAsync ( "*A giant crystal ball of ice is charged and hurled toward your opponent, bursting open and freezing them solid on contact.*" ) ;
[Command("starstorm")] public Task Starstorm ( ) = > Context . Channel . SendMessageAsync ( "*Vibrant colours burst forth from the sky as meteors rain down upon your opponent.*" ) ;
2019-07-16 19:59:06 +00:00
[Command("stats")]
public async Task Stats ( )
{
var messagesReceived = Metrics . Snapshot . GetForContext ( "Bot" ) . Meters . First ( m = > m . MultidimensionalName = = BotMetrics . MessagesReceived . Name ) . Value ;
var messagesProxied = Metrics . Snapshot . GetForContext ( "Bot" ) . Meters . First ( m = > m . MultidimensionalName = = BotMetrics . MessagesProxied . Name ) . Value ;
var proxySuccessRate = messagesProxied . Items . First ( i = > i . Item = = "success" ) ;
var commandsRun = Metrics . Snapshot . GetForContext ( "Bot" ) . Meters . First ( m = > m . MultidimensionalName = = BotMetrics . CommandsRun . Name ) . Value ;
await Context . Channel . SendMessageAsync ( embed : new EmbedBuilder ( )
. AddField ( "Messages processed" , $"{messagesReceived.OneMinuteRate:F1}/s ({messagesReceived.FifteenMinuteRate:F1}/s over 15m)" )
. AddField ( "Messages proxied" , $"{messagesProxied.OneMinuteRate:F1}/s ({messagesProxied.FifteenMinuteRate:F1}/s over 15m)" )
. AddField ( "Commands executed" , $"{commandsRun.OneMinuteRate:F1}/s ({commandsRun.FifteenMinuteRate:F1}/s over 15m)" )
. AddField ( "Proxy success rate" , $"{proxySuccessRate.Percent/100:P1}" )
. Build ( ) ) ;
}
2019-04-29 18:21:16 +00:00
}
}