2023-11-24 21:45:38 +00:00
|
|
|
use std::{
|
2023-11-25 02:36:19 +00:00
|
|
|
borrow::Cow,
|
|
|
|
|
collections::{HashMap, HashSet},
|
|
|
|
|
io::{BufReader, BufWriter, Read},
|
|
|
|
|
net::SocketAddr,
|
|
|
|
|
path::PathBuf,
|
|
|
|
|
str::FromStr,
|
|
|
|
|
sync::Arc,
|
|
|
|
|
time::Duration,
|
2023-11-24 21:45:38 +00:00
|
|
|
};
|
2021-10-09 15:03:42 +01:00
|
|
|
|
2023-11-22 15:26:24 +00:00
|
|
|
use anyhow::{bail, Context};
|
2021-10-09 15:03:42 +01:00
|
|
|
use buffers::ByteString;
|
|
|
|
|
use dht::{Dht, Id20, PersistentDht, PersistentDhtConfig};
|
|
|
|
|
use librqbit_core::{
|
|
|
|
|
magnet::Magnet,
|
|
|
|
|
peer_id::generate_peer_id,
|
|
|
|
|
torrent_metainfo::{torrent_from_bytes, TorrentMetaV1Info, TorrentMetaV1Owned},
|
|
|
|
|
};
|
2021-10-10 11:39:25 +01:00
|
|
|
use parking_lot::RwLock;
|
2021-10-09 15:03:42 +01:00
|
|
|
use reqwest::Url;
|
2023-11-25 02:36:19 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2021-10-09 15:03:42 +01:00
|
|
|
use tokio_stream::StreamExt;
|
2023-11-25 02:36:19 +00:00
|
|
|
use tracing::{debug, error, error_span, info, warn};
|
2021-10-09 15:03:42 +01:00
|
|
|
|
|
|
|
|
use crate::{
|
|
|
|
|
dht_utils::{read_metainfo_from_peer_receiver, ReadMetainfoResult},
|
|
|
|
|
peer_connection::PeerConnectionOptions,
|
2023-11-25 02:36:19 +00:00
|
|
|
spawn_utils::{spawn, BlockingSpawner},
|
2023-11-25 00:24:32 +00:00
|
|
|
torrent_state::{ManagedTorrentBuilder, ManagedTorrentHandle, ManagedTorrentState},
|
2021-10-09 15:03:42 +01:00
|
|
|
};
|
|
|
|
|
|
2023-11-22 18:06:09 +00:00
|
|
|
pub const SUPPORTED_SCHEMES: [&str; 3] = ["http:", "https:", "magnet:"];
|
|
|
|
|
|
2023-11-24 14:08:02 +00:00
|
|
|
pub type TorrentId = usize;
|
|
|
|
|
|
2021-10-10 11:39:25 +01:00
|
|
|
#[derive(Default)]
|
2023-11-25 02:36:19 +00:00
|
|
|
pub struct SessionDatabase {
|
2023-11-24 21:45:38 +00:00
|
|
|
next_id: usize,
|
|
|
|
|
torrents: HashMap<usize, ManagedTorrentHandle>,
|
2021-10-10 11:39:25 +01:00
|
|
|
}
|
|
|
|
|
|
2023-11-25 02:36:19 +00:00
|
|
|
impl SessionDatabase {
|
2023-11-24 14:08:02 +00:00
|
|
|
fn add_torrent(&mut self, torrent: ManagedTorrentHandle) -> TorrentId {
|
2023-11-24 21:45:38 +00:00
|
|
|
let idx = self.next_id;
|
|
|
|
|
self.torrents.insert(idx, torrent);
|
|
|
|
|
self.next_id += 1;
|
2023-11-24 14:08:02 +00:00
|
|
|
idx
|
2021-10-10 11:39:25 +01:00
|
|
|
}
|
2023-11-25 02:36:19 +00:00
|
|
|
|
|
|
|
|
fn serialize(&self) -> SerializedSessionDatabase {
|
|
|
|
|
SerializedSessionDatabase {
|
|
|
|
|
torrents: self
|
|
|
|
|
.torrents
|
|
|
|
|
.values()
|
|
|
|
|
.map(|torrent| SerializedTorrent {
|
|
|
|
|
trackers: torrent
|
|
|
|
|
.info()
|
|
|
|
|
.trackers
|
|
|
|
|
.iter()
|
|
|
|
|
.map(|u| u.to_string())
|
|
|
|
|
.collect(),
|
|
|
|
|
info_hash: torrent.info_hash().as_string(),
|
|
|
|
|
only_files: torrent.only_files.clone(),
|
|
|
|
|
is_paused: torrent.with_state(|s| matches!(s, ManagedTorrentState::Paused(_))),
|
|
|
|
|
output_folder: torrent.info().out_dir.clone(),
|
|
|
|
|
})
|
|
|
|
|
.collect(),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
|
struct SerializedTorrent {
|
|
|
|
|
info_hash: String,
|
|
|
|
|
trackers: HashSet<String>,
|
|
|
|
|
output_folder: PathBuf,
|
|
|
|
|
only_files: Option<Vec<usize>>,
|
|
|
|
|
is_paused: bool,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
|
struct SerializedSessionDatabase {
|
|
|
|
|
torrents: Vec<SerializedTorrent>,
|
2021-10-10 11:39:25 +01:00
|
|
|
}
|
|
|
|
|
|
2021-10-09 15:03:42 +01:00
|
|
|
pub struct Session {
|
|
|
|
|
peer_id: Id20,
|
|
|
|
|
dht: Option<Dht>,
|
2023-11-25 02:36:19 +00:00
|
|
|
persistence_filename: PathBuf,
|
2021-10-09 15:03:42 +01:00
|
|
|
peer_opts: PeerConnectionOptions,
|
|
|
|
|
spawner: BlockingSpawner,
|
2023-11-25 02:36:19 +00:00
|
|
|
db: RwLock<SessionDatabase>,
|
2021-10-09 15:03:42 +01:00
|
|
|
output_folder: PathBuf,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async fn torrent_from_url(url: &str) -> anyhow::Result<TorrentMetaV1Owned> {
|
|
|
|
|
let response = reqwest::get(url)
|
|
|
|
|
.await
|
2022-12-08 20:20:23 +00:00
|
|
|
.with_context(|| format!("error downloading torrent metadata from {url}"))?;
|
2021-10-09 15:03:42 +01:00
|
|
|
if !response.status().is_success() {
|
|
|
|
|
anyhow::bail!("GET {} returned {}", url, response.status())
|
|
|
|
|
}
|
|
|
|
|
let b = response
|
|
|
|
|
.bytes()
|
|
|
|
|
.await
|
2022-12-08 20:20:23 +00:00
|
|
|
.with_context(|| format!("error reading repsonse body from {url}"))?;
|
2021-10-09 15:03:42 +01:00
|
|
|
torrent_from_bytes(&b).context("error decoding torrent")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn compute_only_files<ByteBuf: AsRef<[u8]>>(
|
|
|
|
|
torrent: &TorrentMetaV1Info<ByteBuf>,
|
|
|
|
|
filename_re: &str,
|
|
|
|
|
) -> anyhow::Result<Vec<usize>> {
|
|
|
|
|
let filename_re = regex::Regex::new(filename_re).context("filename regex is incorrect")?;
|
|
|
|
|
let mut only_files = Vec::new();
|
|
|
|
|
for (idx, (filename, _)) in torrent.iter_filenames_and_lengths()?.enumerate() {
|
|
|
|
|
let full_path = filename
|
|
|
|
|
.to_pathbuf()
|
2022-12-08 20:20:23 +00:00
|
|
|
.with_context(|| format!("filename of file {idx} is not valid utf8"))?;
|
2021-10-09 15:03:42 +01:00
|
|
|
if filename_re.is_match(full_path.to_str().unwrap()) {
|
|
|
|
|
only_files.push(idx);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if only_files.is_empty() {
|
|
|
|
|
anyhow::bail!("none of the filenames match the given regex")
|
|
|
|
|
}
|
|
|
|
|
Ok(only_files)
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-22 08:03:04 +01:00
|
|
|
#[derive(Default, Clone)]
|
2021-10-09 15:03:42 +01:00
|
|
|
pub struct AddTorrentOptions {
|
2023-11-25 02:36:19 +00:00
|
|
|
pub paused: bool,
|
2021-10-09 15:03:42 +01:00
|
|
|
pub only_files_regex: Option<String>,
|
2023-11-22 15:26:24 +00:00
|
|
|
pub only_files: Option<Vec<usize>>,
|
2021-10-09 15:03:42 +01:00
|
|
|
pub overwrite: bool,
|
|
|
|
|
pub list_only: bool,
|
|
|
|
|
pub output_folder: Option<String>,
|
2021-10-25 22:00:47 +08:00
|
|
|
pub sub_folder: Option<String>,
|
2021-10-09 15:03:42 +01:00
|
|
|
pub peer_opts: Option<PeerConnectionOptions>,
|
|
|
|
|
pub force_tracker_interval: Option<Duration>,
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-23 09:37:37 +01:00
|
|
|
pub struct ListOnlyResponse {
|
|
|
|
|
pub info_hash: Id20,
|
|
|
|
|
pub info: TorrentMetaV1Info<ByteString>,
|
|
|
|
|
pub only_files: Option<Vec<usize>>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub enum AddTorrentResponse {
|
2023-11-24 14:08:02 +00:00
|
|
|
AlreadyManaged(TorrentId, ManagedTorrentHandle),
|
2021-10-23 09:37:37 +01:00
|
|
|
ListOnly(ListOnlyResponse),
|
2023-11-24 14:08:02 +00:00
|
|
|
Added(TorrentId, ManagedTorrentHandle),
|
2021-10-23 09:37:37 +01:00
|
|
|
}
|
|
|
|
|
|
2023-11-22 18:06:09 +00:00
|
|
|
pub fn read_local_file_including_stdin(filename: &str) -> anyhow::Result<Vec<u8>> {
|
|
|
|
|
let mut buf = Vec::new();
|
|
|
|
|
if filename == "-" {
|
|
|
|
|
std::io::stdin()
|
|
|
|
|
.read_to_end(&mut buf)
|
|
|
|
|
.context("error reading stdin")?;
|
|
|
|
|
} else {
|
|
|
|
|
std::fs::File::open(filename)
|
|
|
|
|
.context("error opening")?
|
|
|
|
|
.read_to_end(&mut buf)
|
|
|
|
|
.context("error reading")?;
|
|
|
|
|
}
|
|
|
|
|
Ok(buf)
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-20 19:52:48 +00:00
|
|
|
pub enum AddTorrent<'a> {
|
|
|
|
|
Url(Cow<'a, str>),
|
2023-11-22 18:06:09 +00:00
|
|
|
TorrentFileBytes(Cow<'a, [u8]>),
|
2023-11-20 19:52:48 +00:00
|
|
|
}
|
|
|
|
|
|
2023-11-22 18:06:09 +00:00
|
|
|
impl<'a> AddTorrent<'a> {
|
|
|
|
|
// Don't call this from HTTP API.
|
|
|
|
|
pub fn from_cli_argument(path: &'a str) -> anyhow::Result<Self> {
|
|
|
|
|
if SUPPORTED_SCHEMES.iter().any(|s| path.starts_with(s)) {
|
|
|
|
|
return Ok(Self::Url(Cow::Borrowed(path)));
|
|
|
|
|
}
|
|
|
|
|
Self::from_local_filename(path)
|
2023-11-20 19:52:48 +00:00
|
|
|
}
|
|
|
|
|
|
2023-11-22 18:06:09 +00:00
|
|
|
pub fn from_url(url: impl Into<Cow<'a, str>>) -> Self {
|
|
|
|
|
Self::Url(url.into())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn from_bytes(bytes: impl Into<Cow<'a, [u8]>>) -> Self {
|
|
|
|
|
Self::TorrentFileBytes(bytes.into())
|
2023-11-20 19:52:48 +00:00
|
|
|
}
|
|
|
|
|
|
2023-11-22 18:06:09 +00:00
|
|
|
// Don't call this from HTTP API.
|
|
|
|
|
pub fn from_local_filename(filename: &str) -> anyhow::Result<Self> {
|
|
|
|
|
let file = read_local_file_including_stdin(filename)
|
|
|
|
|
.with_context(|| format!("error reading local file {filename:?}"))?;
|
|
|
|
|
Ok(Self::TorrentFileBytes(Cow::Owned(file)))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn into_bytes(self) -> Vec<u8> {
|
|
|
|
|
match self {
|
|
|
|
|
Self::Url(s) => s.into_owned().into_bytes(),
|
|
|
|
|
Self::TorrentFileBytes(b) => b.into_owned(),
|
|
|
|
|
}
|
2023-11-20 19:52:48 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-09 15:03:42 +01:00
|
|
|
#[derive(Default)]
|
|
|
|
|
pub struct SessionOptions {
|
|
|
|
|
pub disable_dht: bool,
|
|
|
|
|
pub disable_dht_persistence: bool,
|
2023-11-25 02:36:19 +00:00
|
|
|
pub persistence: bool,
|
2023-11-25 11:21:45 +00:00
|
|
|
// Will default to output_folder/.rqbit-session.json
|
|
|
|
|
pub persistence_filename: Option<PathBuf>,
|
2021-10-09 15:03:42 +01:00
|
|
|
pub dht_config: Option<PersistentDhtConfig>,
|
|
|
|
|
pub peer_id: Option<Id20>,
|
|
|
|
|
pub peer_opts: Option<PeerConnectionOptions>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Session {
|
2023-11-25 02:36:19 +00:00
|
|
|
pub async fn new(
|
|
|
|
|
output_folder: PathBuf,
|
|
|
|
|
spawner: BlockingSpawner,
|
|
|
|
|
) -> anyhow::Result<Arc<Self>> {
|
2021-10-09 15:03:42 +01:00
|
|
|
Self::new_with_opts(output_folder, spawner, SessionOptions::default()).await
|
|
|
|
|
}
|
|
|
|
|
pub async fn new_with_opts(
|
|
|
|
|
output_folder: PathBuf,
|
|
|
|
|
spawner: BlockingSpawner,
|
|
|
|
|
opts: SessionOptions,
|
2023-11-25 02:36:19 +00:00
|
|
|
) -> anyhow::Result<Arc<Self>> {
|
2021-10-09 15:03:42 +01:00
|
|
|
let peer_id = opts.peer_id.unwrap_or_else(generate_peer_id);
|
|
|
|
|
let dht = if opts.disable_dht {
|
|
|
|
|
None
|
|
|
|
|
} else {
|
|
|
|
|
let dht = if opts.disable_dht_persistence {
|
|
|
|
|
Dht::new().await
|
|
|
|
|
} else {
|
|
|
|
|
PersistentDht::create(opts.dht_config).await
|
|
|
|
|
}
|
|
|
|
|
.context("error initializing DHT")?;
|
|
|
|
|
Some(dht)
|
|
|
|
|
};
|
|
|
|
|
let peer_opts = opts.peer_opts.unwrap_or_default();
|
2023-11-25 11:21:45 +00:00
|
|
|
let session_filename = opts
|
|
|
|
|
.persistence_filename
|
|
|
|
|
.unwrap_or_else(|| output_folder.join(".rqbit-session.json"));
|
2023-11-25 02:36:19 +00:00
|
|
|
let session = Arc::new(Self {
|
|
|
|
|
persistence_filename: session_filename,
|
2021-10-09 15:03:42 +01:00
|
|
|
peer_id,
|
|
|
|
|
dht,
|
|
|
|
|
peer_opts,
|
|
|
|
|
spawner,
|
|
|
|
|
output_folder,
|
2023-11-25 02:36:19 +00:00
|
|
|
db: RwLock::new(Default::default()),
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if opts.persistence {
|
|
|
|
|
let session = session.clone();
|
|
|
|
|
spawn(
|
|
|
|
|
"session persistene",
|
2023-11-25 19:20:47 +00:00
|
|
|
error_span!("session_persistence"),
|
2023-11-25 02:36:19 +00:00
|
|
|
async move {
|
|
|
|
|
// Populate initial from the state filename
|
|
|
|
|
if let Err(e) = session.populate_from_stored().await {
|
|
|
|
|
error!("could not populate session from stored file: {:?}", e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let session = Arc::downgrade(&session);
|
|
|
|
|
|
|
|
|
|
loop {
|
|
|
|
|
tokio::time::sleep(Duration::from_secs(10)).await;
|
|
|
|
|
let session = match session.upgrade() {
|
|
|
|
|
Some(s) => s,
|
|
|
|
|
None => break,
|
|
|
|
|
};
|
|
|
|
|
if let Err(e) = session.dump_to_disk() {
|
|
|
|
|
error!("error dumping session to disk: {:?}", e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ok(session)
|
2021-10-09 15:03:42 +01:00
|
|
|
}
|
2023-11-24 14:08:02 +00:00
|
|
|
pub fn get_dht(&self) -> Option<&Dht> {
|
|
|
|
|
self.dht.as_ref()
|
2021-10-10 09:57:21 +01:00
|
|
|
}
|
2023-11-24 14:08:02 +00:00
|
|
|
|
2023-11-25 19:20:47 +00:00
|
|
|
async fn populate_from_stored(self: &Arc<Self>) -> anyhow::Result<()> {
|
2023-11-25 02:36:19 +00:00
|
|
|
let mut rdr = BufReader::new(
|
|
|
|
|
std::fs::File::open(&self.persistence_filename).with_context(|| {
|
|
|
|
|
format!("error opening session file {:?}", self.persistence_filename)
|
|
|
|
|
})?,
|
|
|
|
|
);
|
|
|
|
|
let db: SerializedSessionDatabase =
|
|
|
|
|
serde_json::from_reader(&mut rdr).context("error deserializing session database")?;
|
|
|
|
|
for storrent in db.torrents.into_iter() {
|
|
|
|
|
let magnet = Magnet {
|
|
|
|
|
info_hash: Id20::from_str(&storrent.info_hash)
|
|
|
|
|
.context("error deserializing info_hash")?,
|
|
|
|
|
trackers: storrent.trackers.into_iter().collect(),
|
|
|
|
|
};
|
|
|
|
|
if let Err(e) = self
|
|
|
|
|
.add_torrent(
|
|
|
|
|
AddTorrent::Url(Cow::Owned(magnet.to_string())),
|
|
|
|
|
Some(AddTorrentOptions {
|
|
|
|
|
paused: storrent.is_paused,
|
|
|
|
|
output_folder: Some(
|
|
|
|
|
storrent
|
|
|
|
|
.output_folder
|
|
|
|
|
.to_str()
|
|
|
|
|
.context("broken path")?
|
|
|
|
|
.to_owned(),
|
|
|
|
|
),
|
|
|
|
|
only_files: storrent.only_files,
|
|
|
|
|
overwrite: true,
|
|
|
|
|
..Default::default()
|
|
|
|
|
}),
|
|
|
|
|
)
|
|
|
|
|
.await
|
|
|
|
|
{
|
|
|
|
|
error!("error adding torrent from stored session: {:?}", e)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn dump_to_disk(&self) -> anyhow::Result<()> {
|
|
|
|
|
let tmp_filename = format!("{}.tmp", self.persistence_filename.to_str().unwrap());
|
|
|
|
|
let mut tmp = BufWriter::new(
|
|
|
|
|
std::fs::OpenOptions::new()
|
|
|
|
|
.create(true)
|
|
|
|
|
.create_new(true)
|
|
|
|
|
.truncate(true)
|
|
|
|
|
.write(true)
|
|
|
|
|
.open(&tmp_filename)
|
|
|
|
|
.with_context(|| format!("error opening {:?}", tmp_filename))?,
|
|
|
|
|
);
|
|
|
|
|
let serialized = self.db.read().serialize();
|
|
|
|
|
serde_json::to_writer(&mut tmp, &serialized).context("error serializing")?;
|
|
|
|
|
drop(tmp);
|
|
|
|
|
|
|
|
|
|
std::fs::rename(&tmp_filename, &self.persistence_filename)
|
|
|
|
|
.context("error renaming persistence file")?;
|
|
|
|
|
debug!("wrote persistence to {:?}", &self.persistence_filename);
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-24 14:29:05 +00:00
|
|
|
pub fn with_torrents<R>(
|
|
|
|
|
&self,
|
|
|
|
|
callback: impl Fn(&mut dyn Iterator<Item = (TorrentId, &ManagedTorrentHandle)>) -> R,
|
|
|
|
|
) -> R {
|
2023-11-25 02:36:19 +00:00
|
|
|
callback(&mut self.db.read().torrents.iter().map(|(id, t)| (*id, t)))
|
2021-10-10 11:52:21 +01:00
|
|
|
}
|
2023-11-24 14:08:02 +00:00
|
|
|
|
2021-10-09 15:03:42 +01:00
|
|
|
pub async fn add_torrent(
|
|
|
|
|
&self,
|
2023-11-20 19:52:48 +00:00
|
|
|
add: impl Into<AddTorrent<'_>>,
|
2021-10-09 15:03:42 +01:00
|
|
|
opts: Option<AddTorrentOptions>,
|
2021-10-23 09:37:37 +01:00
|
|
|
) -> anyhow::Result<AddTorrentResponse> {
|
2021-10-09 15:03:42 +01:00
|
|
|
// Magnet links are different in that we first need to discover the metadata.
|
2023-11-25 17:13:17 +00:00
|
|
|
let span = error_span!("add_torrent");
|
|
|
|
|
let _ = span.enter();
|
|
|
|
|
|
2021-10-09 15:03:42 +01:00
|
|
|
let opts = opts.unwrap_or_default();
|
|
|
|
|
|
2023-11-20 19:52:48 +00:00
|
|
|
let (info_hash, info, dht_rx, trackers, initial_peers) = match add.into() {
|
|
|
|
|
AddTorrent::Url(magnet) if magnet.starts_with("magnet:") => {
|
|
|
|
|
let Magnet {
|
|
|
|
|
info_hash,
|
|
|
|
|
trackers,
|
2023-11-22 15:26:24 +00:00
|
|
|
} = Magnet::parse(&magnet).context("provided path is not a valid magnet URL")?;
|
2021-10-09 15:03:42 +01:00
|
|
|
|
2023-11-20 19:52:48 +00:00
|
|
|
let dht_rx = self
|
|
|
|
|
.dht
|
|
|
|
|
.as_ref()
|
|
|
|
|
.context("magnet links without DHT are not supported")?
|
2023-11-24 14:19:39 +00:00
|
|
|
.get_peers(info_hash)?;
|
2021-10-09 15:03:42 +01:00
|
|
|
|
2023-11-20 19:52:48 +00:00
|
|
|
let trackers = trackers
|
|
|
|
|
.into_iter()
|
|
|
|
|
.filter_map(|url| match reqwest::Url::parse(&url) {
|
2021-10-09 15:03:42 +01:00
|
|
|
Ok(url) => Some(url),
|
|
|
|
|
Err(e) => {
|
2023-11-20 19:52:48 +00:00
|
|
|
warn!("error parsing tracker {} as url: {}", url, e);
|
2021-10-09 15:03:42 +01:00
|
|
|
None
|
|
|
|
|
}
|
2023-11-20 19:52:48 +00:00
|
|
|
})
|
|
|
|
|
.collect();
|
|
|
|
|
|
2023-11-25 17:13:17 +00:00
|
|
|
debug!("querying DHT for {:?}", info_hash);
|
2023-11-20 19:52:48 +00:00
|
|
|
let (info, dht_rx, initial_peers) = match read_metainfo_from_peer_receiver(
|
|
|
|
|
self.peer_id,
|
|
|
|
|
info_hash,
|
|
|
|
|
dht_rx,
|
|
|
|
|
Some(self.peer_opts),
|
|
|
|
|
)
|
|
|
|
|
.await
|
|
|
|
|
{
|
|
|
|
|
ReadMetainfoResult::Found { info, rx, seen } => (info, rx, seen),
|
|
|
|
|
ReadMetainfoResult::ChannelClosed { .. } => {
|
|
|
|
|
anyhow::bail!("DHT died, no way to discover torrent metainfo")
|
2021-10-09 15:03:42 +01:00
|
|
|
}
|
2023-11-20 19:52:48 +00:00
|
|
|
};
|
2023-11-25 17:13:17 +00:00
|
|
|
debug!("received result from DHT: {:?}", info);
|
2023-11-20 19:52:48 +00:00
|
|
|
(info_hash, info, Some(dht_rx), trackers, initial_peers)
|
|
|
|
|
}
|
|
|
|
|
other => {
|
|
|
|
|
let torrent = match other {
|
|
|
|
|
AddTorrent::Url(url)
|
|
|
|
|
if url.starts_with("http://") || url.starts_with("https://") =>
|
|
|
|
|
{
|
2023-11-22 15:26:24 +00:00
|
|
|
torrent_from_url(&url).await?
|
2023-11-20 19:52:48 +00:00
|
|
|
}
|
2023-11-22 18:06:09 +00:00
|
|
|
AddTorrent::Url(url) => {
|
|
|
|
|
bail!(
|
|
|
|
|
"unsupported URL {:?}. Supporting magnet:, http:, and https",
|
|
|
|
|
url
|
|
|
|
|
)
|
|
|
|
|
}
|
2023-11-20 19:52:48 +00:00
|
|
|
AddTorrent::TorrentFileBytes(bytes) => {
|
|
|
|
|
torrent_from_bytes(&bytes).context("error decoding torrent")?
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let dht_rx = match self.dht.as_ref() {
|
|
|
|
|
Some(dht) => {
|
|
|
|
|
debug!("reading peers for {:?} from DHT", torrent.info_hash);
|
2023-11-24 14:19:39 +00:00
|
|
|
Some(dht.get_peers(torrent.info_hash)?)
|
2023-11-20 19:52:48 +00:00
|
|
|
}
|
|
|
|
|
None => None,
|
|
|
|
|
};
|
|
|
|
|
let trackers = torrent
|
|
|
|
|
.iter_announce()
|
|
|
|
|
.filter_map(|tracker| {
|
|
|
|
|
let url = match std::str::from_utf8(tracker.as_ref()) {
|
|
|
|
|
Ok(url) => url,
|
|
|
|
|
Err(_) => {
|
|
|
|
|
warn!("cannot parse tracker url as utf-8, ignoring");
|
|
|
|
|
return None;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
match Url::parse(url) {
|
|
|
|
|
Ok(url) => Some(url),
|
|
|
|
|
Err(e) => {
|
|
|
|
|
warn!("cannot parse tracker URL {}: {}", url, e);
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
(
|
|
|
|
|
torrent.info_hash,
|
|
|
|
|
torrent.info,
|
|
|
|
|
dht_rx,
|
|
|
|
|
trackers,
|
|
|
|
|
Default::default(),
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
self.main_torrent_info(
|
|
|
|
|
info_hash,
|
|
|
|
|
info,
|
|
|
|
|
dht_rx,
|
|
|
|
|
initial_peers.into_iter().collect(),
|
|
|
|
|
trackers,
|
|
|
|
|
opts,
|
|
|
|
|
)
|
|
|
|
|
.await
|
2021-10-09 15:03:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[allow(clippy::too_many_arguments)]
|
|
|
|
|
async fn main_torrent_info(
|
|
|
|
|
&self,
|
|
|
|
|
info_hash: Id20,
|
|
|
|
|
info: TorrentMetaV1Info<ByteString>,
|
|
|
|
|
dht_peer_rx: Option<impl StreamExt<Item = SocketAddr> + Unpin + Send + Sync + 'static>,
|
|
|
|
|
initial_peers: Vec<SocketAddr>,
|
|
|
|
|
trackers: Vec<reqwest::Url>,
|
|
|
|
|
opts: AddTorrentOptions,
|
2021-10-23 09:37:37 +01:00
|
|
|
) -> anyhow::Result<AddTorrentResponse> {
|
|
|
|
|
debug!("Torrent info: {:#?}", &info);
|
2023-11-22 15:26:24 +00:00
|
|
|
|
|
|
|
|
let get_only_files =
|
|
|
|
|
|only_files: Option<Vec<usize>>, only_files_regex: Option<String>, list_only: bool| {
|
|
|
|
|
match (only_files, only_files_regex) {
|
|
|
|
|
(Some(_), Some(_)) => {
|
|
|
|
|
bail!("only_files and only_files_regex are mutually exclusive");
|
|
|
|
|
}
|
|
|
|
|
(Some(only_files), None) => {
|
|
|
|
|
let total_files = info.iter_file_lengths()?.count();
|
|
|
|
|
for id in only_files.iter().copied() {
|
|
|
|
|
if id >= total_files {
|
|
|
|
|
anyhow::bail!("file id {} is out of range", id);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Ok(Some(only_files))
|
|
|
|
|
}
|
|
|
|
|
(None, Some(filename_re)) => {
|
|
|
|
|
let only_files = compute_only_files(&info, &filename_re)?;
|
|
|
|
|
for (idx, (filename, _)) in info.iter_filenames_and_lengths()?.enumerate() {
|
|
|
|
|
if !only_files.contains(&idx) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if !list_only {
|
|
|
|
|
info!("Will download {:?}", filename);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Ok(Some(only_files))
|
|
|
|
|
}
|
|
|
|
|
(None, None) => Ok(None),
|
2021-10-23 09:37:37 +01:00
|
|
|
}
|
2023-11-22 15:26:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let only_files = get_only_files(opts.only_files, opts.only_files_regex, opts.list_only)?;
|
2021-10-09 15:03:42 +01:00
|
|
|
|
|
|
|
|
if opts.list_only {
|
2021-10-23 09:37:37 +01:00
|
|
|
return Ok(AddTorrentResponse::ListOnly(ListOnlyResponse {
|
|
|
|
|
info_hash,
|
|
|
|
|
info,
|
|
|
|
|
only_files,
|
|
|
|
|
}));
|
2021-10-09 15:03:42 +01:00
|
|
|
}
|
|
|
|
|
|
2021-10-25 22:00:47 +08:00
|
|
|
let sub_folder = opts.sub_folder.map(PathBuf::from).unwrap_or_default();
|
2021-10-09 15:03:42 +01:00
|
|
|
let output_folder = opts
|
|
|
|
|
.output_folder
|
|
|
|
|
.map(PathBuf::from)
|
2021-10-25 22:00:47 +08:00
|
|
|
.unwrap_or_else(|| self.output_folder.clone())
|
2021-10-26 10:21:02 +01:00
|
|
|
.join(sub_folder);
|
2021-10-09 15:03:42 +01:00
|
|
|
|
2023-11-24 09:30:21 +00:00
|
|
|
let mut builder = ManagedTorrentBuilder::new(info, info_hash, output_folder.clone());
|
2021-10-09 15:03:42 +01:00
|
|
|
builder
|
|
|
|
|
.overwrite(opts.overwrite)
|
|
|
|
|
.spawner(self.spawner)
|
2023-11-24 09:30:21 +00:00
|
|
|
.peer_id(self.peer_id)
|
|
|
|
|
.trackers(trackers);
|
|
|
|
|
|
2021-10-09 15:03:42 +01:00
|
|
|
if let Some(only_files) = only_files {
|
|
|
|
|
builder.only_files(only_files);
|
|
|
|
|
}
|
|
|
|
|
if let Some(interval) = opts.force_tracker_interval {
|
|
|
|
|
builder.force_tracker_interval(interval);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if let Some(t) = opts.peer_opts.unwrap_or(self.peer_opts).connect_timeout {
|
|
|
|
|
builder.peer_connect_timeout(t);
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-04 14:34:21 +00:00
|
|
|
if let Some(t) = opts.peer_opts.unwrap_or(self.peer_opts).read_write_timeout {
|
|
|
|
|
builder.peer_read_write_timeout(t);
|
|
|
|
|
}
|
|
|
|
|
|
2023-11-24 14:08:02 +00:00
|
|
|
let (managed_torrent, id) = {
|
2023-11-25 02:36:19 +00:00
|
|
|
let mut g = self.db.write();
|
2023-11-24 21:45:38 +00:00
|
|
|
if let Some((id, handle)) = g.torrents.iter().find(|(_, t)| t.info_hash() == info_hash)
|
2023-11-24 14:08:02 +00:00
|
|
|
{
|
2023-11-24 21:45:38 +00:00
|
|
|
return Ok(AddTorrentResponse::AlreadyManaged(*id, handle.clone()));
|
2021-10-10 11:39:25 +01:00
|
|
|
}
|
2023-11-24 18:28:46 +00:00
|
|
|
let next_id = g.torrents.len();
|
2023-11-25 17:13:17 +00:00
|
|
|
let managed_torrent =
|
|
|
|
|
builder.build(error_span!(parent: None, "torrent", id = next_id))?;
|
2023-11-24 14:08:02 +00:00
|
|
|
let id = g.add_torrent(managed_torrent.clone());
|
|
|
|
|
(managed_torrent, id)
|
|
|
|
|
};
|
2021-10-09 15:03:42 +01:00
|
|
|
|
2023-11-24 14:08:02 +00:00
|
|
|
{
|
2023-11-24 18:28:46 +00:00
|
|
|
let span = managed_torrent.info.span.clone();
|
2023-11-24 14:08:02 +00:00
|
|
|
let _ = span.enter();
|
|
|
|
|
managed_torrent
|
2023-11-25 02:36:19 +00:00
|
|
|
.start(initial_peers, dht_peer_rx, opts.paused)
|
2023-11-24 14:08:02 +00:00
|
|
|
.context("error starting torrent")?;
|
2021-10-09 15:03:42 +01:00
|
|
|
}
|
|
|
|
|
|
2023-11-24 14:08:02 +00:00
|
|
|
Ok(AddTorrentResponse::Added(id, managed_torrent))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn get(&self, id: TorrentId) -> Option<ManagedTorrentHandle> {
|
2023-11-25 02:36:19 +00:00
|
|
|
self.db.read().torrents.get(&id).cloned()
|
2023-11-24 21:45:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn delete(&self, id: TorrentId, delete_files: bool) -> anyhow::Result<()> {
|
|
|
|
|
let removed = self
|
2023-11-25 02:36:19 +00:00
|
|
|
.db
|
2023-11-24 21:45:38 +00:00
|
|
|
.write()
|
|
|
|
|
.torrents
|
|
|
|
|
.remove(&id)
|
|
|
|
|
.with_context(|| format!("torrent with id {} did not exist", id))?;
|
|
|
|
|
|
2023-11-25 00:24:32 +00:00
|
|
|
let paused = removed
|
|
|
|
|
.with_state_mut(|s| {
|
|
|
|
|
let paused = match s.take() {
|
|
|
|
|
ManagedTorrentState::Paused(p) => p,
|
|
|
|
|
ManagedTorrentState::Live(l) => l.pause()?,
|
|
|
|
|
_ => return Ok(None),
|
|
|
|
|
};
|
|
|
|
|
Ok::<_, anyhow::Error>(Some(paused))
|
|
|
|
|
})
|
|
|
|
|
.context("error pausing torrent");
|
|
|
|
|
|
|
|
|
|
match (paused, delete_files) {
|
|
|
|
|
(Err(e), true) => Err(e).context("torrent deleted, but could not delete files"),
|
|
|
|
|
(Err(e), false) => {
|
|
|
|
|
warn!("could not delete torrent files: {:?}", e);
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
(Ok(Some(paused)), true) => {
|
|
|
|
|
drop(paused.files);
|
|
|
|
|
for file in paused.filenames {
|
|
|
|
|
if let Err(e) = std::fs::remove_file(&file) {
|
|
|
|
|
warn!("could not delete file {:?}: {:?}", file, e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
_ => Ok(()),
|
2023-11-24 21:45:38 +00:00
|
|
|
}
|
2023-11-24 14:08:02 +00:00
|
|
|
}
|
2021-10-09 15:03:42 +01:00
|
|
|
|
2023-11-24 14:19:39 +00:00
|
|
|
pub fn unpause(&self, handle: &ManagedTorrentHandle) -> anyhow::Result<()> {
|
|
|
|
|
let peer_rx = self
|
|
|
|
|
.dht
|
|
|
|
|
.as_ref()
|
|
|
|
|
.map(|dht| dht.get_peers(handle.info_hash()))
|
|
|
|
|
.transpose()?;
|
2023-11-25 02:36:19 +00:00
|
|
|
handle.start(Default::default(), peer_rx, false)?;
|
2023-11-24 15:36:37 +00:00
|
|
|
Ok(())
|
2021-10-09 15:03:42 +01:00
|
|
|
}
|
|
|
|
|
}
|