2019-08-27 15:05:51 +02:00
|
|
|
use futures::prelude::*;
|
2015-02-23 03:22:33 +01:00
|
|
|
use irc::client::prelude::*;
|
2019-08-27 15:05:51 +02:00
|
|
|
use std::time::Duration;
|
2014-11-29 11:26:55 +01:00
|
|
|
|
2018-09-17 23:50:53 +02:00
|
|
|
// NOTE: you can find an asynchronous version of this example with `IrcReactor` in `tooter.rs`.
|
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()),
|
2018-09-17 23:50:53 +02:00
|
|
|
server: Some("irc.mozilla.org".to_owned()),
|
|
|
|
channels: Some(vec!["#rust-spam".to_owned()]),
|
2017-06-19 19:59:26 +02:00
|
|
|
..Default::default()
|
2015-06-22 18:03:57 +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()?;
|
|
|
|
let mut interval = tokio::time::interval(Duration::from_secs(10)).fuse();
|
|
|
|
|
2014-11-29 11:26:55 +01:00
|
|
|
loop {
|
2019-08-27 15:05:51 +02:00
|
|
|
futures::select! {
|
|
|
|
m = stream.select_next_some() => {
|
|
|
|
println!("{}", m?);
|
|
|
|
}
|
|
|
|
_ = interval.select_next_some() => {
|
|
|
|
client.send_privmsg("#rust-spam", "TWEET TWEET")?;
|
|
|
|
}
|
|
|
|
}
|
2014-11-29 11:26:55 +01:00
|
|
|
}
|
|
|
|
}
|