6481e90a0c
* Gofmt friendly Keeping Go source code in line with what they preconize * Golint Friendly Next So I have made some variables unexported Added comments in every function that I know what it does Removed some deprecated stuff that I was sure of Added a comment on possible deprecated methods "Is it deprecated?" Changed some variable/method name according to golint recommendations * Update filelist.go
56 lignes
1,2 Kio
Go
56 lignes
1,2 Kio
Go
package uploadService
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/NyaaPantsu/nyaa/config"
|
|
"github.com/NyaaPantsu/nyaa/model"
|
|
)
|
|
|
|
// CheckTrackers : Check if there is good trackers in torrent
|
|
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",
|
|
"://announce.torrentsmd.com:8080",
|
|
"://open.demonii.com:1337",
|
|
"://tracker.btcake.com",
|
|
"://tracker.prq.to",
|
|
"://bt.rghost.net"}
|
|
|
|
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
|
|
}
|