40 lines
1.3 KiB
Rust
40 lines
1.3 KiB
Rust
extern crate irc;
|
|
|
|
use std::default::Default;
|
|
use irc::client::prelude::*;
|
|
|
|
fn main() {
|
|
let config = Config {
|
|
nickname: Some("repeater".to_owned()),
|
|
alt_nicks: Some(vec!["blaster".to_owned(), "smg".to_owned()]),
|
|
server: Some("irc.mozilla.org".to_owned()),
|
|
use_ssl: Some(true),
|
|
channels: Some(vec!["#rust-spam".to_owned()]),
|
|
burst_window_length: Some(4),
|
|
max_messages_in_burst: Some(4),
|
|
..Default::default()
|
|
};
|
|
|
|
let client = IrcClient::from_config(config).unwrap();
|
|
client.identify().unwrap();
|
|
|
|
client.for_each_incoming(|message| {
|
|
print!("{}", message);
|
|
if let Command::PRIVMSG(ref target, ref msg) = message.command {
|
|
if msg.starts_with(&*client.current_nickname()) {
|
|
let tokens: Vec<_> = msg.split(' ').collect();
|
|
if tokens.len() > 2 {
|
|
let n = tokens[0].len() + tokens[1].len() + 2;
|
|
if let Ok(count) = tokens[1].parse::<u8>() {
|
|
for _ in 0..count {
|
|
client.send_privmsg(
|
|
message.response_target().unwrap_or(target),
|
|
&msg[n..]
|
|
).unwrap();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}).unwrap()
|
|
}
|