2019-08-27 15:05:51 +02:00
|
|
|
use futures::prelude::*;
|
2015-02-23 03:22:33 +01:00
|
|
|
use irc::client::prelude::*;
|
2014-11-03 08:11:51 +01:00
|
|
|
|
2019-08-27 15:05:51 +02:00
|
|
|
#[tokio::main]
|
|
|
|
async fn main() -> irc::error::Result<()> {
|
2014-12-05 03:04:22 +01:00
|
|
|
let config = Config {
|
2017-06-19 19:46:01 +02:00
|
|
|
nickname: Some("pickles".to_owned()),
|
2019-09-29 00:54:07 +02:00
|
|
|
alt_nicks: vec!["bananas".to_owned(), "apples".to_owned()],
|
2018-09-17 23:50:53 +02:00
|
|
|
server: Some("irc.mozilla.org".to_owned()),
|
2019-09-29 00:54:07 +02:00
|
|
|
channels: vec!["#rust-spam".to_owned()],
|
2017-06-19 19:59:26 +02:00
|
|
|
..Default::default()
|
2014-12-05 03:04:22 +01:00
|
|
|
};
|
2017-06-22 04:07:53 +02:00
|
|
|
|
2019-08-27 15:05:51 +02:00
|
|
|
let mut client = Client::from_config(config).await?;
|
|
|
|
client.identify()?;
|
|
|
|
|
|
|
|
let mut stream = client.stream()?;
|
|
|
|
|
|
|
|
loop {
|
|
|
|
let message = stream.select_next_some().await?;
|
2017-06-22 04:07:53 +02:00
|
|
|
|
2018-01-28 02:00:04 +01:00
|
|
|
if let Command::PRIVMSG(ref target, ref msg) = message.command {
|
|
|
|
if msg.contains("pickles") {
|
2018-01-28 02:16:50 +01:00
|
|
|
client.send_privmsg(target, "Hi!").unwrap();
|
2017-06-19 19:59:26 +02:00
|
|
|
}
|
2017-06-22 03:54:48 +02:00
|
|
|
}
|
2019-08-27 15:05:51 +02:00
|
|
|
}
|
2014-11-03 08:11:51 +01:00
|
|
|
}
|