|
@ -29,12 +29,12 @@ type Needle struct { |
|
|
|
|
|
|
|
|
DataSize uint32 `comment:"Data size"` //version2
|
|
|
DataSize uint32 `comment:"Data size"` //version2
|
|
|
Data []byte `comment:"The actual file data"` |
|
|
Data []byte `comment:"The actual file data"` |
|
|
Flags byte `comment:"boolean flags"` //version2
|
|
|
|
|
|
NameSize uint8 //version2
|
|
|
|
|
|
|
|
|
Flags byte `comment:"boolean flags"` //version2
|
|
|
|
|
|
NameSize uint8 //version2
|
|
|
Name []byte `comment:"maximum 256 characters"` //version2
|
|
|
Name []byte `comment:"maximum 256 characters"` //version2
|
|
|
MimeSize uint8 //version2
|
|
|
|
|
|
|
|
|
MimeSize uint8 //version2
|
|
|
Mime []byte `comment:"maximum 256 characters"` //version2
|
|
|
Mime []byte `comment:"maximum 256 characters"` //version2
|
|
|
PairsSize uint16 //version2
|
|
|
|
|
|
|
|
|
PairsSize uint16 //version2
|
|
|
Pairs []byte `comment:"additional name value pairs, json format, maximum 64kB"` |
|
|
Pairs []byte `comment:"additional name value pairs, json format, maximum 64kB"` |
|
|
LastModified uint64 //only store LastModifiedBytesLength bytes, which is 5 bytes to disk
|
|
|
LastModified uint64 //only store LastModifiedBytesLength bytes, which is 5 bytes to disk
|
|
|
Ttl *TTL |
|
|
Ttl *TTL |
|
@ -59,10 +59,8 @@ func ParseUpload(r *http.Request) ( |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
isChunkedFile, _ = strconv.ParseBool(r.FormValue("cm")) |
|
|
|
|
|
|
|
|
|
|
|
if r.Method == "POST" { |
|
|
if r.Method == "POST" { |
|
|
fileName, data, mimeType, isGzipped, e = parseMultipart(r, isChunkedFile) |
|
|
|
|
|
|
|
|
fileName, data, mimeType, isGzipped, isChunkedFile, e = parseMultipart(r) |
|
|
} else { |
|
|
} else { |
|
|
isGzipped = false |
|
|
isGzipped = false |
|
|
mimeType = r.Header.Get("Content-Type") |
|
|
mimeType = r.Header.Get("Content-Type") |
|
|