PluralKit/PluralKit.Bot/Commands/Misc.cs

124 lines
6.3 KiB
C#
Raw Normal View History

using System.Collections.Generic;
2019-12-22 11:50:47 +00:00
using System.Diagnostics;
2019-07-16 19:59:06 +00:00
using System.Linq;
2020-02-01 12:03:02 +00:00
using System.Text.RegularExpressions;
2019-04-29 18:21:16 +00:00
using System.Threading.Tasks;
2019-07-16 19:59:06 +00:00
using App.Metrics;
2019-12-22 11:50:47 +00:00
using Humanizer;
2019-04-29 18:21:16 +00:00
2019-12-22 11:50:47 +00:00
using NodaTime;
using PluralKit.Core;
2020-12-24 13:52:44 +00:00
using Myriad.Builders;
using Myriad.Cache;
using Myriad.Extensions;
using Myriad.Gateway;
using Myriad.Rest;
using Myriad.Rest.Exceptions;
2020-12-24 13:52:44 +00:00
using Myriad.Rest.Types.Requests;
using Myriad.Types;
namespace PluralKit.Bot {
2020-02-01 12:03:02 +00:00
public class Misc
2019-10-05 05:41:00 +00:00
{
2020-08-29 11:46:27 +00:00
private readonly BotConfig _botConfig;
private readonly IMetrics _metrics;
private readonly CpuStatService _cpu;
private readonly ShardInfoService _shards;
private readonly EmbedService _embeds;
private readonly IDatabase _db;
private readonly ModelRepository _repo;
2020-12-24 13:52:44 +00:00
private readonly IDiscordCache _cache;
private readonly DiscordApiClient _rest;
private readonly Cluster _cluster;
private readonly Bot _bot;
private readonly ProxyService _proxy;
private readonly ProxyMatcher _matcher;
2020-08-29 11:46:27 +00:00
public Misc(BotConfig botConfig, IMetrics metrics, CpuStatService cpu, ShardInfoService shards, EmbedService embeds, ModelRepository repo,
IDatabase db, IDiscordCache cache, DiscordApiClient rest, Bot bot, Cluster cluster, ProxyService proxy, ProxyMatcher matcher)
2019-10-05 05:41:00 +00:00
{
_botConfig = botConfig;
_metrics = metrics;
2019-12-22 11:50:47 +00:00
_cpu = cpu;
_shards = shards;
2020-02-01 12:03:02 +00:00
_embeds = embeds;
2020-08-29 11:46:27 +00:00
_repo = repo;
_db = db;
2020-12-24 13:52:44 +00:00
_cache = cache;
_rest = rest;
_bot = bot;
_cluster = cluster;
_proxy = proxy;
_matcher = matcher;
2019-10-05 05:41:00 +00:00
}
2019-10-05 05:41:00 +00:00
public async Task Invite(Context ctx)
{
2020-12-24 13:52:44 +00:00
var clientId = _botConfig.ClientId ?? _cluster.Application?.Id;
var permissions =
PermissionSet.AddReactions |
PermissionSet.AttachFiles |
PermissionSet.EmbedLinks |
PermissionSet.ManageMessages |
PermissionSet.ManageWebhooks |
PermissionSet.ReadMessageHistory |
PermissionSet.SendMessages;
var invite = $"https://discord.com/oauth2/authorize?client_id={clientId}&scope=bot%20applications.commands&permissions={(ulong)permissions}";
2019-10-05 05:41:00 +00:00
await ctx.Reply($"{Emojis.Success} Use this link to add PluralKit to your server:\n<{invite}>");
2019-04-29 18:21:16 +00:00
}
2019-10-05 05:41:00 +00:00
public async Task Stats(Context ctx)
2019-07-16 19:59:06 +00:00
{
var timeBefore = SystemClock.Instance.GetCurrentInstant();
2019-12-22 11:50:47 +00:00
var msg = await ctx.Reply($"...");
var timeAfter = SystemClock.Instance.GetCurrentInstant();
var apiLatency = timeAfter - timeBefore;
2019-12-22 11:50:47 +00:00
var messagesReceived = _metrics.Snapshot.GetForContext("Bot").Meters.FirstOrDefault(m => m.MultidimensionalName == BotMetrics.MessagesReceived.Name)?.Value;
var messagesProxied = _metrics.Snapshot.GetForContext("Bot").Meters.FirstOrDefault(m => m.MultidimensionalName == BotMetrics.MessagesProxied.Name)?.Value;
var commandsRun = _metrics.Snapshot.GetForContext("Bot").Meters.FirstOrDefault(m => m.MultidimensionalName == BotMetrics.CommandsRun.Name)?.Value;
2019-12-22 11:50:47 +00:00
var totalSystems = _metrics.Snapshot.GetForContext("Application").Gauges.FirstOrDefault(m => m.MultidimensionalName == CoreMetrics.SystemCount.Name)?.Value ?? 0;
var totalMembers = _metrics.Snapshot.GetForContext("Application").Gauges.FirstOrDefault(m => m.MultidimensionalName == CoreMetrics.MemberCount.Name)?.Value ?? 0;
var totalGroups = _metrics.Snapshot.GetForContext("Application").Gauges.FirstOrDefault(m => m.MultidimensionalName == CoreMetrics.GroupCount.Name)?.Value ?? 0;
var totalSwitches = _metrics.Snapshot.GetForContext("Application").Gauges.FirstOrDefault(m => m.MultidimensionalName == CoreMetrics.SwitchCount.Name)?.Value ?? 0;
var totalMessages = _metrics.Snapshot.GetForContext("Application").Gauges.FirstOrDefault(m => m.MultidimensionalName == CoreMetrics.MessageCount.Name)?.Value ?? 0;
2019-12-22 11:50:47 +00:00
2021-04-29 09:10:19 +00:00
var shardId = ctx.Shard.ShardId;
2021-01-15 10:29:43 +00:00
var shardTotal = ctx.Cluster.Shards.Count;
var shardUpTotal = _shards.Shards.Where(x => x.Connected).Count();
2021-01-31 15:16:52 +00:00
var shardInfo = _shards.GetShardInfo(ctx.Shard);
2019-07-16 19:59:06 +00:00
2019-12-22 11:50:47 +00:00
var process = Process.GetCurrentProcess();
var memoryUsage = process.WorkingSet64;
var now = SystemClock.Instance.GetCurrentInstant();
var shardUptime = now - shardInfo.LastConnectionTime;
2019-12-22 11:50:47 +00:00
2020-12-24 13:52:44 +00:00
var embed = new EmbedBuilder();
if (messagesReceived != null) embed.Field(new("Messages processed",$"{messagesReceived.OneMinuteRate * 60:F1}/m ({messagesReceived.FifteenMinuteRate * 60:F1}/m over 15m)", true));
if (messagesProxied != null) embed.Field(new("Messages proxied", $"{messagesProxied.OneMinuteRate * 60:F1}/m ({messagesProxied.FifteenMinuteRate * 60:F1}/m over 15m)", true));
if (commandsRun != null) embed.Field(new("Commands executed", $"{commandsRun.OneMinuteRate * 60:F1}/m ({commandsRun.FifteenMinuteRate * 60:F1}/m over 15m)", true));
embed
2020-12-24 13:52:44 +00:00
.Field(new("Current shard", $"Shard #{shardId} (of {shardTotal} total, {shardUpTotal} are up)", true))
.Field(new("Shard uptime", $"{shardUptime.FormatDuration()} ({shardInfo.DisconnectionCount} disconnections)", true))
.Field(new("CPU usage", $"{_cpu.LastCpuMeasure:P1}", true))
.Field(new("Memory usage", $"{memoryUsage / 1024 / 1024} MiB", true))
.Field(new("Latency", $"API: {apiLatency.TotalMilliseconds:F0} ms, shard: {shardInfo.ShardLatency.Milliseconds} ms", true))
.Field(new("Total numbers", $"{totalSystems:N0} systems, {totalMembers:N0} members, {totalGroups:N0} groups, {totalSwitches:N0} switches, {totalMessages:N0} messages"))
.Timestamp(now.ToDateTimeOffset().ToString("O"))
.Footer(new($"PluralKit {BuildInfoService.Version} • https://github.com/xSke/PluralKit"));;
2021-01-31 15:16:52 +00:00
await ctx.Rest.EditMessage(msg.ChannelId, msg.Id,
2020-12-24 13:52:44 +00:00
new MessageEditRequest {Content = "", Embed = embed.Build()});
2019-07-16 19:59:06 +00:00
}
2020-04-24 19:50:28 +00:00
2019-04-29 18:21:16 +00:00
}
}