Update stats.go
Cette révision appartient à :
Parent
22e1c7e9a7
révision
f226f1a1ca
1 fichiers modifiés avec 62 ajouts et 52 suppressions
|
@ -44,7 +44,7 @@ func GetStatsHandler(c *gin.Context) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
torrent, err := torrents.FindRawByID(uint(id))
|
updateTorrent, err := torrents.FindRawByID(uint(id))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
|
@ -55,19 +55,19 @@ func GetStatsHandler(c *gin.Context) {
|
||||||
|
|
||||||
if statsExists {
|
if statsExists {
|
||||||
//Stats already exist, we check if the torrent stats have been scraped already very recently and if so, we stop there to avoid abuse of the /stats/:id route
|
//Stats already exist, we check if the torrent stats have been scraped already very recently and if so, we stop there to avoid abuse of the /stats/:id route
|
||||||
if (CurrentData.Seeders == 0 && CurrentData.Leechers == 0 && CurrentData.Completed == 0) && time.Since(CurrentData.LastScrape).Minutes() <= config.Get().Scrape.MaxStatScrapingFrequencyUnknown {
|
if isEmptyScrape(CurrentData) && time.Since(CurrentData.LastScrape).Minutes() <= config.Get().Scrape.MaxStatScrapingFrequencyUnknown {
|
||||||
//Unknown stats but has been scraped less than X minutes ago (X being the limit set in the config file)
|
//Unknown stats but has been scraped less than X minutes ago (X being the limit set in the config file)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (CurrentData.Seeders != 0 || CurrentData.Leechers != 0 || CurrentData.Completed != 0) && time.Since(CurrentData.LastScrape).Minutes() <= config.Get().Scrape.MaxStatScrapingFrequency {
|
if !isEmptyScrape(CurrentData) && time.Since(CurrentData.LastScrape).Minutes() <= config.Get().Scrape.MaxStatScrapingFrequency {
|
||||||
//Known stats but has been scraped less than X minutes ago (X being the limit set in the config file)
|
//Known stats but has been scraped less than X minutes ago (X being the limit set in the config file)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var Trackers []string
|
var Trackers []string
|
||||||
if len(torrent.Trackers) > 3 {
|
if len(updateTorrent.Trackers) > 3 {
|
||||||
for _, line := range strings.Split(torrent.Trackers[3:], "&tr=") {
|
for _, line := range strings.Split(updateTorrent.Trackers[3:], "&tr=") {
|
||||||
tracker, error := url.QueryUnescape(line)
|
tracker, error := url.QueryUnescape(line)
|
||||||
if error == nil && strings.HasPrefix(tracker, "udp") {
|
if error == nil && strings.HasPrefix(tracker, "udp") {
|
||||||
Trackers = append(Trackers, tracker)
|
Trackers = append(Trackers, tracker)
|
||||||
|
@ -82,21 +82,25 @@ func GetStatsHandler(c *gin.Context) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
err = ScrapeFiles(format.InfoHashToMagnet(strings.TrimSpace(torrent.Hash), torrent.Name, Trackers...), torrent)
|
var stats goscrape.Result
|
||||||
|
var torrentFiles []models.File
|
||||||
|
|
||||||
if err != nil {
|
if c.Request.URL.Query()["files"] != nil {
|
||||||
return
|
err, torrentFiles = ScrapeFiles(format.InfoHashToMagnet(strings.TrimSpace(updateTorrent.Hash), updateTorrent.Name, Trackers...), updateTorrent, CurrentData, statsExists)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
//Single() returns an array which contain results for each torrent Hash it is fed, since we only feed him one we want to directly access the results
|
||||||
|
stats = goscrape.Single(Trackers, []string{
|
||||||
|
updateTorrent.Hash,
|
||||||
|
})[0]
|
||||||
|
UpdateTorrentStats(updateTorrent, stats, CurrentData, []torrent.File{}, statsExists)
|
||||||
}
|
}
|
||||||
|
|
||||||
return
|
|
||||||
|
|
||||||
stats := goscrape.Single(Trackers, []string{
|
|
||||||
torrent.Hash,
|
|
||||||
})[0]
|
|
||||||
//Single() returns an array which contain results for each torrent Hash it is fed, since we only feed him one we want to directly access the results
|
|
||||||
|
|
||||||
//If we put seeders on -1, the script instantly knows the fetching did not give any result, avoiding having to check all three stats below and in view.jet.html's javascript
|
//If we put seeders on -1, the script instantly knows the fetching did not give any result, avoiding having to check all three stats below and in view.jet.html's javascript
|
||||||
if stats.Seeders == 0 && stats.Leechers == 0 && stats.Completed == 0 {
|
if isEmptyResult(stats) {
|
||||||
stats.Seeders = -1
|
stats.Seeders = -1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -104,43 +108,17 @@ func GetStatsHandler(c *gin.Context) {
|
||||||
"seeders": stats.Seeders,
|
"seeders": stats.Seeders,
|
||||||
"leechers": stats.Leechers,
|
"leechers": stats.Leechers,
|
||||||
"downloads": stats.Completed,
|
"downloads": stats.Completed,
|
||||||
|
"filelist": torrentFiles,
|
||||||
})
|
})
|
||||||
|
|
||||||
if stats.Seeders == -1 {
|
|
||||||
stats.Seeders = 0
|
|
||||||
}
|
|
||||||
|
|
||||||
if !statsExists {
|
|
||||||
torrent.Scrape = torrent.Scrape.Create(uint(id), uint32(stats.Seeders), uint32(stats.Leechers), uint32(stats.Completed), time.Now())
|
|
||||||
//Create entry in the DB because none exist
|
|
||||||
} else {
|
|
||||||
//Entry in the DB already exists, simply update it
|
|
||||||
if (CurrentData.Seeders == 0 && CurrentData.Leechers == 0 && CurrentData.Completed == 0) || (stats.Seeders != 0 && stats.Leechers != 0 && stats.Completed != 0 ) {
|
|
||||||
torrent.Scrape = &models.Scrape{uint(id), uint32(stats.Seeders), uint32(stats.Leechers), uint32(stats.Completed), time.Now()}
|
|
||||||
} else {
|
|
||||||
torrent.Scrape = &models.Scrape{uint(id), uint32(CurrentData.Seeders), uint32(CurrentData.Leechers), uint32(CurrentData.Completed), time.Now()}
|
|
||||||
}
|
|
||||||
//Only overwrite stats if the old one are Unknown OR if the current ones are not unknown, preventing good stats from being turned into unknown own but allowing good stats to be updated to more reliable ones
|
|
||||||
torrent.Scrape.Update(false)
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
type TStruct struct {
|
func ScrapeFiles(magnet string, torrent models.Torrent, currentStats models.Scrape, statsExists bool) (error, []models.File) {
|
||||||
Peers goscrape.Result
|
|
||||||
Trackers []string
|
|
||||||
//Files []metainfo.FileInfo
|
|
||||||
Files []torrent.File
|
|
||||||
Magnet string
|
|
||||||
}
|
|
||||||
|
|
||||||
func ScrapeFiles(magnet string, torrent models.Torrent) error {
|
|
||||||
if client == nil {
|
if client == nil {
|
||||||
err := initClient()
|
err := initClient()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err, []models.File{}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -158,21 +136,53 @@ func ScrapeFiles(magnet string, torrent models.Torrent) error {
|
||||||
UDP = append(UDP, tracker)
|
UDP = append(UDP, tracker)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
var results goscrape.Result
|
||||||
if len(UDP) != 0 {
|
if len(UDP) != 0 {
|
||||||
udpscrape := goscrape.NewBulk(UDP)
|
udpscrape := goscrape.NewBulk(UDP)
|
||||||
results := udpscrape.ScrapeBulk([]string{torrent.Hash})[0]
|
results = udpscrape.ScrapeBulk([]string{torrent.Hash})[0]
|
||||||
if results.Btih != "0" {
|
if results.Btih != "0" {
|
||||||
torrent.Scrape = &models.Scrape{torrent.ID, uint32(results.Seeders), uint32(results.Leechers),uint32(results.Completed), time.Now()}
|
torrent.Scrape = &models.Scrape{torrent.ID, uint32(results.Seeders), uint32(results.Leechers),uint32(results.Completed), time.Now()}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
torrent.FileList = []models.File{}
|
|
||||||
for i, file := range t.Files() {
|
|
||||||
log.Errorf("----- File %d / Path %s / Length %d", i, file.DisplayPath(), file.Length())
|
|
||||||
torrent.FileList = append(torrent.FileList, models.File{uint(i), torrent.ID, file.DisplayPath(), file.Length()})
|
|
||||||
}
|
|
||||||
torrent.Update(true)
|
|
||||||
t.Drop()
|
t.Drop()
|
||||||
return nil
|
return nil, UpdateTorrentStats(torrent, results, currentStats, t.Files(), statsExists)
|
||||||
|
}
|
||||||
|
|
||||||
|
// UpdateTorrentStats : Update stats & filelist if files are specified, otherwise just stats
|
||||||
|
func UpdateTorrentStats(torrent models.Torrent, stats goscrape.Result, currentStats models.Scrape, Files []torrent.File, statsExists bool) []models.File {
|
||||||
|
if stats.Seeders == -1 {
|
||||||
|
stats.Seeders = 0
|
||||||
|
}
|
||||||
|
if !statsExists {
|
||||||
|
torrent.Scrape = torrent.Scrape.Create(torrent.ID, uint32(stats.Seeders), uint32(stats.Leechers), uint32(stats.Completed), time.Now())
|
||||||
|
//Create a stat entry in the DB because none exist
|
||||||
|
} else {
|
||||||
|
//Entry in the DB already exists, simply update it
|
||||||
|
if isEmptyScrape(currentStats) || !isEmptyResult(stats) {
|
||||||
|
torrent.Scrape = &models.Scrape{torrent.ID, uint32(stats.Seeders), uint32(stats.Leechers), uint32(stats.Completed), time.Now()}
|
||||||
|
} else {
|
||||||
|
torrent.Scrape = &models.Scrape{torrent.ID, uint32(currentStats.Seeders), uint32(currentStats.Leechers), uint32(currentStats.Completed), time.Now()}
|
||||||
|
}
|
||||||
|
//Only overwrite stats if the old one are Unknown OR if the new ones are not unknown, preventing good stats from being turned into unknown but allowing good stats to be updated to more reliable ones
|
||||||
|
torrent.Scrape.Update(false)
|
||||||
|
}
|
||||||
|
if len(Files) > 0 {
|
||||||
|
torrent.FileList = []models.File{}
|
||||||
|
for i, file := range Files {
|
||||||
|
log.Errorf("----- File %d / Path %s / Length %d", i, file.DisplayPath(), file.Length())
|
||||||
|
torrent.FileList = append(torrent.FileList, models.File{uint(i), torrent.ID, file.DisplayPath(), file.Length()})
|
||||||
|
}
|
||||||
|
torrent.Update(true)
|
||||||
|
}
|
||||||
|
return []models.File{}
|
||||||
|
}
|
||||||
|
|
||||||
|
func isEmptyResult(stats goscrape.Result) bool {
|
||||||
|
return stats.Seeders == 0 && stats.Leechers == 0 && stats.Completed == 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func isEmptyScrape(stats models.Scrape) bool {
|
||||||
|
return stats.Seeders == 0 && stats.Leechers == 0 && stats.Completed == 0
|
||||||
}
|
}
|
||||||
|
|
||||||
func contains(s []string, e string) bool {
|
func contains(s []string, e string) bool {
|
||||||
|
|
Référencer dans un nouveau ticket