forcebot_rs/src/core/botinstance.rs

420 lines
13 KiB
Rust
Raw Normal View History

2023-12-19 20:38:20 -05:00
use tokio::sync::mpsc::UnboundedReceiver;
use twitch_irc::login::StaticLoginCredentials;
use twitch_irc::ClientConfig;
use twitch_irc::SecureTCPTransport;
use twitch_irc::TwitchIRCClient;
2023-12-20 17:55:46 -05:00
use twitch_irc::message::PrivmsgMessage;
2023-12-19 20:38:20 -05:00
use twitch_irc::message::ServerMessage;
use twitch_irc::transport::tcp::TCPTransport;
use twitch_irc::transport::tcp::TLS;
use std::env;
use dotenv::dotenv;
2023-12-19 21:08:48 -05:00
use std::collections::HashMap;
2023-12-19 21:43:03 -05:00
use rand::Rng;
2023-12-19 21:08:48 -05:00
use crate::core::ratelimiter::RateLimiter;
2023-12-19 21:43:03 -05:00
use crate::core::ratelimiter;
2023-12-21 00:48:09 -05:00
use crate::core::botmodules;
use crate::core::botmodules::ModulesManager;
2024-01-29 22:57:07 -05:00
use crate::core::identity::{IdentityManager,Permissible};
2024-01-29 06:18:27 -05:00
2023-12-21 00:48:09 -05:00
#[derive(Debug, PartialEq, Eq, Hash, Clone)]
2023-12-20 20:25:20 -05:00
pub enum ChType {
Channel(String),
2023-12-19 22:21:56 -05:00
}
2023-12-19 21:08:48 -05:00
2023-12-20 20:25:20 -05:00
pub use ChType::Channel;
2023-12-20 20:52:20 -05:00
pub enum ModType {
BotModule(String),
}
pub use ModType::BotModule;
#[derive(Clone)]
2023-12-22 21:09:36 -05:00
pub struct Chat {
pub ratelimiters : HashMap<ChType,RateLimiter>, // used to limit messages sent per channel
pub client : TwitchIRCClient<TCPTransport<TLS>,StaticLoginCredentials>,
}
impl Chat {
2024-01-31 01:07:27 -05:00
pub fn init(ratelimiters:HashMap<ChType, RateLimiter>,
client:TwitchIRCClient<TCPTransport<TLS>, StaticLoginCredentials>) -> Chat {
Chat{
ratelimiters : ratelimiters,
client : client,
}
}
2023-12-22 21:09:36 -05:00
pub fn init_channel(&mut self, chnl:ChType) -> () {
let n = RateLimiter::new();
self.ratelimiters.insert(chnl,n);
}
pub async fn say_in_reply_to(&mut self, msg:& PrivmsgMessage , mut outmsg:String) -> () {
2024-01-29 03:20:56 -05:00
/*
formats message before sending to TwitchIRC
2024-01-29 04:09:53 -05:00
2024-01-29 03:20:56 -05:00
- [x] Custom String Formatting (e.g., adding random black spaces)
- [x] Ratelimiter Handling
- [ ] Checkf if BotActions is Enabled & Caller is Allowed to Run
*/
2023-12-22 21:09:36 -05:00
// self.client.say_in_reply_to(msg,outmsg).await.unwrap();
// // let contextratelimiter = ratelimiters.get_mut(&msg.channel_login).expect("ERROR: Issue with Rate limiters");
let contextratelimiter = self.ratelimiters
.get_mut(&Channel(String::from(&msg.channel_login)))
.expect("ERROR: Issue with Rate limiters");
// let contextratelimiter = self.ratelimiters.get(&msg.channel_login).expect("ERROR: Issue with Rate limiters");
match contextratelimiter.check_limiter() {
ratelimiter::LimiterResp::Allow => {
let maxblanks = rand::thread_rng().gen_range(1..=20);
//let mut outmsg = "GotTrolled ".to_owned();
// let mut outmsg = "annytfLurk ".to_owned();
for _i in 1..maxblanks {
let blankspace: &str = "󠀀";
outmsg.push_str(blankspace);
}
// client.say_in_reply_to(&msg,outmsg).await.unwrap();
self.client.say_in_reply_to(msg,outmsg).await.unwrap();
println!("(#{}) > {}", msg.channel_login, "rate limit counter increase");
contextratelimiter.increment_counter();
println!("{:?}",self.ratelimiters);
},
ratelimiter::LimiterResp::Skip => {
(); // do nothing otherwise
}
}
}
async fn say(&self, _:String, _:String) -> () {
// more info https://docs.rs/twitch-irc/latest/twitch_irc/client/struct.TwitchIRCClient.html#method.say
// self.client.say(msg,outmsg).await.unwrap();
}
async fn me(&self, _:String, _:String) -> () {
// more info https://docs.rs/twitch-irc/latest/twitch_irc/client/struct.TwitchIRCClient.html#method.say
// self.client.me(msg,outmsg).await.unwrap();
}
async fn me_in_reply_to(&self, _:String, _:String) -> () {
// more info https://docs.rs/twitch-irc/latest/twitch_irc/client/struct.TwitchIRCClient.html#method.say
// self.client.me(msg,outmsg).await.unwrap();
}
}
2024-01-31 18:36:23 -05:00
#[derive(Clone)]
2024-01-30 20:21:58 -05:00
pub struct BotManagers {
2024-01-31 18:36:23 -05:00
// pub botmodules : ModulesManager,
2024-01-30 20:21:58 -05:00
pub identity : IdentityManager,
2024-01-31 01:11:45 -05:00
pub chat : Chat,
2024-01-30 20:21:58 -05:00
}
impl BotManagers {
2024-01-31 01:11:45 -05:00
pub fn init(ratelimiters:HashMap<ChType, RateLimiter>,
client:TwitchIRCClient<TCPTransport<TLS>, StaticLoginCredentials>)
-> BotManagers {
2024-01-30 20:21:58 -05:00
BotManagers {
2024-01-31 18:36:23 -05:00
// botmodules : ModulesManager::init(),
2024-01-30 20:21:58 -05:00
identity : IdentityManager::init(),
2024-01-31 01:11:45 -05:00
chat : Chat::init(ratelimiters,client),
2024-01-30 20:21:58 -05:00
}
2024-01-31 09:31:14 -05:00
2024-01-30 20:21:58 -05:00
}
}
pub struct BotInstance
{
2023-12-19 20:38:20 -05:00
prefix : char,
2023-12-20 20:25:20 -05:00
bot_channel : ChType,
2023-12-19 20:38:20 -05:00
pub incoming_messages : UnboundedReceiver<ServerMessage>,
2024-01-31 01:11:45 -05:00
// pub chat : Chat,
2024-01-31 18:36:23 -05:00
pub botmodules : ModulesManager,
2023-12-19 20:38:20 -05:00
twitch_oauth : String,
2023-12-20 20:25:20 -05:00
pub bot_channels : Vec<ChType>,
2024-01-30 20:21:58 -05:00
// pub identity : IdentityManager,
pub botmgrs : BotManagers,
2023-12-19 20:38:20 -05:00
}
2023-12-20 17:55:46 -05:00
impl BotInstance
{
pub fn init() -> BotInstance
{
2023-12-19 20:38:20 -05:00
dotenv().ok();
2023-12-20 19:12:53 -05:00
let login_name = env::var("login_name").unwrap().to_owned();
2023-12-19 20:38:20 -05:00
let oauth_token = env::var("access_token").unwrap().to_owned();
2023-12-20 19:22:45 -05:00
let prefix = env::var("prefix").unwrap().to_owned().chars().next().expect("ERROR : when defining prefix");
2023-12-19 20:38:20 -05:00
/*
Vector of channels to join
*/
let mut botchannels = Vec::new();
for chnl in env::var("bot_channels").unwrap().split(',') {
// println!("(Env Var # {})",chnl);
2023-12-20 20:25:20 -05:00
botchannels.push(Channel(String::from(chnl)));
2023-12-19 20:38:20 -05:00
}
let config = ClientConfig::new_simple(
StaticLoginCredentials::new(login_name.to_owned(), Some(oauth_token.to_owned()))
);
let (incoming_messages, client) =
TwitchIRCClient::<SecureTCPTransport, StaticLoginCredentials>::new(config);
2023-12-20 20:25:20 -05:00
// hashmap for channels and their associated ratelimiters
let mut ratelimiters = HashMap::new();
for Channel(chnl) in &botchannels {
// For each channel in botchannels
2023-12-19 20:38:20 -05:00
client.join(chnl.to_owned()).unwrap();
2023-12-20 20:25:20 -05:00
2023-12-20 20:27:01 -05:00
// ratelimiters are a hashmap of channel and a corresponding rate limiter
2023-12-20 20:25:20 -05:00
let n = RateLimiter::new();
ratelimiters.insert(Channel(String::from(chnl)),n);
2023-12-22 21:09:36 -05:00
//self.chat.ratelimiters.insert(Channel(String::from(chnl)),n);
2023-12-19 20:38:20 -05:00
}
2023-12-22 21:09:36 -05:00
// let bm = &mut ModulesManager::init();
2023-12-19 21:08:48 -05:00
2023-12-20 20:25:20 -05:00
let b = BotInstance {
2023-12-20 19:22:45 -05:00
prefix : prefix,
2023-12-20 20:25:20 -05:00
bot_channel : Channel(login_name) ,
2023-12-19 21:08:48 -05:00
incoming_messages : incoming_messages,
2023-12-22 21:09:36 -05:00
//client : client,
2024-01-31 01:11:45 -05:00
// chat : Chat {
// ratelimiters : ratelimiters,
// client : client,
// } ,
2024-01-31 18:36:23 -05:00
botmodules : ModulesManager::init(),
2023-12-19 20:38:20 -05:00
twitch_oauth : oauth_token,
2024-01-29 03:20:56 -05:00
bot_channels : botchannels,
2024-01-30 20:21:58 -05:00
// identity : IdentityManager::init(),
2024-01-31 01:11:45 -05:00
botmgrs : BotManagers::init(ratelimiters,client),
2023-12-19 21:08:48 -05:00
};
2024-01-31 01:11:45 -05:00
println!("{:?}",b.botmgrs.chat.ratelimiters);
2023-12-19 21:08:48 -05:00
b
2023-12-19 20:38:20 -05:00
}
pub async fn runner(mut self) -> () {
let join_handle = tokio::spawn(async move {
2024-01-31 09:31:14 -05:00
while let Some(message) = &self.incoming_messages.recv().await {
// Below can be used to debug if I want to capture all messages
2024-01-29 22:57:07 -05:00
// println!("Received message: {:?}", message);
match message {
ServerMessage::Notice(msg) => {
// if let Some(chnl) = msg.channel_login {
// println!("NOTICE : (#{}) {}", chnl, msg.message_text);
// }
2024-01-31 09:31:14 -05:00
match &msg.channel_login {
Some(chnl) => println!("NOTICE : (#{}) {}", chnl, msg.message_text),
None => println!("NOTICE : {}", msg.message_text),
}
}
ServerMessage::Privmsg(msg) => {
println!("(#{}) {}: {}", msg.channel_login, msg.sender.name, msg.message_text);
println!("Privmsg section");
// b.listener_main_prvmsg(&msg);
2024-01-31 09:31:14 -05:00
self.listener_main_prvmsg(&msg).await;
// - BotCommand listener should likely need to be called within the above
},
ServerMessage::Whisper(msg) => {
println!("(w) {}: {}", msg.sender.name, msg.message_text);
},
ServerMessage::Join(msg) => {
println!("JOINED: {}", msg.channel_login);
},
ServerMessage::Part(msg) => {
println!("PARTED: {}", msg.channel_login);
},
_ => {}
}
}
});
join_handle.await.unwrap();
}
2023-12-20 17:55:46 -05:00
// -----------------
// PRIVATE FUNCTIONS
2024-01-29 22:57:07 -05:00
// async fn listener_main_prvmsg(&mut self,msg:PrivmsgMessage) -> () {
2024-01-31 18:36:23 -05:00
async fn listener_main_prvmsg(&self,msg:&PrivmsgMessage) -> () {
2023-12-20 17:55:46 -05:00
2024-01-29 04:09:53 -05:00
// println!("(#{}) {}: {}", msg.channel_login, msg.sender.name, msg.message_text);
2023-12-20 17:55:46 -05:00
2023-12-23 12:29:20 -05:00
// // [ ] Need to run through all Listener Bodies for Enabled Modules for the context of the message (e.g., ModStatus is Enabled in the context for the channel)
2024-01-31 18:36:23 -05:00
for (_m,acts) in &self.botmodules.botactions {
for a in acts {
2024-01-29 04:09:53 -05:00
match a {
crate::core::botmodules::BotAction::C(c) => {
/*
BotCommand handling -
2024-01-29 04:11:45 -05:00
- [x] Checks if the input message is a prefix with command name or alias
2024-01-29 22:57:07 -05:00
- [ ] Validate User can run based on identityModule(From_Bot)::can_user_run(
_usr:String,
_channelname:ChType,
_chat_badge:ChatBadge,
_cmdreqroles:Vec<UserRole>)
2024-01-29 04:09:53 -05:00
*/
2024-01-31 21:30:08 -05:00
// for v in msg.message_text.split(" ") {
// println!("args : {v}");
// }
2024-01-29 04:09:53 -05:00
let inpt = msg.message_text.split("\n").next().expect("ERROR during BotCommand");
2024-01-31 21:30:08 -05:00
let inpt = msg.message_text.split(" ").next().expect("ERROR during BotCommand");
2024-01-29 04:09:53 -05:00
// [x] Check if a bot command based on ...
// [x] prefix + command
2024-01-29 06:18:27 -05:00
2024-01-29 22:57:07 -05:00
let mut confirmed_bot_command = false;
2024-01-29 04:09:53 -05:00
if inpt == self.prefix.to_string() + c.command.as_str() {
2024-01-29 22:57:07 -05:00
confirmed_bot_command = true;
2024-01-29 04:09:53 -05:00
}
// [x] prefix + alias
for alias in &c.alias {
if inpt == self.prefix.to_string() + alias.as_str() {
2024-01-29 22:57:07 -05:00
confirmed_bot_command = true;
2024-01-29 04:09:53 -05:00
}
}
2024-01-29 06:18:27 -05:00
2024-01-29 22:57:07 -05:00
if confirmed_bot_command {
// self.identity.clone().can_user_run_PRVMSG(&msg, c.required_roles.clone());
// [ ] Around here, validate if permissable before executing
// match self.identity.clone().can_user_run_PRVMSG(&msg, c.required_roles.clone()) {
// Ok(Permissible::Allow) => c.execute(self.chat.clone(), msg.clone()).await,
// Ok(Permissible::Block) => println!("User Not allowed to run command"),
// _ => (),
// }
2024-01-31 09:31:14 -05:00
// match self.botmgrs.identity.to_owned().can_user_run_PRVMSG(&msg, c.required_roles.clone()) {
// match self.botmgrs.identity.can_user_run_PRVMSG(&msg, c.required_roles.clone()) {
2024-01-31 18:36:23 -05:00
match self.botmgrs.identity.clone().can_user_run_PRVMSG(&msg, c.required_roles.clone()) {
2024-01-29 22:57:07 -05:00
// Ok(Permissible::Allow) => (),
Permissible::Allow => {
println!("Executed as permissible");
2024-01-31 18:36:23 -05:00
c.execute(self.botmgrs.clone(), msg.clone()).await;
2024-01-29 22:57:07 -05:00
}
Permissible::Block => println!("User Not allowed to run command"),
// _ => (),
}
// c.execute(self.chat.clone(), msg.clone()).await;
2024-01-29 06:18:27 -05:00
}
2024-01-29 04:09:53 -05:00
},
2024-01-31 18:36:23 -05:00
crate::core::botmodules::BotAction::L(l) => l.execute(self.botmgrs.clone(), msg.clone()).await,
2024-01-29 06:18:27 -05:00
2024-01-29 04:09:53 -05:00
_ => (),
}
}
};
2023-12-23 12:29:20 -05:00
// // [ ] There should be a BotCommand Listener to check for prefixes ran
2023-12-20 18:49:28 -05:00
println!("End of Separate Listener Main prvmsg");
2023-12-22 21:09:36 -05:00
2023-12-20 17:55:46 -05:00
}
2023-12-22 21:09:36 -05:00
2023-12-20 17:55:46 -05:00
}
2023-12-22 21:09:36 -05:00
// ======================================
// ======================================
// ======================================
// ======================================
// UNIT TEST MODULES
#[cfg(test)]
mod tests {
fn always() {
assert_eq!(1,1);
}
}