2014-11-03 02:11:51 -05:00
|
|
|
extern crate irc;
|
|
|
|
|
2014-12-04 21:04:22 -05:00
|
|
|
use std::default::Default;
|
2015-02-22 21:22:33 -05:00
|
|
|
use irc::client::prelude::*;
|
2014-11-03 02:11:51 -05:00
|
|
|
|
|
|
|
fn main() {
|
2014-12-04 21:04:22 -05:00
|
|
|
let config = Config {
|
2017-06-19 13:46:01 -04:00
|
|
|
nickname: Some("pickles".to_owned()),
|
|
|
|
alt_nicks: Some(vec!["bananas".to_owned(), "apples".to_owned()]),
|
|
|
|
server: Some("irc.fyrechat.net".to_owned()),
|
2017-06-19 14:46:34 -04:00
|
|
|
channels: Some(vec!["#irc-crate".to_owned()]),
|
2017-06-19 13:59:26 -04:00
|
|
|
..Default::default()
|
2014-12-04 21:04:22 -05:00
|
|
|
};
|
2017-06-21 22:07:53 -04:00
|
|
|
|
2018-01-28 02:16:50 +01:00
|
|
|
let client = IrcClient::from_config(config).unwrap();
|
|
|
|
client.identify().unwrap();
|
2017-06-21 22:07:53 -04:00
|
|
|
|
2018-01-28 02:16:50 +01:00
|
|
|
client.for_each_incoming(|message| {
|
2017-06-21 21:54:48 -04:00
|
|
|
print!("{}", message);
|
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 13:59:26 -04:00
|
|
|
}
|
2017-06-21 21:54:48 -04:00
|
|
|
}
|
2018-01-28 02:00:04 +01:00
|
|
|
}).unwrap();
|
2014-11-03 02:11:51 -05:00
|
|
|
}
|