mirror of
https://github.com/fergalmoran/Readarr.git
synced 2025-12-26 11:29:25 +00:00
New: Log additional information when processing completed torrents from rTorrent
(cherry picked from commit c7d39579b45adbe1b9da3baff587b2d7b7c9724b) Closes #2482
This commit is contained in:
@@ -179,11 +179,28 @@ namespace NzbDrone.Core.Download.Clients.RTorrent
|
|||||||
// Grab cached seedConfig
|
// Grab cached seedConfig
|
||||||
var seedConfig = _downloadSeedConfigProvider.GetSeedConfiguration(torrent.Hash);
|
var seedConfig = _downloadSeedConfigProvider.GetSeedConfiguration(torrent.Hash);
|
||||||
|
|
||||||
// Check if torrent is finished and if it exceeds cached seedConfig
|
if (torrent.IsFinished && seedConfig != null)
|
||||||
item.CanMoveFiles = item.CanBeRemoved =
|
{
|
||||||
torrent.IsFinished && seedConfig != null &&
|
var canRemove = false;
|
||||||
((torrent.Ratio / 1000.0) >= seedConfig.Ratio ||
|
|
||||||
(DateTimeOffset.Now - DateTimeOffset.FromUnixTimeSeconds(torrent.FinishedTime)) >= seedConfig.SeedTime);
|
if (torrent.Ratio / 1000.0 >= seedConfig.Ratio)
|
||||||
|
{
|
||||||
|
_logger.Trace($"{item} has met seed ratio goal of {seedConfig.Ratio}");
|
||||||
|
canRemove = true;
|
||||||
|
}
|
||||||
|
else if (DateTimeOffset.Now - DateTimeOffset.FromUnixTimeSeconds(torrent.FinishedTime) >= seedConfig.SeedTime)
|
||||||
|
{
|
||||||
|
_logger.Trace($"{item} has met seed time goal of {seedConfig.SeedTime} minutes");
|
||||||
|
canRemove = true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_logger.Trace($"{item} seeding goals have not yet been reached");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if torrent is finished and if it exceeds cached seedConfig
|
||||||
|
item.CanMoveFiles = item.CanBeRemoved = canRemove;
|
||||||
|
}
|
||||||
|
|
||||||
items.Add(item);
|
items.Add(item);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user