improved .logserver ref #111
This commit is contained in:
parent
a5a521ee04
commit
0a1d4c7e4c
@ -16,6 +16,8 @@ namespace NadekoBot.Modules.Administration.Commands
|
|||||||
private readonly ConcurrentDictionary<Server, Channel> loggingPresences = new ConcurrentDictionary<Server, Channel>();
|
private readonly ConcurrentDictionary<Server, Channel> loggingPresences = new ConcurrentDictionary<Server, Channel>();
|
||||||
private readonly ConcurrentDictionary<Channel, Channel> voiceChannelLog = new ConcurrentDictionary<Channel, Channel>();
|
private readonly ConcurrentDictionary<Channel, Channel> voiceChannelLog = new ConcurrentDictionary<Channel, Channel>();
|
||||||
|
|
||||||
|
private string prettyCurrentTime => $"{DateTime.Now:HH:mm:ss}";
|
||||||
|
|
||||||
public LogCommand(DiscordModule module) : base(module)
|
public LogCommand(DiscordModule module) : base(module)
|
||||||
{
|
{
|
||||||
NadekoBot.Client.MessageReceived += MsgRecivd;
|
NadekoBot.Client.MessageReceived += MsgRecivd;
|
||||||
@ -79,7 +81,9 @@ namespace NadekoBot.Modules.Administration.Commands
|
|||||||
Channel ch;
|
Channel ch;
|
||||||
if (!logs.TryGetValue(e.Server, out ch) || e.Channel == ch)
|
if (!logs.TryGetValue(e.Server, out ch) || e.Channel == ch)
|
||||||
return;
|
return;
|
||||||
await ch.SendMessage($"`Type:` **Message received** `Time:` **{DateTime.Now}** `Channel:` **{e.Channel.Name}**\n`{e.User}:` {e.Message.Text}").ConfigureAwait(false);
|
await ch.SendMessage(
|
||||||
|
$@"🕔`[{prettyCurrentTime}]` **New Message** `{e.Channel.Mention}`
|
||||||
|
👤`{e.User?.ToString() ?? ("NULL")}` {e.Message.Text}").ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
catch { }
|
catch { }
|
||||||
}
|
}
|
||||||
@ -92,7 +96,9 @@ namespace NadekoBot.Modules.Administration.Commands
|
|||||||
Channel ch;
|
Channel ch;
|
||||||
if (!logs.TryGetValue(e.Server, out ch) || e.Channel == ch)
|
if (!logs.TryGetValue(e.Server, out ch) || e.Channel == ch)
|
||||||
return;
|
return;
|
||||||
await ch.SendMessage($"`Type:` **Message deleted** `Time:` **{DateTime.Now}** `Channel:` **{e.Channel.Name}**\n`{e.User?.ToString() ?? ("NULL") }:` {e.Message.Text}").ConfigureAwait(false);
|
await ch.SendMessage(
|
||||||
|
$@"🕔`[{prettyCurrentTime}]` **Message** 🚮 `{e.Channel.Mention}`
|
||||||
|
👤`{e.User?.ToString() ?? ("NULL")}` {e.Message.Text}").ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
catch { }
|
catch { }
|
||||||
}
|
}
|
||||||
@ -105,7 +111,10 @@ namespace NadekoBot.Modules.Administration.Commands
|
|||||||
Channel ch;
|
Channel ch;
|
||||||
if (!logs.TryGetValue(e.Server, out ch) || e.Channel == ch)
|
if (!logs.TryGetValue(e.Server, out ch) || e.Channel == ch)
|
||||||
return;
|
return;
|
||||||
await ch.SendMessage($"`Type:` **Message updated** `Time:` **{DateTime.Now}** `Channel:` **{e.Channel.Name}**\n**BEFORE**: `{e.User?.ToString() ?? ("NULL")}:` {e.Before.Text}\n---------------\n**AFTER**: `{e.User}:` {e.After.Text}").ConfigureAwait(false);
|
await ch.SendMessage(
|
||||||
|
$@"🕔`[{prettyCurrentTime}]` **Message** 📝 `{e.Channel.Mention}`👤`{e.User?.ToString() ?? ("NULL")}`
|
||||||
|
\\t`Old:` {e.Before.Text}
|
||||||
|
\\t`New:` {e.After.Text}").ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
catch { }
|
catch { }
|
||||||
}
|
}
|
||||||
@ -147,6 +156,10 @@ namespace NadekoBot.Modules.Administration.Commands
|
|||||||
str += $"`New name:` **{e.After.Name}**";
|
str += $"`New name:` **{e.After.Name}**";
|
||||||
else if (e.Before.AvatarUrl != e.After.AvatarUrl)
|
else if (e.Before.AvatarUrl != e.After.AvatarUrl)
|
||||||
str += $"`New Avatar:` {e.After.AvatarUrl}";
|
str += $"`New Avatar:` {e.After.AvatarUrl}";
|
||||||
|
else if (!e.Before.Roles.SequenceEqual(e.After.Roles))
|
||||||
|
{
|
||||||
|
str += $"`Roles Changed:` {string.Join(", ", e.Before.Roles)} => {string.Join(", ", e.After.Roles)}";
|
||||||
|
}
|
||||||
else
|
else
|
||||||
return;
|
return;
|
||||||
await ch.SendMessage(str).ConfigureAwait(false);
|
await ch.SendMessage(str).ConfigureAwait(false);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user