Added random-token-length, Encode() refactored
This commit is contained in:
@ -114,6 +114,7 @@ rate-limit | request per minute | | RATE_LIMIT |
|
|||||||
max-upload-size | max upload size in kilobytes | | MAX_UPLOAD_SIZE |
|
max-upload-size | max upload size in kilobytes | | MAX_UPLOAD_SIZE |
|
||||||
purge-days | number of days after the uploads are purged automatically | | PURGE_DAYS |
|
purge-days | number of days after the uploads are purged automatically | | PURGE_DAYS |
|
||||||
purge-interval | interval in hours to run the automatic purge for (not applicable to S3 and Storj) | | PURGE_INTERVAL |
|
purge-interval | interval in hours to run the automatic purge for (not applicable to S3 and Storj) | | PURGE_INTERVAL |
|
||||||
|
random-token-length | length of the random token for the upload path (double the size for delete path) | 6 | RANDOM_TOKEN_LENGTH |
|
||||||
|
|
||||||
If you want to use TLS using lets encrypt certificates, set lets-encrypt-hosts to your domain, set tls-listener to :443 and enable force-https.
|
If you want to use TLS using lets encrypt certificates, set lets-encrypt-hosts to your domain, set tls-listener to :443 and enable force-https.
|
||||||
|
|
||||||
|
@ -274,6 +274,12 @@ var globalFlags = []cli.Flag{
|
|||||||
Value: "",
|
Value: "",
|
||||||
EnvVar: "CORS_DOMAINS",
|
EnvVar: "CORS_DOMAINS",
|
||||||
},
|
},
|
||||||
|
cli.Int64Flag{
|
||||||
|
Name: "random-token-length",
|
||||||
|
Usage: "",
|
||||||
|
Value: 6,
|
||||||
|
EnvVar: "RANDOM_TOKEN_LENGTH",
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
type Cmd struct {
|
type Cmd struct {
|
||||||
@ -377,6 +383,9 @@ func New() *Cmd {
|
|||||||
options = append(options, server.RateLimit(v))
|
options = append(options, server.RateLimit(v))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
v := c.Int64("random-token-length")
|
||||||
|
options = append(options, server.RandomTokenLength(v))
|
||||||
|
|
||||||
purgeDays := c.Int("purge-days")
|
purgeDays := c.Int("purge-days")
|
||||||
purgeInterval := c.Int("purge-interval")
|
purgeInterval := c.Int("purge-interval")
|
||||||
if purgeDays > 0 && purgeInterval > 0 {
|
if purgeDays > 0 && purgeInterval > 0 {
|
||||||
|
@ -26,6 +26,7 @@ package server
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"math"
|
"math"
|
||||||
|
"math/rand"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -34,19 +35,31 @@ const (
|
|||||||
SYMBOLS = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
SYMBOLS = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
||||||
|
|
||||||
// someone set us up the bomb !!
|
// someone set us up the bomb !!
|
||||||
BASE = int64(len(SYMBOLS))
|
BASE = float64(len(SYMBOLS))
|
||||||
|
|
||||||
|
// init seed encode number
|
||||||
|
INIT_SEED = float64(-1)
|
||||||
)
|
)
|
||||||
|
|
||||||
// encodes a number into our *base* representation
|
// encodes a number into our *base* representation
|
||||||
// TODO can this be made better with some bitshifting?
|
// TODO can this be made better with some bitshifting?
|
||||||
func Encode(number int64) string {
|
func Encode(number float64, length int64) string {
|
||||||
rest := number % BASE
|
if number == INIT_SEED {
|
||||||
|
seed := math.Pow(float64(BASE), float64(length))
|
||||||
|
number = seed + (rand.Float64() * seed) // start with seed to enforce desired length
|
||||||
|
}
|
||||||
|
|
||||||
|
rest := int64(math.Mod(number, BASE))
|
||||||
// strings are a bit weird in go...
|
// strings are a bit weird in go...
|
||||||
result := string(SYMBOLS[rest])
|
result := string(SYMBOLS[rest])
|
||||||
if number-rest != 0 {
|
if rest > 0 && number-float64(rest) != 0 {
|
||||||
newnumber := (number - rest) / BASE
|
newnumber := (number - float64(rest)) / BASE
|
||||||
result = Encode(newnumber) + result
|
result = Encode(newnumber, length) + result
|
||||||
|
} else {
|
||||||
|
// it would always be 1 because of starting with seed and we want to skip
|
||||||
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
|
15
server/codec_test.go
Normal file
15
server/codec_test.go
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
package server
|
||||||
|
|
||||||
|
import "testing"
|
||||||
|
|
||||||
|
func BenchmarkEncodeConcat(b *testing.B) {
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
_ = Encode(INIT_SEED, 5) + Encode(INIT_SEED, 5)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkEncodeLonger(b *testing.B) {
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
_ = Encode(INIT_SEED, 10)
|
||||||
|
}
|
||||||
|
}
|
@ -41,7 +41,6 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
"math/rand"
|
|
||||||
"mime"
|
"mime"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
@ -257,7 +256,7 @@ func (s *Server) postHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
token := Encode(10000000 + int64(rand.Intn(1000000000)))
|
token := Encode(INIT_SEED, s.randomTokenLength)
|
||||||
|
|
||||||
w.Header().Set("Content-Type", "text/plain")
|
w.Header().Set("Content-Type", "text/plain")
|
||||||
|
|
||||||
@ -319,7 +318,7 @@ func (s *Server) postHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
metadata := MetadataForRequest(contentType, r)
|
metadata := MetadataForRequest(contentType, s.randomTokenLength, r)
|
||||||
|
|
||||||
buffer := &bytes.Buffer{}
|
buffer := &bytes.Buffer{}
|
||||||
if err := json.NewEncoder(buffer).Encode(metadata); err != nil {
|
if err := json.NewEncoder(buffer).Encode(metadata); err != nil {
|
||||||
@ -383,13 +382,13 @@ type Metadata struct {
|
|||||||
DeletionToken string
|
DeletionToken string
|
||||||
}
|
}
|
||||||
|
|
||||||
func MetadataForRequest(contentType string, r *http.Request) Metadata {
|
func MetadataForRequest(contentType string, randomTokenLength int64, r *http.Request) Metadata {
|
||||||
metadata := Metadata{
|
metadata := Metadata{
|
||||||
ContentType: strings.ToLower(contentType),
|
ContentType: strings.ToLower(contentType),
|
||||||
MaxDate: time.Time{},
|
MaxDate: time.Time{},
|
||||||
Downloads: 0,
|
Downloads: 0,
|
||||||
MaxDownloads: -1,
|
MaxDownloads: -1,
|
||||||
DeletionToken: Encode(10000000+int64(rand.Intn(1000000000))) + Encode(10000000+int64(rand.Intn(1000000000))),
|
DeletionToken: Encode(INIT_SEED, randomTokenLength) + Encode(INIT_SEED, randomTokenLength),
|
||||||
}
|
}
|
||||||
|
|
||||||
if v := r.Header.Get("Max-Downloads"); v == "" {
|
if v := r.Header.Get("Max-Downloads"); v == "" {
|
||||||
@ -481,9 +480,9 @@ func (s *Server) putHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
contentType = mime.TypeByExtension(filepath.Ext(vars["filename"]))
|
contentType = mime.TypeByExtension(filepath.Ext(vars["filename"]))
|
||||||
}
|
}
|
||||||
|
|
||||||
token := Encode(10000000 + int64(rand.Intn(1000000000)))
|
token := Encode(INIT_SEED, s.randomTokenLength)
|
||||||
|
|
||||||
metadata := MetadataForRequest(contentType, r)
|
metadata := MetadataForRequest(contentType, s.randomTokenLength, r)
|
||||||
|
|
||||||
buffer := &bytes.Buffer{}
|
buffer := &bytes.Buffer{}
|
||||||
if err := json.NewEncoder(buffer).Encode(metadata); err != nil {
|
if err := json.NewEncoder(buffer).Encode(metadata); err != nil {
|
||||||
|
@ -187,6 +187,12 @@ func RateLimit(requests int) OptionFn {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func RandomTokenLength(length int64) OptionFn {
|
||||||
|
return func(srvr *Server) {
|
||||||
|
srvr.randomTokenLength = length
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func Purge(days, interval int) OptionFn {
|
func Purge(days, interval int) OptionFn {
|
||||||
return func(srvr *Server) {
|
return func(srvr *Server) {
|
||||||
srvr.purgeDays = time.Duration(days) * time.Hour * 24
|
srvr.purgeDays = time.Duration(days) * time.Hour * 24
|
||||||
@ -294,6 +300,8 @@ type Server struct {
|
|||||||
|
|
||||||
forceHTTPs bool
|
forceHTTPs bool
|
||||||
|
|
||||||
|
randomTokenLength int64
|
||||||
|
|
||||||
ipFilterOptions *IPFilterOptions
|
ipFilterOptions *IPFilterOptions
|
||||||
|
|
||||||
VirusTotalKey string
|
VirusTotalKey string
|
||||||
|
Reference in New Issue
Block a user