5376b9e271
* New config files As decided, config files are parsed at runtime. I decided to go for YAML config files because there can be comments in it. There are 2 files: * config/default_config.yml <= which shouldn't be edited unless we add a config parameter * config/config.yml <= which is the user-defined config. This file shouldn't be commited Changed every call to config.XXX to config.Conf.XXX (look to the new stucture of config in config/types.go) Of course, putting config parameters in config.yml overrides config in config_default.yml. You don't have to put everything in it, just add what you want to override. * Fixing test Replacing conf.New by config.Conf * Fixing call to config.Conf to config.Config{} in test files * Might have fixed testing with this Printf instead of Fatalf * Renaming config.yml in example file * Forbid commiting config.yml * Should be now fixed * Do not need this file anymore
62 lignes
1,5 Kio
Go
62 lignes
1,5 Kio
Go
package uploadService
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"net/url"
|
|
|
|
"github.com/NyaaPantsu/nyaa/config"
|
|
"github.com/NyaaPantsu/nyaa/model"
|
|
)
|
|
|
|
// CheckTrackers : Check if there is good trackers in torrent
|
|
func CheckTrackers(trackers []string) []string {
|
|
// 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 trackerRet []string
|
|
for _, t := range trackers {
|
|
urlTracker, err := url.Parse(t)
|
|
if err == nil {
|
|
good := true
|
|
for _, check := range deadTrackers {
|
|
if strings.Contains(t, check) {
|
|
good = false
|
|
break // No need to continue the for loop
|
|
}
|
|
}
|
|
if good {
|
|
trackerRet = append(trackerRet, urlTracker.String())
|
|
}
|
|
}
|
|
}
|
|
return trackerRet
|
|
}
|
|
|
|
// IsUploadEnabled : Check if upload is enabled in config
|
|
func IsUploadEnabled(u model.User) bool {
|
|
if config.Conf.Torrents.UploadsDisabled {
|
|
if config.Conf.Torrents.AdminsAreStillAllowedTo && u.IsModerator() {
|
|
return true
|
|
}
|
|
if config.Conf.Torrents.TrustedUsersAreStillAllowedTo && u.IsTrusted() {
|
|
return true
|
|
}
|
|
return false
|
|
}
|
|
return true
|
|
}
|