aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugin.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugin.rs')
-rw-r--r--src/plugin.rs35
1 files changed, 35 insertions, 0 deletions
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() }
+ }
+ }
+ };
+}