forked from adam/discord-bot-shtik
keep track of self
This commit is contained in:
parent
66b425cd39
commit
147cba7cd3
@ -10,17 +10,22 @@ using System.Collections.Generic;
|
||||
|
||||
public class Behaver
|
||||
{
|
||||
private static List<Behavior> behaviors { get; set; } = new List<Behavior>();
|
||||
private ChattingContext _db;
|
||||
public List<Account> Selves { get; internal set; } = new List<Account>();
|
||||
public static List<Behavior> Behaviors { get; private set; } = new List<Behavior>();
|
||||
internal Behaver()
|
||||
{
|
||||
_db = new ChattingContext();
|
||||
|
||||
var subtypes = AppDomain.CurrentDomain.GetAssemblies()
|
||||
.SelectMany(domainAssembly => domainAssembly.GetTypes())
|
||||
.Where(type => type.IsSubclassOf(typeof(Behavior)) && !type.IsAbstract)
|
||||
.Where(type => type.IsSubclassOf(typeof(Behavior)) && !type.IsAbstract &&
|
||||
type.GetCustomAttributes(typeof(StaticPlzAttribute),false)?.Any() == true)
|
||||
.ToList();
|
||||
|
||||
foreach (var subtype in subtypes)
|
||||
{
|
||||
behaviors.Add((Behavior)Activator.CreateInstance(subtype));
|
||||
Behaviors.Add((Behavior)Activator.CreateInstance(subtype));
|
||||
}
|
||||
}
|
||||
static Behaver() { }
|
||||
@ -34,7 +39,7 @@ public class Behaver
|
||||
|
||||
public async Task<bool> ActOn(Message message)
|
||||
{
|
||||
foreach (var behavior in behaviors)
|
||||
foreach (var behavior in Behaviors)
|
||||
{
|
||||
if (behavior.ShouldAct(message))
|
||||
{
|
||||
@ -42,7 +47,7 @@ public class Behaver
|
||||
message.ActedOn = true;
|
||||
}
|
||||
}
|
||||
if (message.ActedOn == false && message.MentionsMe && message.Content.Contains('?'))
|
||||
if (message.ActedOn == false && message.MentionsMe && message.Content.Contains('?') && !Behaver.Instance.Selves.Any(acc => acc.Id == message.Author.Id))
|
||||
{
|
||||
Console.WriteLine("providing bullshit nonanswer / admitting uselessness");
|
||||
var responses = new List<string>(){
|
||||
@ -54,7 +59,7 @@ public class Behaver
|
||||
}
|
||||
if (message.ActedOn)
|
||||
{
|
||||
Shared.dbContext.SaveChanges();
|
||||
_db.SaveChanges();
|
||||
}
|
||||
return message.ActedOn;
|
||||
}
|
||||
|
@ -8,13 +8,14 @@ using System.Text.RegularExpressions;
|
||||
using System.Threading.Tasks;
|
||||
using System.Collections.Generic;
|
||||
|
||||
//expect a behavior to be created per mesage
|
||||
public abstract class Behavior
|
||||
{
|
||||
public abstract Task<bool> ActOn(Message message);
|
||||
|
||||
public virtual bool ShouldAct(Message message)
|
||||
{
|
||||
if(Behaver.Instance.Selves.Any(acc => acc.Id == message.Author.Id))
|
||||
return false;
|
||||
return Regex.IsMatch(message.Content, $"{Trigger}\\b", RegexOptions.IgnoreCase);
|
||||
}
|
||||
|
||||
@ -22,3 +23,6 @@ public abstract class Behavior
|
||||
public abstract string Trigger { get; }
|
||||
public virtual string Description => Name;
|
||||
}
|
||||
|
||||
|
||||
public class StaticPlzAttribute : Attribute {}
|
@ -8,6 +8,7 @@ using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using vassago.Models;
|
||||
|
||||
[StaticPlz]
|
||||
public class ChatGPTSnark : Behavior
|
||||
{
|
||||
public override string Name => "ChatGPTSnark";
|
||||
|
@ -8,6 +8,7 @@ using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using vassago.Models;
|
||||
|
||||
[StaticPlz]
|
||||
public class DefinitionSnarkCogDiss : Behavior
|
||||
{
|
||||
public override string Name => "Definition Snarkiness: cognitivie dissonance";
|
||||
|
@ -8,6 +8,7 @@ using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using vassago.Models;
|
||||
|
||||
[StaticPlz]
|
||||
public class DefinitionSnarkGaslight : Behavior
|
||||
{
|
||||
public override string Name => "Definition Snarkiness: gaslighting";
|
||||
|
@ -6,6 +6,8 @@ using System.IO;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using vassago.Models;
|
||||
|
||||
[StaticPlz]
|
||||
public class Detiktokify : Behavior
|
||||
{
|
||||
public override string Name { get => "Detiktokify"; }
|
||||
|
@ -9,6 +9,7 @@ using System.Threading.Tasks;
|
||||
using Newtonsoft.Json;
|
||||
using vassago.Models;
|
||||
|
||||
[StaticPlz]
|
||||
public class FiximageHeic : Behavior
|
||||
{
|
||||
public override string Name => "deheic";
|
||||
@ -20,6 +21,8 @@ public class FiximageHeic : Behavior
|
||||
private List<Attachment> heics = new List<Attachment>();
|
||||
public override bool ShouldAct(Message message)
|
||||
{
|
||||
if(Behaver.Instance.Selves.Any(acc => acc.Id == message.Author.Id))
|
||||
return false;
|
||||
if (message.Attachments?.Count() > 0)
|
||||
{
|
||||
foreach (var att in message.Attachments)
|
||||
|
@ -10,6 +10,7 @@ using System.Threading.Tasks;
|
||||
using Newtonsoft.Json;
|
||||
using vassago.Models;
|
||||
|
||||
[StaticPlz]
|
||||
public class GeneralSnarkCloudNative : Behavior
|
||||
{
|
||||
public override string Name => "general snarkiness: cloud native";
|
||||
@ -17,6 +18,8 @@ public class GeneralSnarkCloudNative : Behavior
|
||||
public override string Trigger => "certain tech buzzwords that no human uses in normal conversation";
|
||||
public override bool ShouldAct(Message message)
|
||||
{
|
||||
if(Behaver.Instance.Selves.Any(acc => acc.Id == message.Author.Id))
|
||||
return false;
|
||||
return Regex.IsMatch(message.Content, "\\bcloud( |-)?native\\b", RegexOptions.IgnoreCase) ||
|
||||
Regex.IsMatch(message.Content, "\\benterprise( |-)?(level|solution)\\b", RegexOptions.IgnoreCase);
|
||||
}
|
||||
|
@ -9,6 +9,7 @@ using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using vassago.Models;
|
||||
|
||||
[StaticPlz]
|
||||
public class GeneralSnarkPlaying : Behavior
|
||||
{
|
||||
public override string Name => "playin Snarkiness";
|
||||
@ -19,6 +20,8 @@ public class GeneralSnarkPlaying : Behavior
|
||||
|
||||
public override bool ShouldAct(Message message)
|
||||
{
|
||||
if(Behaver.Instance.Selves.Any(acc => acc.Id == message.Author.Id))
|
||||
return false;
|
||||
return Regex.IsMatch(message.Content, "^(s?he|(yo)?u|y'?all|they) thinks? i'?m (playin|jokin|kiddin)g?$", RegexOptions.IgnoreCase);
|
||||
}
|
||||
public override async Task<bool> ActOn(Message message)
|
||||
|
@ -8,6 +8,7 @@ using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using vassago.Models;
|
||||
|
||||
[StaticPlz]
|
||||
public class GeneralSnarkSkynet : Behavior
|
||||
{
|
||||
public override string Name => "Skynet Snarkiness";
|
||||
|
@ -9,6 +9,7 @@ using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using vassago.Models;
|
||||
|
||||
[StaticPlz]
|
||||
public class Gratitude : Behavior
|
||||
{
|
||||
public override string Name => "Gratitude";
|
||||
@ -17,6 +18,8 @@ public class Gratitude : Behavior
|
||||
|
||||
public override bool ShouldAct(Message message)
|
||||
{
|
||||
if(Behaver.Instance.Selves.Any(acc => acc.Id == message.Author.Id))
|
||||
return false;
|
||||
return Regex.IsMatch(message.Content, "\\bthank (yo)?u\\b", RegexOptions.IgnoreCase) && message.MentionsMe;
|
||||
}
|
||||
public override async Task<bool> ActOn(Message message)
|
||||
|
@ -9,6 +9,7 @@ using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using vassago.Models;
|
||||
|
||||
[StaticPlz]
|
||||
public class Joke : Behavior
|
||||
{
|
||||
public override string Name => "Joke";
|
||||
@ -34,12 +35,12 @@ public class Joke : Behavior
|
||||
{
|
||||
var firstIndexAfterQuestionMark = thisJoke.LastIndexOf('?') + 1;
|
||||
var straightline = thisJoke.Substring(0, firstIndexAfterQuestionMark);
|
||||
var punchline = thisJoke.Substring(firstIndexAfterQuestionMark, thisJoke.Length - firstIndexAfterQuestionMark);
|
||||
var punchline = thisJoke.Substring(firstIndexAfterQuestionMark, thisJoke.Length - firstIndexAfterQuestionMark).Trim();
|
||||
Task.WaitAll(message.Channel.SendMessage(straightline));
|
||||
Thread.Sleep(TimeSpan.FromSeconds(Shared.r.Next(5, 30)));
|
||||
//if (Shared.r.Next(8) == 0)
|
||||
{
|
||||
LaughAtOwnJoke.punchlinesAwaitingReaction.Add(punchline);
|
||||
Behaver.Behaviors.Add(new LaughAtOwnJoke(punchline));
|
||||
}
|
||||
await message.Channel.SendMessage(punchline);
|
||||
// var myOwnMsg = await message.Channel.SendMessage(punchline);
|
||||
|
@ -9,6 +9,7 @@ using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using vassago.Models;
|
||||
|
||||
|
||||
public class LaughAtOwnJoke : Behavior
|
||||
{
|
||||
public override string Name => "Laugh at own jokes";
|
||||
@ -16,20 +17,23 @@ public class LaughAtOwnJoke : Behavior
|
||||
public override string Trigger => "1 in 8";
|
||||
|
||||
public override string Description => Name;
|
||||
public static List<string> punchlinesAwaitingReaction = new List<string>();
|
||||
private string _punchline{get;set;}
|
||||
|
||||
public LaughAtOwnJoke(string punchline)
|
||||
{
|
||||
_punchline = punchline;
|
||||
}
|
||||
public override bool ShouldAct(Message message)
|
||||
{
|
||||
|
||||
//TODO: i need to keep track of myself from here somehow
|
||||
//return false;
|
||||
return /*message.Author == me &&*/ punchlinesAwaitingReaction.Contains(message.Content);
|
||||
Console.WriteLine($"{message.Content} == {_punchline}");
|
||||
return message.Content == _punchline
|
||||
&& Behaver.Instance.Selves.Any(acc => acc.Id == message.Author.Id);
|
||||
}
|
||||
|
||||
public override async Task<bool> ActOn(Message message)
|
||||
{
|
||||
punchlinesAwaitingReaction.Remove(message.Content);
|
||||
await message.React("\U0001F60E"); //smiling face with sunglasses
|
||||
Behaver.Behaviors.Remove(this);
|
||||
return true;
|
||||
}
|
||||
}
|
@ -10,6 +10,7 @@ using Newtonsoft.Json;
|
||||
using vassago.Models;
|
||||
using QRCoder;
|
||||
|
||||
[StaticPlz]
|
||||
public class PepTalk : Behavior
|
||||
{
|
||||
public override string Name => "PepTalk";
|
||||
|
@ -8,6 +8,7 @@ using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using vassago.Models;
|
||||
|
||||
[StaticPlz]
|
||||
public class PulseCheck : Behavior
|
||||
{
|
||||
public override string Name => "pulse check";
|
||||
|
@ -10,6 +10,7 @@ using Newtonsoft.Json;
|
||||
using vassago.Models;
|
||||
using QRCoder;
|
||||
|
||||
[StaticPlz]
|
||||
public class QRify : Behavior
|
||||
{
|
||||
public override string Name => "qr-ify";
|
||||
|
@ -3,6 +3,8 @@ namespace vassago.Behavior;
|
||||
using System.Text.RegularExpressions;
|
||||
using System.Threading.Tasks;
|
||||
using vassago.Models;
|
||||
|
||||
[StaticPlz]
|
||||
public class UnitConvert : Behavior
|
||||
{
|
||||
public override string Name => "Unit conversion";
|
||||
@ -25,7 +27,7 @@ public class UnitConvert : Behavior
|
||||
await message.Channel.SendMessage("mysteriously semi-parsable");
|
||||
}
|
||||
await message.Channel.SendMessage( "unparsable");
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
@ -8,6 +8,7 @@ using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using vassago.Models;
|
||||
|
||||
[StaticPlz]
|
||||
public class WishLuck : Behavior
|
||||
{
|
||||
public override string Name => "wish me luck";
|
||||
|
@ -29,7 +29,7 @@ public class DiscordInterface
|
||||
};
|
||||
public DiscordInterface()
|
||||
{
|
||||
_db = Shared.dbContext;
|
||||
_db = new ChattingContext();
|
||||
}
|
||||
|
||||
public async Task Init(string token)
|
||||
@ -41,6 +41,7 @@ public class DiscordInterface
|
||||
Console.WriteLine(msg.ToString());
|
||||
return Task.CompletedTask;
|
||||
};
|
||||
client.Connected += SelfConnected;
|
||||
|
||||
client.Ready += () => Task.Run(() =>
|
||||
{
|
||||
@ -78,10 +79,18 @@ public class DiscordInterface
|
||||
await client.StartAsync();
|
||||
}
|
||||
|
||||
#pragma warning disable 4014 //the "you're not awaiting this" warning. yeah I know, that's the beauty of an async method lol
|
||||
#pragma warning disable 1998 //the "it's async but you're not awaiting anything".
|
||||
private async Task SelfConnected()
|
||||
{
|
||||
|
||||
var selfUser = UpsertAccount(client.CurrentUser);
|
||||
await _db.SaveChangesAsync();
|
||||
Behaver.Instance.Selves.Add(selfUser);
|
||||
}
|
||||
|
||||
#pragma warning disable 4014 //the "you're not awaiting this" warning. yeah I know, that's the beauty of an async method lol
|
||||
#pragma warning disable 1998 //the "it's async but you're not awaiting anything".
|
||||
private async Task MessageReceived(SocketMessage messageParam)
|
||||
#pragma warning restore 1998
|
||||
#pragma warning restore 1998
|
||||
{
|
||||
var suMessage = messageParam as SocketUserMessage;
|
||||
if (suMessage == null)
|
||||
@ -99,7 +108,7 @@ public class DiscordInterface
|
||||
m.MentionsMe = true;
|
||||
}
|
||||
|
||||
// if ((suMessage.Author.Id != client.CurrentUser.Id))
|
||||
// if ((suMessage.Author.Id != client.CurrentUser.Id))
|
||||
{
|
||||
if (await Behaver.Instance.ActOn(m))
|
||||
{
|
||||
@ -112,10 +121,10 @@ public class DiscordInterface
|
||||
private void UserJoined(SocketGuildUser arg)
|
||||
{
|
||||
|
||||
var guild = UpsertChannel(arg.Guild);
|
||||
var defaultChannel = UpsertChannel(arg.Guild.DefaultChannel);
|
||||
defaultChannel.ParentChannel = guild;
|
||||
var u = UpsertUser(arg);
|
||||
var guild = UpsertChannel(arg.Guild);
|
||||
var defaultChannel = UpsertChannel(arg.Guild.DefaultChannel);
|
||||
defaultChannel.ParentChannel = guild;
|
||||
var u = UpsertAccount(arg);
|
||||
}
|
||||
private async Task ButtonHandler(SocketMessageComponent component)
|
||||
{
|
||||
@ -192,14 +201,14 @@ public class DiscordInterface
|
||||
m.Attachments.Add(UpsertAttachment(da));
|
||||
}
|
||||
}
|
||||
m.Author = UpsertUser(dMessage.Author);
|
||||
m.Author = UpsertAccount(dMessage.Author);
|
||||
m.Channel = UpsertChannel(dMessage.Channel);
|
||||
m.Content = dMessage.Content;
|
||||
m.ExternalId = dMessage.Id;
|
||||
m.Timestamp = dMessage.EditedTimestamp ?? dMessage.CreatedAt;
|
||||
|
||||
|
||||
if (dMessage.MentionedUserIds?.FirstOrDefault(muid => muid == client.CurrentUser.Id) != null)
|
||||
if(dMessage.Author.Id != client.CurrentUser.Id && dMessage.MentionedUserIds?.FirstOrDefault(muid => muid == client.CurrentUser.Id) != null)
|
||||
{
|
||||
m.MentionsMe = true;
|
||||
}
|
||||
@ -218,12 +227,17 @@ public class DiscordInterface
|
||||
var c = _db.Channels.FirstOrDefault(c => c.ExternalId == msg.Channel.Id);
|
||||
//var preferredEmote = c.EmoteOverrides?[e] ?? e; //TODO: emote overrides
|
||||
var preferredEmote = e;
|
||||
Emote emote;
|
||||
if(!Emote.TryParse(preferredEmote, out emote))
|
||||
Emoji emoji;
|
||||
if (Emoji.TryParse(preferredEmote, out emoji))
|
||||
{
|
||||
if(preferredEmote == e)
|
||||
return msg.AddReactionAsync(emoji);
|
||||
}
|
||||
Emote emote;
|
||||
if (!Emote.TryParse(preferredEmote, out emote))
|
||||
{
|
||||
if (preferredEmote == e)
|
||||
Console.Error.WriteLine($"never heard of emote {e}");
|
||||
return null;
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
return msg.AddReactionAsync(emote);
|
||||
@ -294,7 +308,7 @@ public class DiscordInterface
|
||||
c.SendFile = (f, t) => { throw new InvalidOperationException($"channel {channel.Name} is guild; send file"); };
|
||||
return c;
|
||||
}
|
||||
internal Account UpsertUser(IUser user)
|
||||
internal Account UpsertAccount(IUser user)
|
||||
{
|
||||
var addPlease = false;
|
||||
var u = _db.Users.FirstOrDefault(ui => ui.ExternalId == user.Id);
|
||||
@ -322,11 +336,11 @@ public class DiscordInterface
|
||||
//c.OtherUsers = c.OtherUsers ?? new List<User>();
|
||||
//c.OtherUsers = await channel.GetUsersAsync();
|
||||
var dChannel = client.GetChannel(channel.ExternalId.Value);
|
||||
if(dChannel is IGuild)
|
||||
if (dChannel is IGuild)
|
||||
{
|
||||
var guild = channel as IGuild;
|
||||
}
|
||||
else if(dChannel is IGuildChannel)
|
||||
else if (dChannel is IGuildChannel)
|
||||
{
|
||||
var gc = dChannel as IGuildChannel;
|
||||
}
|
||||
|
@ -23,10 +23,9 @@ namespace vassago
|
||||
public async Task MainAsync()
|
||||
{
|
||||
Shared.DBConnectionString = config.DBConnectionString;
|
||||
Shared.dbContext = new ChattingContext();
|
||||
{
|
||||
Shared.dbContext.Database.EnsureCreated();
|
||||
}
|
||||
var dbc = new ChattingContext();
|
||||
dbc.Database.EnsureCreated();
|
||||
|
||||
Conversion.Converter.Load(config.ExchangePairsLocation);
|
||||
if(config.DiscordTokens.Any())
|
||||
foreach(var dt in config.DiscordTokens)
|
||||
@ -34,7 +33,7 @@ namespace vassago
|
||||
var d = new DiscordInterface.DiscordInterface();
|
||||
await d.Init(dt);
|
||||
discords.Add(d);
|
||||
}
|
||||
}
|
||||
|
||||
await Task.Delay(-1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user