From 4446aca4055da69daa398ed3103b069e65a7f2c1 Mon Sep 17 00:00:00 2001 From: Jokler Date: Wed, 4 Oct 2017 04:35:27 +0200 Subject: Initial bot source --- src/plugin.rs | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 src/plugin.rs (limited to 'src/plugin.rs') diff --git a/src/plugin.rs b/src/plugin.rs new file mode 100644 index 0000000..473cab1 --- /dev/null +++ b/src/plugin.rs @@ -0,0 +1,35 @@ +use std::fmt; +use irc::client::prelude::*; +use irc::error::Error as IrcError; + +pub trait Plugin: Send + Sync + fmt::Debug { + fn is_allowed(&self, server: &IrcServer, message: &Message) -> bool; + fn execute(&mut self, server: &IrcServer, message: &Message) -> Result<(), IrcError>; +} + +#[macro_export] +macro_rules! register_plugin { + ($t:ident) => { + #[derive(Debug)] + pub struct $t; + + impl $t { + pub fn new() -> $t { + $t { } + } + } + }; + + ($t:ident, $element: ident: $ty: ty) => { + #[derive(Debug)] + pub struct $t { + $element: $ty + } + + impl $t { + pub fn new() -> $t { + $t { $element: <$ty>::new() } + } + } + }; +} -- cgit v1.2.3-70-g09d2