refactor core to use Notif msg
This commit is contained in:
parent
c0603739c9
commit
628db3c229
4 changed files with 184 additions and 102 deletions
|
@ -410,38 +410,57 @@ impl BotInstance {
|
||||||
|
|
||||||
// Only respond to those with th ebelow User Roles
|
// Only respond to those with th ebelow User Roles
|
||||||
|
|
||||||
if user_roles.contains(&identity::UserRole::Mod(Channel(msg.channel_login.clone())))
|
let outstr =
|
||||||
|| user_roles.contains(&identity::UserRole::SupMod(Channel(msg.channel_login.clone())))
|
format!("sadg Module is disabled : {:?}",a);
|
||||||
|| user_roles.contains(&identity::UserRole::Broadcaster)
|
|
||||||
|| user_roles.contains(&identity::UserRole::BotAdmin)
|
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
// self.say_in_reply_to(
|
let params = ExecBodyParams {
|
||||||
// ¶ms.msg,
|
bot : Arc::clone(&bot),
|
||||||
// format!("uuh You do not have the right roles to send to {}",
|
msg : (*msg).clone(),
|
||||||
// channel_login.clone(),
|
parent_act : Arc::clone(&act_clone),
|
||||||
// ),
|
};
|
||||||
// params.clone()
|
|
||||||
// ).await;
|
// When sending a BotMsgTypeNotif, send_botmsg does Roles related validation as required
|
||||||
let outstr =
|
|
||||||
format!("sadg Module is disabled : {:?}",a);
|
botlock.botmgrs.chat.send_botmsg(super::chat::BotMsgType::Notif(
|
||||||
|
outstr
|
||||||
|
),
|
||||||
|
params,
|
||||||
|
).await;
|
||||||
|
|
||||||
|
|
||||||
let params = ExecBodyParams {
|
// if user_roles.contains(&identity::UserRole::Mod(Channel(msg.channel_login.clone())))
|
||||||
bot : Arc::clone(&bot),
|
// || user_roles.contains(&identity::UserRole::SupMod(Channel(msg.channel_login.clone())))
|
||||||
msg : (*msg).clone(),
|
// || user_roles.contains(&identity::UserRole::Broadcaster)
|
||||||
parent_act : Arc::clone(&act_clone),
|
// || user_roles.contains(&identity::UserRole::BotAdmin)
|
||||||
};
|
// {
|
||||||
|
|
||||||
botlock.botmgrs.chat.say_in_reply_to(
|
|
||||||
msg,
|
|
||||||
outstr,
|
|
||||||
// c.module.clone()
|
|
||||||
params,
|
|
||||||
).await;
|
|
||||||
|
|
||||||
}
|
// // self.say_in_reply_to(
|
||||||
|
// // ¶ms.msg,
|
||||||
|
// // format!("uuh You do not have the right roles to send to {}",
|
||||||
|
// // channel_login.clone(),
|
||||||
|
// // ),
|
||||||
|
// // params.clone()
|
||||||
|
// // ).await;
|
||||||
|
// let outstr =
|
||||||
|
// format!("sadg Module is disabled : {:?}",a);
|
||||||
|
|
||||||
|
|
||||||
|
// let params = ExecBodyParams {
|
||||||
|
// bot : Arc::clone(&bot),
|
||||||
|
// msg : (*msg).clone(),
|
||||||
|
// parent_act : Arc::clone(&act_clone),
|
||||||
|
// };
|
||||||
|
|
||||||
|
// botlock.botmgrs.chat.say_in_reply_to(
|
||||||
|
// msg,
|
||||||
|
// outstr,
|
||||||
|
// // c.module.clone()
|
||||||
|
// params,
|
||||||
|
// ).await;
|
||||||
|
|
||||||
|
// }
|
||||||
|
|
||||||
|
|
||||||
// botlog::trace(
|
// botlog::trace(
|
||||||
|
|
|
@ -117,9 +117,9 @@ pub async fn init(mgr: Arc<ModulesManager>) {
|
||||||
// BotAction::C(c) => Some(&(*c).module),
|
// BotAction::C(c) => Some(&(*c).module),
|
||||||
// BotAction::L(l) => Some(&(*l).module),
|
// BotAction::L(l) => Some(&(*l).module),
|
||||||
// _ => None,
|
// _ => None,
|
||||||
// };
|
// // };
|
||||||
|
|
||||||
let parent_module = params.get_parent_module().await;
|
// let parent_module = params.get_parent_module().await;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -191,20 +191,42 @@ pub async fn init(mgr: Arc<ModulesManager>) {
|
||||||
Some(¶ms.msg),
|
Some(¶ms.msg),
|
||||||
);
|
);
|
||||||
|
|
||||||
// Only call Say if there is a parent module passed
|
// We should call a notification around here
|
||||||
if parent_module.is_some() {
|
|
||||||
|
let bot = params.clone().bot;
|
||||||
|
|
||||||
|
let botclone = Arc::clone(&bot);
|
||||||
|
let botlock = botclone.read().await;
|
||||||
|
let id = botlock.get_identity();
|
||||||
|
let id = Arc::clone(&id);
|
||||||
|
let idlock = id.read().await; // <-- [ ] 03.24 - seems to work
|
||||||
|
let user_roles = idlock.getspecialuserroles(
|
||||||
|
params.msg.sender.name.clone(),
|
||||||
|
Some(Channel(params.msg.channel_login.clone()))
|
||||||
|
).await;
|
||||||
|
|
||||||
|
botlock.botmgrs.chat.send_botmsg(super::chat::BotMsgType::Notif(
|
||||||
|
outmsg.to_string()
|
||||||
|
),
|
||||||
|
params.clone(),
|
||||||
|
).await;
|
||||||
|
|
||||||
|
|
||||||
botlock
|
|
||||||
.botmgrs
|
// // Only call Say if there is a parent module passed
|
||||||
.chat
|
// if parent_module.is_some() {
|
||||||
.say_in_reply_to(
|
|
||||||
¶ms.msg,
|
|
||||||
outmsg.to_string() ,
|
// botlock
|
||||||
// parent_module.unwrap().clone()
|
// .botmgrs
|
||||||
params.clone(),
|
// .chat
|
||||||
).await;
|
// .say_in_reply_to(
|
||||||
}
|
// ¶ms.msg,
|
||||||
|
// outmsg.to_string() ,
|
||||||
|
// // parent_module.unwrap().clone()
|
||||||
|
// params.clone(),
|
||||||
|
// ).await;
|
||||||
|
// }
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -237,28 +259,39 @@ pub async fn init(mgr: Arc<ModulesManager>) {
|
||||||
id).await;
|
id).await;
|
||||||
|
|
||||||
|
|
||||||
|
// We should call a notification around here
|
||||||
|
|
||||||
|
|
||||||
let outmsg = match rslt.clone() {
|
let outmsg = match rslt.clone() {
|
||||||
ChangeResult::Failed(a) => format!("Stare Failed : {}",a),
|
ChangeResult::Failed(a) => format!("Stare Failed : {}",a),
|
||||||
ChangeResult::NoChange(a) => format!("Hmm No Change : {}",a),
|
ChangeResult::NoChange(a) => format!("Hmm No Change : {}",a),
|
||||||
ChangeResult::Success(a) => format!("YAAY Success : {}",a),
|
ChangeResult::Success(a) => format!("YAAY Success : {}",a),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
botlock.botmgrs.chat.send_botmsg(super::chat::BotMsgType::Notif(
|
||||||
// Only call Say if there is a parent module passed
|
outmsg.to_string()
|
||||||
if parent_module.is_some() {
|
),
|
||||||
|
params.clone(),
|
||||||
|
).await;
|
||||||
|
|
||||||
|
|
||||||
botlock
|
|
||||||
.botmgrs
|
|
||||||
.chat
|
|
||||||
.say_in_reply_to(
|
|
||||||
¶ms.msg,
|
|
||||||
outmsg.to_string(),
|
|
||||||
// parent_module.unwrap().clone()
|
|
||||||
params.clone(),
|
|
||||||
).await;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
// // Only call Say if there is a parent module passed
|
||||||
|
// if parent_module.is_some() {
|
||||||
|
|
||||||
|
|
||||||
|
// botlock
|
||||||
|
// .botmgrs
|
||||||
|
// .chat
|
||||||
|
// .say_in_reply_to(
|
||||||
|
// ¶ms.msg,
|
||||||
|
// outmsg.to_string(),
|
||||||
|
// // parent_module.unwrap().clone()
|
||||||
|
// params.clone(),
|
||||||
|
// ).await;
|
||||||
|
|
||||||
|
// }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -414,22 +447,29 @@ pub async fn init(mgr: Arc<ModulesManager>) {
|
||||||
// _ => None,
|
// _ => None,
|
||||||
// };
|
// };
|
||||||
|
|
||||||
|
// We should call a notification around here
|
||||||
|
|
||||||
|
botlock.botmgrs.chat.send_botmsg(super::chat::BotMsgType::Notif(
|
||||||
|
outmsg.to_string()
|
||||||
|
),
|
||||||
|
params.clone(),
|
||||||
|
).await;
|
||||||
|
|
||||||
|
|
||||||
// Only call Say if there is a parent module passed
|
// // Only call Say if there is a parent module passed
|
||||||
if parent_module.is_some() {
|
// if parent_module.is_some() {
|
||||||
|
|
||||||
botlock
|
// botlock
|
||||||
.botmgrs
|
// .botmgrs
|
||||||
.chat
|
// .chat
|
||||||
.say_in_reply_to(
|
// .say_in_reply_to(
|
||||||
¶ms.msg,
|
// ¶ms.msg,
|
||||||
outmsg.to_string(),
|
// outmsg.to_string(),
|
||||||
// ,parent_module.unwrap().clone()
|
// // ,parent_module.unwrap().clone()
|
||||||
params.clone()
|
// params.clone()
|
||||||
).await;
|
// ).await;
|
||||||
|
|
||||||
}
|
// }
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -471,21 +511,29 @@ pub async fn init(mgr: Arc<ModulesManager>) {
|
||||||
ChangeResult::Success(a) => format!("YAAY Success : {}",a),
|
ChangeResult::Success(a) => format!("YAAY Success : {}",a),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// We should call a notification around here
|
||||||
|
|
||||||
// Only call Say if there is a parent module passed
|
botlock.botmgrs.chat.send_botmsg(super::chat::BotMsgType::Notif(
|
||||||
if parent_module.is_some() {
|
outmsg.to_string()
|
||||||
|
),
|
||||||
|
params.clone(),
|
||||||
|
).await;
|
||||||
|
|
||||||
botlock
|
|
||||||
.botmgrs
|
|
||||||
.chat
|
|
||||||
.say_in_reply_to(
|
|
||||||
¶ms.msg,
|
|
||||||
outmsg.to_string(),
|
|
||||||
// parent_module.unwrap().clone()
|
|
||||||
params.clone(),
|
|
||||||
).await;
|
|
||||||
|
|
||||||
}
|
// // Only call Say if there is a parent module passed
|
||||||
|
// if parent_module.is_some() {
|
||||||
|
|
||||||
|
// botlock
|
||||||
|
// .botmgrs
|
||||||
|
// .chat
|
||||||
|
// .say_in_reply_to(
|
||||||
|
// ¶ms.msg,
|
||||||
|
// outmsg.to_string(),
|
||||||
|
// // parent_module.unwrap().clone()
|
||||||
|
// params.clone(),
|
||||||
|
// ).await;
|
||||||
|
|
||||||
|
// }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -37,7 +37,7 @@ pub struct Chat {
|
||||||
|
|
||||||
|
|
||||||
#[derive(Clone,Debug)]
|
#[derive(Clone,Debug)]
|
||||||
enum BotMsgType<'a> {
|
pub enum BotMsgType<'a> {
|
||||||
SayInReplyTo(&'a PrivmsgMessage,String),
|
SayInReplyTo(&'a PrivmsgMessage,String),
|
||||||
Say(String,String),
|
Say(String,String),
|
||||||
Notif(String), // For Bot Sent Notifications
|
Notif(String), // For Bot Sent Notifications
|
||||||
|
@ -66,7 +66,7 @@ impl Chat {
|
||||||
// async fn send_botmsg(&self, msginput: BotMsgType<'_>) {
|
// async fn send_botmsg(&self, msginput: BotMsgType<'_>) {
|
||||||
#[async_recursion]
|
#[async_recursion]
|
||||||
// async fn send_botmsg(&self, msginput: BotMsgType<'_>, params : ExecBodyParams) {
|
// async fn send_botmsg(&self, msginput: BotMsgType<'_>, params : ExecBodyParams) {
|
||||||
async fn send_botmsg(&self, msginput: BotMsgType<'async_recursion>, params : ExecBodyParams) {
|
pub async fn send_botmsg(&self, msginput: BotMsgType<'async_recursion>, params : ExecBodyParams) {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -231,21 +231,30 @@ pub async fn init(mgr: Arc<ModulesManager>) {
|
||||||
Some(¶ms.msg),
|
Some(¶ms.msg),
|
||||||
);
|
);
|
||||||
|
|
||||||
// Only call Say if there is a parent module passed
|
// We should call a notification around here
|
||||||
if parent_module.is_some() {
|
|
||||||
|
botlock.botmgrs.chat.send_botmsg(super::chat::BotMsgType::Notif(
|
||||||
|
outmsg.to_string()
|
||||||
|
),
|
||||||
|
params.clone(),
|
||||||
|
).await;
|
||||||
|
|
||||||
|
|
||||||
botlock
|
// // Only call Say if there is a parent module passed
|
||||||
.botmgrs
|
// if parent_module.is_some() {
|
||||||
.chat
|
|
||||||
.say_in_reply_to(
|
|
||||||
¶ms.msg,
|
|
||||||
outmsg.to_string(),
|
|
||||||
// parent_module.unwrap().clone()
|
|
||||||
params.clone(),
|
|
||||||
).await;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
// botlock
|
||||||
|
// .botmgrs
|
||||||
|
// .chat
|
||||||
|
// .say_in_reply_to(
|
||||||
|
// ¶ms.msg,
|
||||||
|
// outmsg.to_string(),
|
||||||
|
// // parent_module.unwrap().clone()
|
||||||
|
// params.clone(),
|
||||||
|
// ).await;
|
||||||
|
|
||||||
|
// }
|
||||||
|
|
||||||
botlog::trace(
|
botlog::trace(
|
||||||
// &format!("End of cmd_promote()"),
|
// &format!("End of cmd_promote()"),
|
||||||
|
@ -458,21 +467,27 @@ pub async fn init(mgr: Arc<ModulesManager>) {
|
||||||
Some(¶ms.msg),
|
Some(¶ms.msg),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
botlock.botmgrs.chat.send_botmsg(super::chat::BotMsgType::Notif(
|
||||||
|
outmsg.to_string()
|
||||||
|
),
|
||||||
|
params.clone(),
|
||||||
|
).await;
|
||||||
|
|
||||||
// Only call Say if there is a parent module passed
|
|
||||||
if parent_module.is_some() {
|
|
||||||
|
|
||||||
botlock
|
// // Only call Say if there is a parent module passed
|
||||||
.botmgrs
|
// if parent_module.is_some() {
|
||||||
.chat
|
|
||||||
.say_in_reply_to(
|
|
||||||
¶ms.msg,
|
|
||||||
outmsg.to_string(),
|
|
||||||
// parent_module.unwrap().clone()
|
|
||||||
params.clone()
|
|
||||||
).await;
|
|
||||||
|
|
||||||
}
|
// botlock
|
||||||
|
// .botmgrs
|
||||||
|
// .chat
|
||||||
|
// .say_in_reply_to(
|
||||||
|
// ¶ms.msg,
|
||||||
|
// outmsg.to_string(),
|
||||||
|
// // parent_module.unwrap().clone()
|
||||||
|
// params.clone()
|
||||||
|
// ).await;
|
||||||
|
|
||||||
|
// }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue