2011-12-16 14:51:26 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
2017-01-08 14:34:26 +00:00
|
|
|
"encoding/json"
|
2014-12-26 05:29:44 +00:00
|
|
|
"fmt"
|
2011-12-16 14:51:26 +00:00
|
|
|
"io/ioutil"
|
2012-07-30 08:37:10 +00:00
|
|
|
"mime"
|
2012-06-29 07:53:47 +00:00
|
|
|
"net/http"
|
2013-01-22 23:07:51 +00:00
|
|
|
"path"
|
2012-07-16 17:15:16 +00:00
|
|
|
"strconv"
|
2011-12-16 14:51:26 +00:00
|
|
|
"strings"
|
2013-07-09 06:38:38 +00:00
|
|
|
"time"
|
2014-10-26 18:34:55 +00:00
|
|
|
|
2016-06-03 01:09:14 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/images"
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/operation"
|
2018-07-08 09:28:04 +00:00
|
|
|
. "github.com/chrislusf/seaweedfs/weed/storage/types"
|
2011-12-16 14:51:26 +00:00
|
|
|
)
|
|
|
|
|
2012-12-21 08:36:55 +00:00
|
|
|
const (
|
2018-07-08 09:28:04 +00:00
|
|
|
NeedleChecksumSize = 4
|
|
|
|
PairNamePrefix = "Seaweed-"
|
2012-12-21 08:36:55 +00:00
|
|
|
)
|
|
|
|
|
2013-09-19 18:06:14 +00:00
|
|
|
/*
|
2014-12-26 07:36:33 +00:00
|
|
|
* A Needle means a uploaded and stored file.
|
2013-09-19 18:06:14 +00:00
|
|
|
* Needle file size is limited to 4GB for now.
|
|
|
|
*/
|
2011-12-19 05:59:37 +00:00
|
|
|
type Needle struct {
|
2018-07-08 09:28:04 +00:00
|
|
|
Cookie Cookie `comment:"random number to mitigate brute force lookups"`
|
|
|
|
Id NeedleId `comment:"needle id"`
|
|
|
|
Size uint32 `comment:"sum of DataSize,Data,NameSize,Name,MimeSize,Mime"`
|
2012-12-21 10:13:02 +00:00
|
|
|
|
2013-07-09 06:38:38 +00:00
|
|
|
DataSize uint32 `comment:"Data size"` //version2
|
|
|
|
Data []byte `comment:"The actual file data"`
|
2018-07-08 09:28:04 +00:00
|
|
|
Flags byte `comment:"boolean flags"` //version2
|
|
|
|
NameSize uint8 //version2
|
2013-07-09 06:38:38 +00:00
|
|
|
Name []byte `comment:"maximum 256 characters"` //version2
|
2018-07-08 09:28:04 +00:00
|
|
|
MimeSize uint8 //version2
|
2013-07-09 06:38:38 +00:00
|
|
|
Mime []byte `comment:"maximum 256 characters"` //version2
|
2018-07-08 09:28:04 +00:00
|
|
|
PairsSize uint16 //version2
|
2017-01-08 01:16:29 +00:00
|
|
|
Pairs []byte `comment:"additional name value pairs, json format, maximum 64kB"`
|
2013-07-09 06:38:38 +00:00
|
|
|
LastModified uint64 //only store LastModifiedBytesLength bytes, which is 5 bytes to disk
|
2014-09-20 19:38:59 +00:00
|
|
|
Ttl *TTL
|
2012-12-21 10:13:02 +00:00
|
|
|
|
2013-02-10 17:44:44 +00:00
|
|
|
Checksum CRC `comment:"CRC32 to check integrity"`
|
|
|
|
Padding []byte `comment:"Aligned to 8 bytes"`
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
|
|
|
|
2014-12-26 05:29:44 +00:00
|
|
|
func (n *Needle) String() (str string) {
|
|
|
|
str = fmt.Sprintf("Cookie:%d, Id:%d, Size:%d, DataSize:%d, Name: %s, Mime: %s", n.Cookie, n.Id, n.Size, n.DataSize, n.Name, n.Mime)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-12-15 06:38:58 +00:00
|
|
|
func ParseUpload(r *http.Request) (
|
2017-01-08 14:34:26 +00:00
|
|
|
fileName string, data []byte, mimeType string, pairMap map[string]string, isGzipped bool,
|
2015-12-15 06:38:58 +00:00
|
|
|
modifiedTime uint64, ttl *TTL, isChunkedFile bool, e error) {
|
2017-01-08 14:34:26 +00:00
|
|
|
pairMap = make(map[string]string)
|
2017-01-08 01:16:29 +00:00
|
|
|
for k, v := range r.Header {
|
|
|
|
if len(v) > 0 && strings.HasPrefix(k, PairNamePrefix) {
|
|
|
|
pairMap[k] = v[0]
|
|
|
|
}
|
|
|
|
}
|
2017-01-08 14:34:26 +00:00
|
|
|
|
2011-12-19 05:59:37 +00:00
|
|
|
form, fe := r.MultipartReader()
|
|
|
|
if fe != nil {
|
2013-08-09 06:57:22 +00:00
|
|
|
glog.V(0).Infoln("MultipartReader [ERROR]", fe)
|
2012-07-03 06:46:26 +00:00
|
|
|
e = fe
|
|
|
|
return
|
2011-12-19 05:59:37 +00:00
|
|
|
}
|
2015-01-09 19:22:16 +00:00
|
|
|
|
2015-01-16 09:30:23 +00:00
|
|
|
//first multi-part item
|
|
|
|
part, fe := form.NextPart()
|
|
|
|
if fe != nil {
|
|
|
|
glog.V(0).Infoln("Reading Multi part [ERROR]", fe)
|
|
|
|
e = fe
|
|
|
|
return
|
2012-11-20 08:42:45 +00:00
|
|
|
}
|
2015-01-09 19:22:16 +00:00
|
|
|
|
2013-08-06 18:23:24 +00:00
|
|
|
fileName = part.FileName()
|
|
|
|
if fileName != "" {
|
|
|
|
fileName = path.Base(fileName)
|
2013-02-26 22:56:18 +00:00
|
|
|
}
|
2013-08-14 07:31:02 +00:00
|
|
|
|
2013-08-06 18:23:24 +00:00
|
|
|
data, e = ioutil.ReadAll(part)
|
|
|
|
if e != nil {
|
2013-08-09 06:57:22 +00:00
|
|
|
glog.V(0).Infoln("Reading Content [ERROR]", e)
|
2013-08-05 20:37:41 +00:00
|
|
|
return
|
|
|
|
}
|
2015-01-16 09:30:23 +00:00
|
|
|
|
|
|
|
//if the filename is empty string, do a search on the other multi-part items
|
|
|
|
for fileName == "" {
|
|
|
|
part2, fe := form.NextPart()
|
|
|
|
if fe != nil {
|
|
|
|
break // no more or on error, just safely break
|
|
|
|
}
|
|
|
|
|
|
|
|
fName := part2.FileName()
|
|
|
|
|
|
|
|
//found the first <file type> multi-part has filename
|
|
|
|
if fName != "" {
|
|
|
|
data2, fe2 := ioutil.ReadAll(part2)
|
|
|
|
if fe2 != nil {
|
|
|
|
glog.V(0).Infoln("Reading Content [ERROR]", fe2)
|
|
|
|
e = fe2
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
//update
|
|
|
|
data = data2
|
|
|
|
fileName = path.Base(fName)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-04 03:23:40 +00:00
|
|
|
isChunkedFile, _ = strconv.ParseBool(r.FormValue("cm"))
|
2017-01-08 01:16:29 +00:00
|
|
|
|
2017-01-04 03:23:40 +00:00
|
|
|
if !isChunkedFile {
|
2017-01-08 18:35:47 +00:00
|
|
|
|
|
|
|
dotIndex := strings.LastIndex(fileName, ".")
|
|
|
|
ext, mtype := "", ""
|
|
|
|
if dotIndex > 0 {
|
|
|
|
ext = strings.ToLower(fileName[dotIndex:])
|
|
|
|
mtype = mime.TypeByExtension(ext)
|
|
|
|
}
|
|
|
|
contentType := part.Header.Get("Content-Type")
|
|
|
|
if contentType != "" && mtype != contentType {
|
|
|
|
mimeType = contentType //only return mime type if not deductable
|
|
|
|
mtype = contentType
|
|
|
|
}
|
|
|
|
|
2017-01-04 03:23:40 +00:00
|
|
|
if part.Header.Get("Content-Encoding") == "gzip" {
|
|
|
|
isGzipped = true
|
|
|
|
} else if operation.IsGzippable(ext, mtype) {
|
|
|
|
if data, e = operation.GzipData(data); e != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
isGzipped = true
|
|
|
|
}
|
|
|
|
if ext == ".gz" {
|
2017-01-10 03:31:55 +00:00
|
|
|
if strings.HasSuffix(fileName, ".css.gz") ||
|
|
|
|
strings.HasSuffix(fileName, ".html.gz") ||
|
|
|
|
strings.HasSuffix(fileName, ".txt.gz") ||
|
|
|
|
strings.HasSuffix(fileName, ".js.gz") {
|
|
|
|
fileName = fileName[:len(fileName)-3]
|
|
|
|
isGzipped = true
|
|
|
|
}
|
2013-01-17 08:56:56 +00:00
|
|
|
}
|
2013-08-06 18:23:24 +00:00
|
|
|
}
|
|
|
|
modifiedTime, _ = strconv.ParseUint(r.FormValue("ts"), 10, 64)
|
2014-09-20 19:38:59 +00:00
|
|
|
ttl, _ = ReadTTL(r.FormValue("ttl"))
|
2017-01-04 03:23:40 +00:00
|
|
|
|
2013-09-02 06:58:21 +00:00
|
|
|
return
|
2013-08-06 18:23:24 +00:00
|
|
|
}
|
2014-05-15 08:56:08 +00:00
|
|
|
func NewNeedle(r *http.Request, fixJpgOrientation bool) (n *Needle, e error) {
|
2017-01-08 14:34:26 +00:00
|
|
|
var pairMap map[string]string
|
2015-12-01 12:23:50 +00:00
|
|
|
fname, mimeType, isGzipped, isChunkedFile := "", "", false, false
|
2013-08-06 18:23:24 +00:00
|
|
|
n = new(Needle)
|
2017-01-08 14:34:26 +00:00
|
|
|
fname, n.Data, mimeType, pairMap, isGzipped, n.LastModified, n.Ttl, isChunkedFile, e = ParseUpload(r)
|
2013-08-06 18:23:24 +00:00
|
|
|
if e != nil {
|
2013-09-02 06:58:21 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if len(fname) < 256 {
|
|
|
|
n.Name = []byte(fname)
|
|
|
|
n.SetHasName()
|
2013-08-06 18:23:24 +00:00
|
|
|
}
|
|
|
|
if len(mimeType) < 256 {
|
|
|
|
n.Mime = []byte(mimeType)
|
|
|
|
n.SetHasMime()
|
|
|
|
}
|
2017-01-08 14:34:26 +00:00
|
|
|
if len(pairMap) != 0 {
|
|
|
|
trimmedPairMap := make(map[string]string)
|
|
|
|
for k, v := range pairMap {
|
|
|
|
trimmedPairMap[k[len(PairNamePrefix):]] = v
|
|
|
|
}
|
|
|
|
|
|
|
|
pairs, _ := json.Marshal(trimmedPairMap)
|
|
|
|
if len(pairs) < 65536 {
|
|
|
|
n.Pairs = pairs
|
|
|
|
n.PairsSize = uint16(len(pairs))
|
|
|
|
n.SetHasPairs()
|
|
|
|
}
|
2017-01-08 01:16:29 +00:00
|
|
|
}
|
2013-08-06 18:23:24 +00:00
|
|
|
if isGzipped {
|
|
|
|
n.SetGzipped()
|
2012-07-30 08:37:10 +00:00
|
|
|
}
|
2013-08-06 18:23:24 +00:00
|
|
|
if n.LastModified == 0 {
|
2013-07-10 07:25:14 +00:00
|
|
|
n.LastModified = uint64(time.Now().Unix())
|
|
|
|
}
|
2013-10-16 15:39:09 +00:00
|
|
|
n.SetHasLastModifiedDate()
|
2014-09-21 03:51:24 +00:00
|
|
|
if n.Ttl != EMPTY_TTL {
|
2014-09-20 19:38:59 +00:00
|
|
|
n.SetHasTtl()
|
|
|
|
}
|
2012-12-22 10:10:45 +00:00
|
|
|
|
2015-12-01 12:23:50 +00:00
|
|
|
if isChunkedFile {
|
2015-12-15 06:38:58 +00:00
|
|
|
n.SetIsChunkManifest()
|
2015-12-01 12:23:50 +00:00
|
|
|
}
|
|
|
|
|
2014-05-16 08:10:46 +00:00
|
|
|
if fixJpgOrientation {
|
|
|
|
loweredName := strings.ToLower(fname)
|
|
|
|
if mimeType == "image/jpeg" || strings.HasSuffix(loweredName, ".jpg") || strings.HasSuffix(loweredName, ".jpeg") {
|
|
|
|
n.Data = images.FixJpgOrientation(n.Data)
|
|
|
|
}
|
2014-05-15 08:56:08 +00:00
|
|
|
}
|
|
|
|
|
2013-08-06 18:23:24 +00:00
|
|
|
n.Checksum = NewCRC(n.Data)
|
2011-12-16 14:51:26 +00:00
|
|
|
|
2012-06-29 07:53:47 +00:00
|
|
|
commaSep := strings.LastIndex(r.URL.Path, ",")
|
2011-12-22 04:04:47 +00:00
|
|
|
dotSep := strings.LastIndex(r.URL.Path, ".")
|
|
|
|
fid := r.URL.Path[commaSep+1:]
|
|
|
|
if dotSep > 0 {
|
2018-07-08 09:28:04 +00:00
|
|
|
fid = r.URL.Path[commaSep+1: dotSep]
|
2011-12-22 04:04:47 +00:00
|
|
|
}
|
|
|
|
|
2013-12-09 21:53:24 +00:00
|
|
|
e = n.ParsePath(fid)
|
2011-12-19 05:59:37 +00:00
|
|
|
|
|
|
|
return
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2013-12-09 21:53:24 +00:00
|
|
|
func (n *Needle) ParsePath(fid string) (err error) {
|
2011-12-22 04:04:47 +00:00
|
|
|
length := len(fid)
|
2018-07-08 09:28:04 +00:00
|
|
|
if length <= CookieSize*2 {
|
2016-04-10 08:50:58 +00:00
|
|
|
return fmt.Errorf("Invalid fid: %s", fid)
|
2011-12-20 09:00:01 +00:00
|
|
|
}
|
2012-07-16 17:15:16 +00:00
|
|
|
delta := ""
|
|
|
|
deltaIndex := strings.LastIndex(fid, "_")
|
|
|
|
if deltaIndex > 0 {
|
|
|
|
fid, delta = fid[0:deltaIndex], fid[deltaIndex+1:]
|
|
|
|
}
|
2018-07-08 09:28:04 +00:00
|
|
|
n.Id, n.Cookie, err = ParseNeedleIdCookie(fid)
|
2013-12-09 21:53:24 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2012-07-16 17:15:16 +00:00
|
|
|
if delta != "" {
|
2013-12-09 21:53:24 +00:00
|
|
|
if d, e := strconv.ParseUint(delta, 10, 64); e == nil {
|
2018-07-08 09:28:04 +00:00
|
|
|
n.Id += NeedleId(d)
|
2013-12-09 21:53:24 +00:00
|
|
|
} else {
|
|
|
|
return e
|
2012-07-16 17:15:16 +00:00
|
|
|
}
|
|
|
|
}
|
2013-12-09 21:53:24 +00:00
|
|
|
return err
|
2011-12-16 14:51:26 +00:00
|
|
|
}
|
2013-01-21 03:44:23 +00:00
|
|
|
|
2018-07-08 09:28:04 +00:00
|
|
|
func ParseNeedleIdCookie(key_hash_string string) (NeedleId, Cookie, error) {
|
|
|
|
if len(key_hash_string) <= CookieSize*2 {
|
2016-04-10 08:50:58 +00:00
|
|
|
return 0, 0, fmt.Errorf("KeyHash is too short.")
|
2012-12-21 08:36:55 +00:00
|
|
|
}
|
2018-07-08 09:28:04 +00:00
|
|
|
if len(key_hash_string) > (NeedleIdSize+CookieSize)*2 {
|
2016-04-10 08:50:58 +00:00
|
|
|
return 0, 0, fmt.Errorf("KeyHash is too long.")
|
2016-04-10 07:54:40 +00:00
|
|
|
}
|
2018-07-08 09:28:04 +00:00
|
|
|
split := len(key_hash_string) - CookieSize*2
|
|
|
|
needleId, err := ParseNeedleId(key_hash_string[:split])
|
2016-04-10 07:54:40 +00:00
|
|
|
if err != nil {
|
2018-07-08 09:28:04 +00:00
|
|
|
return 0, 0, fmt.Errorf("Parse needleId error: %v", err)
|
2016-04-10 07:54:40 +00:00
|
|
|
}
|
2018-07-08 09:28:04 +00:00
|
|
|
cookie, err := ParseCookie(key_hash_string[split:])
|
2016-04-10 07:54:40 +00:00
|
|
|
if err != nil {
|
2018-07-08 09:28:04 +00:00
|
|
|
return 0, 0, fmt.Errorf("Parse cookie error: %v", err)
|
2016-04-10 07:54:40 +00:00
|
|
|
}
|
2018-07-08 09:28:04 +00:00
|
|
|
return needleId, cookie, nil
|
2016-04-10 07:54:40 +00:00
|
|
|
}
|