Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/service/upload/upload.go

57 lignes
1,2 Kio
Go
Brut Vue normale Historique

2017-05-11 05:04:11 +02:00
package uploadService
import (
"strings"
"github.com/NyaaPantsu/nyaa/config"
"github.com/NyaaPantsu/nyaa/model"
2017-05-11 05:04:11 +02:00
)
// CheckTrackers : Check if there is good trackers in torrent
2017-05-11 05:04:11 +02:00
func CheckTrackers(trackers []string) bool {
// TODO: move to runtime configuration
var deadTrackers = []string{ // substring matches!
"://open.nyaatorrents.info:6544",
"://tracker.openbittorrent.com:80",
"://tracker.publicbt.com:80",
"://stats.anisource.net:2710",
"://exodus.desync.com",
"://open.demonii.com:1337",
"://tracker.istole.it:80",
"://tracker.ccc.de:80",
"://bt2.careland.com.cn:6969",
2017-05-13 15:18:40 +02:00
"://announce.torrentsmd.com:8080",
"://open.demonii.com:1337",
"://tracker.btcake.com",
"://tracker.prq.to",
"://bt.rghost.net"}
2017-05-11 05:04:11 +02:00
var numGood int
for _, t := range trackers {
good := true
for _, check := range deadTrackers {
if strings.Contains(t, check) {
good = false
}
}
if good {
numGood++
}
}
return numGood > 0
}
// IsUploadEnabled : Check if upload is enabled in config
func IsUploadEnabled(u model.User) bool {
if config.UploadsDisabled {
if config.AdminsAreStillAllowedTo && u.IsModerator() {
return true
}
if config.TrustedUsersAreStillAllowedTo && u.IsTrusted() {
return true
}
return false
}
return true
}