ensure file name does not contain any "/"

This commit is contained in:
Chris Lu 2013-01-22 15:07:51 -08:00
parent f2af477324
commit 0b7a235c17

View file

@ -6,6 +6,7 @@ import (
"io/ioutil"
"mime"
"net/http"
"path"
"pkg/util"
"strconv"
"strings"
@ -50,6 +51,7 @@ func NewNeedle(r *http.Request) (n *Needle, fname string, e error) {
return
}
fname = part.FileName()
fname = path.Base(fname)
data, _ := ioutil.ReadAll(part)
dotIndex := strings.LastIndex(fname, ".")
ext, mtype := "", ""