1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
use std::marker::PhantomData;
use irc::client::prelude::*;
use crate::plugin::*;
use crate::FrippyClient;
use crate::error::ErrorKind as FrippyErrorKind;
use crate::error::FrippyError;
use failure::ResultExt;
#[derive(PluginName, Default, Debug)]
pub struct Help<C> {
phantom: PhantomData<C>,
}
impl<C: FrippyClient> Help<C> {
pub fn new() -> Self {
Help {
phantom: PhantomData,
}
}
}
impl<C: FrippyClient> Plugin for Help<C> {
type Client = C;
fn execute(&self, _: &Self::Client, _: &Message) -> ExecutionStatus {
ExecutionStatus::Done
}
fn execute_threaded(&self, _: &Self::Client, _: &Message) -> Result<(), FrippyError> {
panic!("Help should not use threading")
}
fn command(&self, client: &Self::Client, command: PluginCommand) -> Result<(), FrippyError> {
client
.send_notice(
&command.source,
"Available commands: help, tell, factoids, remind, quote, unicode\r\n\
For more detailed help call help on the specific command.\r\n\
Example: 'remind help'",
)
.context(FrippyErrorKind::Connection)?;
Ok(())
}
fn evaluate(&self, _: &Self::Client, _: PluginCommand) -> Result<String, String> {
Err(String::from("Help has not been added yet."))
}
}
|