|
|
|
@ -4549,31 +4549,18 @@ void SessionImpl::handleTorrentFinished(TorrentImpl *const torrent)
@@ -4549,31 +4549,18 @@ void SessionImpl::handleTorrentFinished(TorrentImpl *const torrent)
|
|
|
|
|
LogMsg(tr("Torrent download finished. Torrent: \"%1\"").arg(torrent->name())); |
|
|
|
|
emit torrentFinished(torrent); |
|
|
|
|
|
|
|
|
|
qDebug("Checking if the torrent contains torrent files to download"); |
|
|
|
|
// Check if there are torrent files inside
|
|
|
|
|
if (const Path exportPath = finishedTorrentExportDirectory(); !exportPath.isEmpty()) |
|
|
|
|
exportTorrentFile(torrent, exportPath); |
|
|
|
|
|
|
|
|
|
// Check whether it contains .torrent files
|
|
|
|
|
for (const Path &torrentRelpath : asConst(torrent->filePaths())) |
|
|
|
|
{ |
|
|
|
|
if (torrentRelpath.hasExtension(u".torrent"_qs)) |
|
|
|
|
{ |
|
|
|
|
qDebug("Found possible recursive torrent download."); |
|
|
|
|
const Path torrentFullpath = torrent->actualStorageLocation() / torrentRelpath; |
|
|
|
|
qDebug("Full subtorrent path is %s", qUtf8Printable(torrentFullpath.toString())); |
|
|
|
|
if (TorrentInfo::loadFromFile(torrentFullpath)) |
|
|
|
|
{ |
|
|
|
|
qDebug("emitting recursiveTorrentDownloadPossible()"); |
|
|
|
|
emit recursiveTorrentDownloadPossible(torrent); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
qDebug("Caught error loading torrent"); |
|
|
|
|
LogMsg(tr("Unable to load torrent. File: \"%1\"").arg(torrentFullpath.toString()), Log::CRITICAL); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!finishedTorrentExportDirectory().isEmpty()) |
|
|
|
|
exportTorrentFile(torrent, finishedTorrentExportDirectory()); |
|
|
|
|
|
|
|
|
|
if (!hasUnfinishedTorrents()) |
|
|
|
|
emit allTorrentsFinished(); |
|
|
|
@ -4859,25 +4846,32 @@ void SessionImpl::disableIPFilter()
@@ -4859,25 +4846,32 @@ void SessionImpl::disableIPFilter()
|
|
|
|
|
|
|
|
|
|
void SessionImpl::recursiveTorrentDownload(const TorrentID &id) |
|
|
|
|
{ |
|
|
|
|
TorrentImpl *const torrent = m_torrents.value(id); |
|
|
|
|
if (!torrent) return; |
|
|
|
|
const TorrentImpl *torrent = m_torrents.value(id); |
|
|
|
|
if (!torrent) |
|
|
|
|
return; |
|
|
|
|
|
|
|
|
|
for (const Path &torrentRelpath : asConst(torrent->filePaths())) |
|
|
|
|
{ |
|
|
|
|
if (torrentRelpath.hasExtension(u".torrent"_qs)) |
|
|
|
|
{ |
|
|
|
|
LogMsg(tr("Recursive download .torrent file within torrent. Source torrent: \"%1\". File: \"%2\"") |
|
|
|
|
.arg(torrent->name(), torrentRelpath.toString())); |
|
|
|
|
const Path torrentFullpath = torrent->savePath() / torrentRelpath; |
|
|
|
|
|
|
|
|
|
LogMsg(tr("Recursive download .torrent file within torrent. Source torrent: \"%1\". File: \"%2\"") |
|
|
|
|
.arg(torrent->name(), torrentFullpath.toString())); |
|
|
|
|
|
|
|
|
|
AddTorrentParams params; |
|
|
|
|
// Passing the save path along to the sub torrent file
|
|
|
|
|
params.savePath = torrent->savePath(); |
|
|
|
|
const nonstd::expected<TorrentInfo, QString> loadResult = TorrentInfo::loadFromFile(torrentFullpath); |
|
|
|
|
if (loadResult) |
|
|
|
|
{ |
|
|
|
|
addTorrent(loadResult.value(), params); |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
LogMsg(tr("Failed to load torrent. Error: \"%1\"").arg(loadResult.error()), Log::WARNING); |
|
|
|
|
{ |
|
|
|
|
LogMsg(tr("Failed to load .torrent file within torrent. Source torrent: \"%1\". File: \"%2\". Error: \"%3\"") |
|
|
|
|
.arg(torrent->name(), torrentFullpath.toString(), loadResult.error()), Log::WARNING); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|