Skip to content

Commit a0e6f9c

Browse files
Remove DCC message origin check
Apparently the bot that initiates the DCC transfer is not always the same bot as the one that was sent the request.
1 parent 8e9e082 commit a0e6f9c

File tree

2 files changed

+17
-20
lines changed

2 files changed

+17
-20
lines changed

src/main.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ fn run(args: &Args) -> Result<()> {
3030
let query = args.query.join(" ");
3131
let mut packs = search(&query, args.episode)?;
3232

33-
if packs.is_empty() {
34-
return Err(anyhow!("No results"));
35-
}
36-
3733
if args.resolution != 0 {
3834
let res = format!("{}p", args.resolution);
3935
packs.retain(|p| p.name.contains(&res));
4036
}
4137

38+
if packs.is_empty() {
39+
return Err(anyhow!("No results"));
40+
}
41+
4242
println!("\x1b[;1mAvailable packs:\x1b[0m");
4343
for (i, pack) in packs.iter().enumerate() {
4444
println!(

src/xdcc/mod.rs

+13-16
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pub struct Pack {
2727
static PING_RE: SyncLazy<Regex> = SyncLazy::new(|| Regex::new(r#"^(?:\S+ )?PING (\S+)"#).unwrap());
2828
static MODE_RE: SyncLazy<Regex> = SyncLazy::new(|| Regex::new(r#"^(?:\S+ )?MODE"#).unwrap());
2929
static DCC_RE: SyncLazy<Regex> = SyncLazy::new(|| {
30-
Regex::new(r#"^:(\S+)!.+ PRIVMSG.*(?:DCC|dcc) (?:SEND|send) "?(.*?)"? (\d+) (\d+) (\d+)"#)
30+
Regex::new(r#"^(?:\S+ )?PRIVMSG.*(?:DCC|dcc) (?:SEND|send) "?(.*?)"? (\d+) (\d+) (\d+)"#)
3131
.unwrap()
3232
});
3333

@@ -103,21 +103,18 @@ fn handle_message(
103103
println!("Waiting for DCC connection...");
104104
} else if DCC_RE.is_match(message) {
105105
let caps = DCC_RE.captures(message).unwrap();
106-
let botname = &caps[1];
107-
let filename = &caps[2];
108-
let ip = &caps[3];
109-
let port = &caps[4];
110-
let size = &caps[5];
111-
112-
if botname == bot {
113-
let dcc = Dcc::new(
114-
filename.to_owned(),
115-
&format!("{}:{}", ip, port),
116-
size.parse().unwrap(),
117-
)?;
118-
119-
return Ok(Some(dcc));
120-
}
106+
let filename = &caps[1];
107+
let ip = &caps[2];
108+
let port = &caps[3];
109+
let size = &caps[4];
110+
111+
let dcc = Dcc::new(
112+
filename.to_owned(),
113+
&format!("{}:{}", ip, port),
114+
size.parse().unwrap(),
115+
)?;
116+
117+
return Ok(Some(dcc));
121118
}
122119

123120
Ok(None)

0 commit comments

Comments
 (0)