Couple of fixes
This commit is contained in:
6
go.mod
6
go.mod
@@ -3,7 +3,9 @@ module github.com/debridmediamanager.com/zurg
|
|||||||
go 1.21.3
|
go 1.21.3
|
||||||
|
|
||||||
require (
|
require (
|
||||||
|
github.com/elliotchance/orderedmap/v2 v2.2.0
|
||||||
github.com/hashicorp/golang-lru/v2 v2.0.7
|
github.com/hashicorp/golang-lru/v2 v2.0.7
|
||||||
|
github.com/nutsdb/nutsdb v0.14.1
|
||||||
go.uber.org/zap v1.26.0
|
go.uber.org/zap v1.26.0
|
||||||
gopkg.in/yaml.v3 v3.0.1
|
gopkg.in/yaml.v3 v3.0.1
|
||||||
)
|
)
|
||||||
@@ -12,12 +14,8 @@ require (
|
|||||||
github.com/antlabs/stl v0.0.1 // indirect
|
github.com/antlabs/stl v0.0.1 // indirect
|
||||||
github.com/antlabs/timer v0.0.11 // indirect
|
github.com/antlabs/timer v0.0.11 // indirect
|
||||||
github.com/bwmarrin/snowflake v0.3.0 // indirect
|
github.com/bwmarrin/snowflake v0.3.0 // indirect
|
||||||
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
|
|
||||||
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
|
|
||||||
github.com/elliotchance/orderedmap/v2 v2.2.0 // indirect
|
|
||||||
github.com/emirpasic/gods v1.18.1 // indirect
|
github.com/emirpasic/gods v1.18.1 // indirect
|
||||||
github.com/gofrs/flock v0.8.1 // indirect
|
github.com/gofrs/flock v0.8.1 // indirect
|
||||||
github.com/nutsdb/nutsdb v0.14.1 // indirect
|
|
||||||
github.com/pkg/errors v0.9.1 // indirect
|
github.com/pkg/errors v0.9.1 // indirect
|
||||||
github.com/tidwall/btree v1.6.0 // indirect
|
github.com/tidwall/btree v1.6.0 // indirect
|
||||||
github.com/xujiajun/mmap-go v1.0.1 // indirect
|
github.com/xujiajun/mmap-go v1.0.1 // indirect
|
||||||
|
|||||||
6
go.sum
6
go.sum
@@ -4,10 +4,6 @@ github.com/antlabs/timer v0.0.11 h1:z75oGFLeTqJHMOcWzUPBKsBbQAz4Ske3AfqJ7bsdcwU=
|
|||||||
github.com/antlabs/timer v0.0.11/go.mod h1:JNV8J3yGvMKhCavGXgj9HXrVZkfdQyKCcqXBT8RdyuU=
|
github.com/antlabs/timer v0.0.11/go.mod h1:JNV8J3yGvMKhCavGXgj9HXrVZkfdQyKCcqXBT8RdyuU=
|
||||||
github.com/bwmarrin/snowflake v0.3.0 h1:xm67bEhkKh6ij1790JB83OujPR5CzNe8QuQqAgISZN0=
|
github.com/bwmarrin/snowflake v0.3.0 h1:xm67bEhkKh6ij1790JB83OujPR5CzNe8QuQqAgISZN0=
|
||||||
github.com/bwmarrin/snowflake v0.3.0/go.mod h1:NdZxfVWX+oR6y2K0o6qAYv6gIOP9rjG0/E9WsDpxqwE=
|
github.com/bwmarrin/snowflake v0.3.0/go.mod h1:NdZxfVWX+oR6y2K0o6qAYv6gIOP9rjG0/E9WsDpxqwE=
|
||||||
github.com/cenkalti/backoff v2.2.1+incompatible h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4=
|
|
||||||
github.com/cenkalti/backoff v2.2.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM=
|
|
||||||
github.com/cenkalti/backoff/v4 v4.2.1 h1:y4OZtCnogmCPw98Zjyt5a6+QwPLGkiQsYW5oUqylYbM=
|
|
||||||
github.com/cenkalti/backoff/v4 v4.2.1/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE=
|
|
||||||
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||||
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
|
||||||
@@ -46,6 +42,8 @@ golang.org/x/sys v0.10.0 h1:SqMFp9UcQJZa+pmYuAKjd9xq1f0j5rLcDIk0mj4qAsA=
|
|||||||
golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
|
||||||
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
|
||||||
|
gopkg.in/go-playground/assert.v1 v1.2.1 h1:xoYuJVE7KT85PYWrN730RguIQO0ePzVRfFMXadIrXTM=
|
||||||
|
gopkg.in/go-playground/assert.v1 v1.2.1/go.mod h1:9RXL0bg/zibRAgZUYszZSwO/z8Y/a8bDuhia5mkpMnE=
|
||||||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
||||||
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
|
||||||
|
|||||||
@@ -26,8 +26,6 @@ type TorrentManager struct {
|
|||||||
config config.ConfigInterface
|
config config.ConfigInterface
|
||||||
db *nutsdb.DB
|
db *nutsdb.DB
|
||||||
workerPool chan bool
|
workerPool chan bool
|
||||||
directoryMap map[string][]string
|
|
||||||
processedTorrents map[string][]string
|
|
||||||
mu *sync.Mutex
|
mu *sync.Mutex
|
||||||
log *zap.SugaredLogger
|
log *zap.SugaredLogger
|
||||||
}
|
}
|
||||||
@@ -38,13 +36,11 @@ type TorrentManager struct {
|
|||||||
func NewTorrentManager(config config.ConfigInterface, db *nutsdb.DB) *TorrentManager {
|
func NewTorrentManager(config config.ConfigInterface, db *nutsdb.DB) *TorrentManager {
|
||||||
t := &TorrentManager{
|
t := &TorrentManager{
|
||||||
TorrentMap: orderedmap.NewOrderedMap[string, *Torrent](),
|
TorrentMap: orderedmap.NewOrderedMap[string, *Torrent](),
|
||||||
requiredVersion: fmt.Sprintf("10.11.2023/retain=%t", config.EnableRetainFolderNameExtension()),
|
requiredVersion: "10.11.2023",
|
||||||
rd: realdebrid.NewRealDebrid(config.GetToken(), logutil.NewLogger().Named("realdebrid")),
|
rd: realdebrid.NewRealDebrid(config.GetToken(), logutil.NewLogger().Named("realdebrid")),
|
||||||
config: config,
|
config: config,
|
||||||
db: db,
|
db: db,
|
||||||
workerPool: make(chan bool, config.GetNumOfWorkers()),
|
workerPool: make(chan bool, config.GetNumOfWorkers()),
|
||||||
directoryMap: make(map[string][]string),
|
|
||||||
processedTorrents: make(map[string][]string),
|
|
||||||
mu: &sync.Mutex{},
|
mu: &sync.Mutex{},
|
||||||
log: logutil.NewLogger().Named("manager"),
|
log: logutil.NewLogger().Named("manager"),
|
||||||
}
|
}
|
||||||
@@ -68,6 +64,7 @@ func NewTorrentManager(config config.ConfigInterface, db *nutsdb.DB) *TorrentMan
|
|||||||
<-t.workerPool
|
<-t.workerPool
|
||||||
}(i)
|
}(i)
|
||||||
}
|
}
|
||||||
|
t.log.Infof("Got %d torrents", len(newTorrents))
|
||||||
wg.Wait()
|
wg.Wait()
|
||||||
close(torrentsChan)
|
close(torrentsChan)
|
||||||
for newTorrent := range torrentsChan {
|
for newTorrent := range torrentsChan {
|
||||||
@@ -84,9 +81,9 @@ func NewTorrentManager(config config.ConfigInterface, db *nutsdb.DB) *TorrentMan
|
|||||||
t.checksum = t.getChecksum()
|
t.checksum = t.getChecksum()
|
||||||
t.mu.Unlock()
|
t.mu.Unlock()
|
||||||
|
|
||||||
// if t.config.EnableRepair() {
|
if t.config.EnableRepair() {
|
||||||
// go t.repairAll()
|
go t.repairAll()
|
||||||
// }
|
}
|
||||||
go t.startRefreshJob()
|
go t.startRefreshJob()
|
||||||
|
|
||||||
return t
|
return t
|
||||||
@@ -96,6 +93,7 @@ func (t *TorrentManager) mergeToMain(t1, t2 *Torrent) *Torrent {
|
|||||||
merged := t1
|
merged := t1
|
||||||
|
|
||||||
// Merge SelectedFiles
|
// Merge SelectedFiles
|
||||||
|
// iteration works!
|
||||||
for el := t2.SelectedFiles.Front(); el != nil; el = el.Next() {
|
for el := t2.SelectedFiles.Front(); el != nil; el = el.Next() {
|
||||||
if _, ok := merged.SelectedFiles.Get(el.Key); !ok {
|
if _, ok := merged.SelectedFiles.Get(el.Key); !ok {
|
||||||
merged.SelectedFiles.Set(el.Key, el.Value)
|
merged.SelectedFiles.Set(el.Key, el.Value)
|
||||||
@@ -133,8 +131,8 @@ type torrentsResponse struct {
|
|||||||
|
|
||||||
// generates a checksum based on the number of torrents, the first torrent id and the number of active torrents
|
// generates a checksum based on the number of torrents, the first torrent id and the number of active torrents
|
||||||
func (t *TorrentManager) getChecksum() string {
|
func (t *TorrentManager) getChecksum() string {
|
||||||
torrentsChan := make(chan torrentsResponse)
|
torrentsChan := make(chan torrentsResponse, 1)
|
||||||
countChan := make(chan int)
|
countChan := make(chan int, 1)
|
||||||
errChan := make(chan error, 2) // accommodate errors from both goroutines
|
errChan := make(chan error, 2) // accommodate errors from both goroutines
|
||||||
|
|
||||||
// GetTorrents request
|
// GetTorrents request
|
||||||
@@ -199,8 +197,9 @@ func (t *TorrentManager) startRefreshJob() {
|
|||||||
t.log.Errorf("Cannot get torrents: %v\n", err)
|
t.log.Errorf("Cannot get torrents: %v\n", err)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
t.log.Infof("Detected changes! Refreshing %d torrents", len(newTorrents))
|
||||||
|
|
||||||
torrentsChan := make(chan *Torrent)
|
torrentsChan := make(chan *Torrent, len(newTorrents))
|
||||||
var wg sync.WaitGroup
|
var wg sync.WaitGroup
|
||||||
for i := range newTorrents {
|
for i := range newTorrents {
|
||||||
wg.Add(1)
|
wg.Add(1)
|
||||||
@@ -212,20 +211,23 @@ func (t *TorrentManager) startRefreshJob() {
|
|||||||
}(i)
|
}(i)
|
||||||
}
|
}
|
||||||
|
|
||||||
// deletes
|
// iteration works!
|
||||||
// for el := t.TorrentMap.Front(); el != nil; el = el.Next() {
|
var toDelete []string
|
||||||
// found := false
|
for el := t.TorrentMap.Front(); el != nil; el = el.Next() {
|
||||||
// for _, newTorrent := range newTorrents {
|
found := false
|
||||||
// if newTorrent.ID == el.Value.AccessKey {
|
for _, newTorrent := range newTorrents {
|
||||||
// found = true
|
if newTorrent.ID == el.Value.AccessKey {
|
||||||
// break
|
found = true
|
||||||
// }
|
break
|
||||||
// }
|
}
|
||||||
// if !found {
|
}
|
||||||
// t.log.Infof("Torrent id=%s is no longer found", accessKey)
|
if !found {
|
||||||
// t.TorrentMap.Delete(accessKey)
|
toDelete = append(toDelete, el.Key)
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
|
for _, accessKey := range toDelete {
|
||||||
|
t.TorrentMap.Delete(accessKey)
|
||||||
|
}
|
||||||
|
|
||||||
wg.Wait()
|
wg.Wait()
|
||||||
close(torrentsChan)
|
close(torrentsChan)
|
||||||
@@ -243,9 +245,9 @@ func (t *TorrentManager) startRefreshJob() {
|
|||||||
t.checksum = t.getChecksum()
|
t.checksum = t.getChecksum()
|
||||||
t.mu.Unlock()
|
t.mu.Unlock()
|
||||||
|
|
||||||
// if t.config.EnableRepair() {
|
if t.config.EnableRepair() {
|
||||||
// go t.repairAll()
|
go t.repairAll()
|
||||||
// }
|
}
|
||||||
go OnLibraryUpdateHook(t.config)
|
go OnLibraryUpdateHook(t.config)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -289,34 +291,37 @@ func (t *TorrentManager) getMoreInfo(rdTorrent realdebrid.Torrent) *Torrent {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
if selectedFiles.Len() > len(info.Links) && info.Progress == 100 {
|
if selectedFiles.Len() > len(info.Links) && info.Progress == 100 {
|
||||||
t.log.Debugf("Some links has expired for %s %s: %d selected but only %d link(s)", info.ID, info.Name, selectedFiles.Len(), len(info.Links))
|
t.log.Debugf("%d links has expired for %s %s", selectedFiles.Len()-len(info.Links), info.ID, info.Name)
|
||||||
// chaotic file means RD will not output the desired file selection
|
// chaotic file means RD will not output the desired file selection
|
||||||
// e.g. even if we select just a single mkv, it will output a rar
|
// e.g. even if we select just a single mkv, it will output a rar
|
||||||
var isChaotic bool
|
var isChaotic bool
|
||||||
selectedFiles, isChaotic = t.organizeChaos(&rdTorrent, selectedFiles)
|
selectedFiles, isChaotic = t.organizeChaos(&rdTorrent, selectedFiles)
|
||||||
if isChaotic && selectedFiles.Len() == 1 {
|
if isChaotic {
|
||||||
t.log.Infof("Torrent %s %s is unfixable, it's always returning an unstreamable link, ignoring", info.ID, info.Name)
|
t.log.Errorf("Torrent id=%s %s is unfixable, it's always returning an unstreamable link (it is no longer shown in your directories)", info.ID, info.Name)
|
||||||
t.log.Debugf("You can try fixing it yourself magnet:?xt=urn:btih:%s", info.Hash)
|
t.log.Debugf("You can try fixing it yourself magnet:?xt=urn:btih:%s", info.Hash)
|
||||||
|
return nil
|
||||||
} else {
|
} else {
|
||||||
if streamableCount > 1 {
|
if streamableCount > 1 {
|
||||||
// case for repair 1: it's missing some links (or all links)
|
// case for repair 1: it's missing some links (or all links)
|
||||||
// if we download it as is, we might get the same file over and over again
|
// if we download it as is, we might get the same file over and over again
|
||||||
// so we need to redownload it with other files selected
|
// so we need to redownload it with other files selected
|
||||||
// that is why we check if there are other streamable files
|
// that is why we check if there are other streamable files
|
||||||
t.log.Infof("Torrent %s %s marked for repair", info.ID, info.Name)
|
t.log.Infof("Torrent id=%s %s marked for repair", info.ID, info.Name)
|
||||||
forRepair = true
|
forRepair = true
|
||||||
} else {
|
} else {
|
||||||
t.log.Infof("Torrent %s %s is unfixable, the lone streamable link has expired, ignoring", info.ID, info.Name)
|
t.log.Errorf("Torrent id=%s %s is unfixable, the lone streamable link has expired (it is no longer shown in your directories)", info.ID, info.Name)
|
||||||
t.log.Debugf("You can try fixing it yourself magnet:?xt=urn:btih:%s", info.Hash)
|
t.log.Debugf("You can try fixing it yourself magnet:?xt=urn:btih:%s", info.Hash)
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if selectedFiles.Len() == len(info.Links) {
|
} else if selectedFiles.Len() == len(info.Links) {
|
||||||
// all links are still intact! good!
|
// all links are still intact! good!
|
||||||
|
// iteration works!
|
||||||
i := 0
|
i := 0
|
||||||
for el := selectedFiles.Front(); el != nil; el = el.Next() {
|
for el := selectedFiles.Front(); el != nil; el = el.Next() {
|
||||||
if i < len(info.Links) {
|
if i < len(info.Links) {
|
||||||
file := el.Value
|
file := el.Value
|
||||||
file.Link = info.Links[i]
|
file.Link = info.Links[i] // verified working!
|
||||||
selectedFiles.Set(el.Key, file)
|
selectedFiles.Set(el.Key, file)
|
||||||
i++
|
i++
|
||||||
}
|
}
|
||||||
@@ -446,11 +451,9 @@ func (t *TorrentManager) organizeChaos(info *realdebrid.Torrent, selectedFiles *
|
|||||||
}
|
}
|
||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
t.log.Debugf("Checking %d link(s) for problematic torrent id=%s", len(info.Links), info.ID)
|
|
||||||
wg.Wait()
|
wg.Wait()
|
||||||
close(sem)
|
close(sem)
|
||||||
close(resultsChan)
|
close(resultsChan)
|
||||||
t.log.Debugf("Closing results channel for torrent id=%s, checking...", info.ID)
|
|
||||||
}()
|
}()
|
||||||
|
|
||||||
isChaotic := false
|
isChaotic := false
|
||||||
@@ -459,9 +462,9 @@ func (t *TorrentManager) organizeChaos(info *realdebrid.Torrent, selectedFiles *
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
found := false
|
found := false
|
||||||
|
// iteration works!
|
||||||
for el := selectedFiles.Front(); el != nil; el = el.Next() {
|
for el := selectedFiles.Front(); el != nil; el = el.Next() {
|
||||||
if file, _ := selectedFiles.Get(el.Key); strings.Contains(file.Path, result.Response.Filename) {
|
if file, _ := selectedFiles.Get(el.Key); strings.Contains(file.Path, result.Response.Filename) {
|
||||||
t.log.Debugf("Found a file that is in the selection for torrent id=%s: %s", info.ID, result.Response.Filename)
|
|
||||||
file.Link = result.Response.Link
|
file.Link = result.Response.Link
|
||||||
found = true
|
found = true
|
||||||
}
|
}
|
||||||
@@ -478,6 +481,8 @@ func (t *TorrentManager) organizeChaos(info *realdebrid.Torrent, selectedFiles *
|
|||||||
},
|
},
|
||||||
Link: result.Response.Link,
|
Link: result.Response.Link,
|
||||||
})
|
})
|
||||||
|
} else {
|
||||||
|
isChaotic = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -485,47 +490,48 @@ func (t *TorrentManager) organizeChaos(info *realdebrid.Torrent, selectedFiles *
|
|||||||
return selectedFiles, isChaotic
|
return selectedFiles, isChaotic
|
||||||
}
|
}
|
||||||
|
|
||||||
// func (t *TorrentManager) repairAll() {
|
func (t *TorrentManager) repairAll() {
|
||||||
// for el := t.TorrentMap.Front(); el != nil; el = el.Next() {
|
// iteration works!
|
||||||
// torrent := el.Value
|
for el := t.TorrentMap.Front(); el != nil; el = el.Next() {
|
||||||
// // do not repair if: in progress
|
torrent := el.Value
|
||||||
// if torrent.InProgress {
|
// do not repair if in progress
|
||||||
// continue
|
if torrent.InProgress {
|
||||||
// }
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
// var missingFiles []File
|
var missingFiles []File
|
||||||
// for el2 := torrent.SelectedFiles.Front(); el2 != nil; el2 = el2.Next() {
|
for el2 := torrent.SelectedFiles.Front(); el2 != nil; el2 = el2.Next() {
|
||||||
// file, ok := torrent.SelectedFiles.Get(el2.Key)
|
file, ok := torrent.SelectedFiles.Get(el2.Key)
|
||||||
// if !ok {
|
if !ok {
|
||||||
// continue
|
continue
|
||||||
// }
|
}
|
||||||
// // check for case of repairs like
|
// check for case of repairs like
|
||||||
// // case 1: missing links
|
// case 1: missing links
|
||||||
// // case 2: unrestrictable links TODO
|
// case 2: unrestrictable links TODO
|
||||||
// if file.Link == "" {
|
if file.Link == "" {
|
||||||
// missingFiles = append(missingFiles, *file)
|
missingFiles = append(missingFiles, *file)
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
// if len(missingFiles) == 0 {
|
if len(missingFiles) == 0 {
|
||||||
// continue
|
continue
|
||||||
// }
|
}
|
||||||
|
|
||||||
// for _, info := range torrent.Instances {
|
for _, info := range torrent.Instances {
|
||||||
// if info.ForRepair {
|
if info.ForRepair {
|
||||||
// t.log.Infof("There were less links than was expected on %s %s; fixing...", info.ID, info.Name)
|
t.log.Infof("There were less links than was expected on %s %s; fixing...", info.ID, info.Name)
|
||||||
// // t.repair(&info, true)
|
// t.repair(&info, true)
|
||||||
// break // only repair the first one for repair and then move on
|
break // only repair the first one for repair and then move on
|
||||||
// }
|
}
|
||||||
// if len(info.Links) == 0 && info.Progress == 100 {
|
if len(info.Links) == 0 && info.Progress == 100 {
|
||||||
// // If the torrent has no links
|
// If the torrent has no links
|
||||||
// // and already processing repair
|
// and already processing repair
|
||||||
// // delete it!
|
// delete it!
|
||||||
// t.log.Infof("Deleting broken torrent id=%s as it doesn't contain any files", info.ID)
|
t.log.Infof("Deleting broken torrent id=%s as it doesn't contain any files", info.ID)
|
||||||
// t.rd.DeleteTorrent(info.ID)
|
t.rd.DeleteTorrent(info.ID)
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
|
|
||||||
// func (t *TorrentManager) repair(info *realdebrid.TorrentInfo, tryReinsertionFirst bool) {
|
// func (t *TorrentManager) repair(info *realdebrid.TorrentInfo, tryReinsertionFirst bool) {
|
||||||
// // file.Link == "" should be repaired
|
// // file.Link == "" should be repaired
|
||||||
@@ -583,7 +589,7 @@ func (t *TorrentManager) organizeChaos(info *realdebrid.Torrent, selectedFiles *
|
|||||||
// t.log.Info("No other missing files left to reinsert")
|
// t.log.Info("No other missing files left to reinsert")
|
||||||
// }
|
// }
|
||||||
// } else {
|
// } else {
|
||||||
// t.log.Infof("Torrent id=%s is unfixable as the only link cached in RD is already broken", info.ID)
|
// t.log.Infof("Torrent id=%s is unfixable as the only link cached in RD is already broken (it is no longer shown in your directories)", info.ID)
|
||||||
// t.log.Debugf("You can try fixing it yourself magnet:?xt=urn:btih:%s", info.Hash)
|
// t.log.Debugf("You can try fixing it yourself magnet:?xt=urn:btih:%s", info.Hash)
|
||||||
// return
|
// return
|
||||||
// }
|
// }
|
||||||
|
|||||||
@@ -6,13 +6,12 @@ import (
|
|||||||
"path"
|
"path"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/cenkalti/backoff"
|
|
||||||
"github.com/debridmediamanager.com/zurg/internal/config"
|
"github.com/debridmediamanager.com/zurg/internal/config"
|
||||||
"github.com/debridmediamanager.com/zurg/internal/dav"
|
"github.com/debridmediamanager.com/zurg/internal/dav"
|
||||||
intHttp "github.com/debridmediamanager.com/zurg/internal/http"
|
intHttp "github.com/debridmediamanager.com/zurg/internal/http"
|
||||||
"github.com/debridmediamanager.com/zurg/internal/torrent"
|
"github.com/debridmediamanager.com/zurg/internal/torrent"
|
||||||
|
zurghttp "github.com/debridmediamanager.com/zurg/pkg/http"
|
||||||
"github.com/debridmediamanager.com/zurg/pkg/logutil"
|
"github.com/debridmediamanager.com/zurg/pkg/logutil"
|
||||||
"github.com/hashicorp/golang-lru/v2/expirable"
|
"github.com/hashicorp/golang-lru/v2/expirable"
|
||||||
"go.uber.org/zap"
|
"go.uber.org/zap"
|
||||||
@@ -73,6 +72,7 @@ func HandleGetRequest(w http.ResponseWriter, r *http.Request, t *torrent.Torrent
|
|||||||
|
|
||||||
resp := t.UnrestrictUntilOk(link)
|
resp := t.UnrestrictUntilOk(link)
|
||||||
if resp == nil {
|
if resp == nil {
|
||||||
|
log.Errorf("The link cannot be unrestricted, file %s is no longer available", file.Path)
|
||||||
// TODO: maybe repair the torrent?
|
// TODO: maybe repair the torrent?
|
||||||
streamErrorVideo("https://www.youtube.com/watch?v=gea_FJrtFVA", w, r, t, c, log)
|
streamErrorVideo("https://www.youtube.com/watch?v=gea_FJrtFVA", w, r, t, c, log)
|
||||||
return
|
return
|
||||||
@@ -100,55 +100,36 @@ func streamFileToResponse(url string, w http.ResponseWriter, r *http.Request, t
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Copy the headers from the incoming request to the new request.
|
// copy range header if it exists
|
||||||
for k, values := range r.Header {
|
if r.Header.Get("Range") != "" {
|
||||||
for _, v := range values {
|
req.Header.Add("Range", r.Header.Get("Range"))
|
||||||
req.Header.Add(k, v)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create a custom HTTP client with a timeout.
|
// Create a custom HTTP client with a timeout.
|
||||||
client := &http.Client{
|
client := zurghttp.NewHTTPClient(c.GetToken(), 10)
|
||||||
Timeout: time.Second * 30, // Full request timeout including dial, request and response.
|
|
||||||
}
|
|
||||||
|
|
||||||
// Define a retry policy with exponential backoff.
|
|
||||||
retryPolicy := backoff.NewExponentialBackOff()
|
|
||||||
retryPolicy.MaxElapsedTime = time.Minute * 2 // Set the maximum elapsed time for retries.
|
|
||||||
|
|
||||||
// Use an operation with retries.
|
|
||||||
operation := func() error {
|
|
||||||
resp, err := client.Do(req)
|
resp, err := client.Do(req)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Errorf("Error downloading file: %v", err)
|
log.Errorf("Error downloading file %v", err)
|
||||||
return err
|
streamErrorVideo("https://www.youtube.com/watch?v=FSSd8cponAA", w, r, t, c, log)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
defer resp.Body.Close()
|
defer resp.Body.Close()
|
||||||
|
|
||||||
if resp.StatusCode >= 500 {
|
if resp.StatusCode != http.StatusOK && resp.StatusCode != http.StatusPartialContent {
|
||||||
log.Errorf("Received a 5XX status code: %d", resp.StatusCode)
|
log.Errorf("Received a nonOK status code %d", resp.StatusCode)
|
||||||
return backoff.Permanent(err) // Stop retrying on bad status code.
|
streamErrorVideo("https://www.youtube.com/watch?v=BcseUxviVqE", w, r, t, c, log)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Copy the headers from the response to the ResponseWriter.
|
|
||||||
for k, vv := range resp.Header {
|
for k, vv := range resp.Header {
|
||||||
for _, v := range vv {
|
for _, v := range vv {
|
||||||
w.Header().Add(k, v)
|
w.Header().Add(k, v)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Stream the content to the ResponseWriter.
|
|
||||||
buf := make([]byte, c.GetNetworkBufferSize())
|
buf := make([]byte, c.GetNetworkBufferSize())
|
||||||
_, err = io.CopyBuffer(w, resp.Body, buf)
|
io.CopyBuffer(w, resp.Body, buf)
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// Perform the operation with the retry policy.
|
|
||||||
if err := backoff.Retry(operation, retryPolicy); err != nil {
|
|
||||||
log.Errorf("Failed after retries: %v", err)
|
|
||||||
streamErrorVideo("https://www.youtube.com/watch?v=FSSd8cponAA", w, r, t, c, log)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func streamErrorVideo(link string, w http.ResponseWriter, r *http.Request, t *torrent.TorrentManager, c config.ConfigInterface, log *zap.SugaredLogger) {
|
func streamErrorVideo(link string, w http.ResponseWriter, r *http.Request, t *torrent.TorrentManager, c config.ConfigInterface, log *zap.SugaredLogger) {
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
package universal
|
|
||||||
@@ -29,10 +29,10 @@ func (r *HTTPClient) Do(req *http.Request) (*http.Response, error) {
|
|||||||
return resp, err
|
return resp, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewHTTPClient(token string, maxRetries int, timeout time.Duration) *HTTPClient {
|
func NewHTTPClient(token string, maxRetries int) *HTTPClient {
|
||||||
return &HTTPClient{
|
return &HTTPClient{
|
||||||
BearerToken: token,
|
BearerToken: token,
|
||||||
Client: &http.Client{Timeout: timeout},
|
Client: &http.Client{},
|
||||||
MaxRetries: maxRetries,
|
MaxRetries: maxRetries,
|
||||||
Backoff: func(attempt int) time.Duration {
|
Backoff: func(attempt int) time.Duration {
|
||||||
return time.Duration(attempt) * time.Second
|
return time.Duration(attempt) * time.Second
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import (
|
|||||||
"net/url"
|
"net/url"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
|
||||||
|
|
||||||
zurghttp "github.com/debridmediamanager.com/zurg/pkg/http"
|
zurghttp "github.com/debridmediamanager.com/zurg/pkg/http"
|
||||||
"go.uber.org/zap"
|
"go.uber.org/zap"
|
||||||
@@ -22,9 +21,7 @@ type RealDebrid struct {
|
|||||||
|
|
||||||
func NewRealDebrid(accessToken string, log *zap.SugaredLogger) *RealDebrid {
|
func NewRealDebrid(accessToken string, log *zap.SugaredLogger) *RealDebrid {
|
||||||
maxRetries := 10
|
maxRetries := 10
|
||||||
timeout := 10 * time.Second
|
client := zurghttp.NewHTTPClient(accessToken, maxRetries)
|
||||||
client := zurghttp.NewHTTPClient(accessToken, maxRetries, timeout)
|
|
||||||
log.Debugf("Created an HTTP client with %d max retries and %s timeout", maxRetries, timeout)
|
|
||||||
return &RealDebrid{
|
return &RealDebrid{
|
||||||
log: log,
|
log: log,
|
||||||
client: client,
|
client: client,
|
||||||
|
|||||||
Reference in New Issue
Block a user