Move maximum TTL to config file
This commit is contained in:
parent
d84826ae66
commit
e82b4661c6
@ -4,4 +4,5 @@ vhost = "hardfiles.org"
|
|||||||
dbfile = "dbfile.db"
|
dbfile = "dbfile.db"
|
||||||
filelen = 6
|
filelen = 6
|
||||||
folder = "files"
|
folder = "files"
|
||||||
ttl_seconds = 86400
|
default_ttl = 86400
|
||||||
|
maximum_ttl = 432000
|
9
main.go
9
main.go
@ -29,7 +29,8 @@ type Config struct {
|
|||||||
DBFile string `toml:"dbfile"`
|
DBFile string `toml:"dbfile"`
|
||||||
FileLen int `toml:"filelen"`
|
FileLen int `toml:"filelen"`
|
||||||
FileFolder string `toml:"folder"`
|
FileFolder string `toml:"folder"`
|
||||||
TTLSeconds int `toml:"ttl_seconds"`
|
DefaultTTL int `toml:"default_ttl"`
|
||||||
|
MaxTTL int `toml:"maximum_ttl"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func LoadConf() {
|
func LoadConf() {
|
||||||
@ -144,8 +145,8 @@ func UploadHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error().Err(err).Msg("expiry could not be parsed")
|
log.Error().Err(err).Msg("expiry could not be parsed")
|
||||||
} else {
|
} else {
|
||||||
// 5 days max
|
// Get maximum ttl length from config and kill upload if specified ttl is too long, this can probably be handled better in the future
|
||||||
if ttl < 1 || ttl > 432000 {
|
if ttl < 1 || ttl > int64(conf.MaxTTL) {
|
||||||
w.WriteHeader(http.StatusBadRequest)
|
w.WriteHeader(http.StatusBadRequest)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -154,7 +155,7 @@ func UploadHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
|
|
||||||
// Default to conf if not present
|
// Default to conf if not present
|
||||||
if ttl == 0 {
|
if ttl == 0 {
|
||||||
ttl = int64(conf.TTLSeconds)
|
ttl = int64(conf.DefaultTTL)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if the file length parameter exists and also if it's too long
|
// Check if the file length parameter exists and also if it's too long
|
||||||
|
Loading…
Reference in New Issue
Block a user