Update MetainfoFetcher query logic
It used to update only torrents with NULL or 0 filesizes, setting both their filesizes and the file lists. Now, it looks for both NULL or 0 filesizes and empty file lists.
Cette révision appartient à :
Parent
2da2ad4214
révision
e1f1c9d0c3
1 fichiers modifiés avec 15 ajouts et 10 suppressions
|
@ -82,8 +82,9 @@ func (fetcher *MetainfoFetcher) removeFromQueue(op *FetchOperation) bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
func updateFileList(dbEntry model.Torrent, info *metainfo.Info) error {
|
func updateFileList(dbEntry model.Torrent, info *metainfo.Info) error {
|
||||||
log.Infof("TID %d has %d files.", dbEntry.ID, len(info.Files))
|
torrentFiles := info.UpvertedFiles()
|
||||||
for _, file := range info.Files {
|
log.Infof("TID %d has %d files.", dbEntry.ID, len(torrentFiles))
|
||||||
|
for _, file := range torrentFiles {
|
||||||
path := file.DisplayPath(info)
|
path := file.DisplayPath(info)
|
||||||
fileExists := false
|
fileExists := false
|
||||||
for _, existingFile := range dbEntry.FileList {
|
for _, existingFile := range dbEntry.FileList {
|
||||||
|
@ -114,7 +115,7 @@ func updateFileList(dbEntry model.Torrent, info *metainfo.Info) error {
|
||||||
func (fetcher *MetainfoFetcher) gotResult(r Result) {
|
func (fetcher *MetainfoFetcher) gotResult(r Result) {
|
||||||
updatedSuccessfully := false
|
updatedSuccessfully := false
|
||||||
if r.err != nil {
|
if r.err != nil {
|
||||||
log.Infof("Failed to get torrent filesize (TID: %d), err %v", r.operation.torrent.ID, r.err)
|
log.Infof("Failed to get torrent metainfo (TID: %d), err %v", r.operation.torrent.ID, r.err)
|
||||||
} else if r.info.TotalLength() == 0 {
|
} else if r.info.TotalLength() == 0 {
|
||||||
log.Infof("Got length 0 for torrent TID: %d. Possible bug?", r.operation.torrent.ID)
|
log.Infof("Got length 0 for torrent TID: %d. Possible bug?", r.operation.torrent.ID)
|
||||||
} else {
|
} else {
|
||||||
|
@ -127,10 +128,12 @@ func (fetcher *MetainfoFetcher) gotResult(r Result) {
|
||||||
updatedSuccessfully = true
|
updatedSuccessfully = true
|
||||||
}
|
}
|
||||||
|
|
||||||
// Also update the File list with FileInfo, I guess.
|
// Create the file list, if it's missing.
|
||||||
err = updateFileList(r.operation.torrent, r.info)
|
if len(r.operation.torrent.FileList) == 0 {
|
||||||
if err != nil {
|
err = updateFileList(r.operation.torrent, r.info)
|
||||||
log.Infof("Failed to update file list of TID %d", r.operation.torrent.ID)
|
if err != nil {
|
||||||
|
log.Infof("Failed to update file list of TID %d", r.operation.torrent.ID)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -149,17 +152,19 @@ func (fetcher *MetainfoFetcher) fillQueue() {
|
||||||
}
|
}
|
||||||
|
|
||||||
oldest := time.Now().Add(0 - (time.Hour * time.Duration(24 * fetcher.maxDays)))
|
oldest := time.Now().Add(0 - (time.Hour * time.Duration(24 * fetcher.maxDays)))
|
||||||
params := serviceBase.CreateWhereParams("(filesize IS NULL OR filesize = 0) AND date > ?", oldest)
|
// Nice query lol
|
||||||
|
// Select the torrents with no filesize, or without any rows with torrent_id in the files table, that are younger than fetcher.MaxDays
|
||||||
|
params := serviceBase.CreateWhereParams("((filesize IS NULL OR filesize = 0) OR (torrents.torrent_id NOT IN (SELECT files.torrent_id FROM files WHERE files.torrent_id = torrents.torrent_id))) AND date > ?", oldest)
|
||||||
// Get up to queueSize + len(failed) torrents, so we get at least some fresh new ones.
|
// Get up to queueSize + len(failed) torrents, so we get at least some fresh new ones.
|
||||||
dbTorrents, count, err := torrentService.GetTorrents(params, fetcher.queueSize + len(fetcher.failedOperations), 0)
|
dbTorrents, count, err := torrentService.GetTorrents(params, fetcher.queueSize + len(fetcher.failedOperations), 0)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Infof("Failed to get torrents for filesize updating")
|
log.Infof("Failed to get torrents for metainfo updating")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if count == 0 {
|
if count == 0 {
|
||||||
log.Infof("No torrents for filesize update")
|
log.Infof("No torrents for metainfo update")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Référencer dans un nouveau ticket