2018-11-09 13:54:47 +00:00
|
|
|
|
|
|
|
|
2018-11-11 16:44:30 +00:00
|
|
|
package common
|
2018-11-09 13:54:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
import "bytes"
|
|
|
|
import "fmt"
|
|
|
|
import "regexp"
|
2018-11-14 19:28:25 +00:00
|
|
|
import "sort"
|
2018-11-09 13:54:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
func MetadataEncode (_metadata map[string]string) ([]byte, error) {
|
|
|
|
|
2018-11-14 19:28:25 +00:00
|
|
|
_metadataArray := make ([][2]string, 0, len (_metadata))
|
|
|
|
for _key, _value := range _metadata {
|
|
|
|
_metadataArray = append (_metadataArray, [2]string {_key, _value})
|
|
|
|
}
|
|
|
|
sort.Slice (_metadataArray,
|
|
|
|
func (i int, j int) (bool) {
|
|
|
|
return _metadataArray[i][0] < _metadataArray[j][0]
|
|
|
|
})
|
|
|
|
|
2018-11-09 13:54:47 +00:00
|
|
|
_buffer := & bytes.Buffer {}
|
|
|
|
|
2018-11-14 19:28:25 +00:00
|
|
|
for _, _metadata := range _metadataArray {
|
|
|
|
_key := _metadata[0]
|
|
|
|
_value := _metadata[1]
|
2018-11-09 13:54:47 +00:00
|
|
|
if ! metadataKeyRegex.MatchString (_key) {
|
|
|
|
return nil, fmt.Errorf ("[2f761e02] invalid metadata key: `%s`", _key)
|
|
|
|
}
|
|
|
|
if _value == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if ! metadataValueRegex.MatchString (_value) {
|
|
|
|
return nil, fmt.Errorf ("[e8faf5bd] invalid metadata value: `%s`", _value)
|
|
|
|
}
|
|
|
|
_buffer.Write ([]byte (_key))
|
2019-08-12 19:06:00 +00:00
|
|
|
_buffer.Write ([]byte (": "))
|
2018-11-09 13:54:47 +00:00
|
|
|
_buffer.Write ([]byte (_value))
|
2019-08-12 19:06:00 +00:00
|
|
|
_buffer.Write ([]byte ("\r\n"))
|
2018-11-09 13:54:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_data := _buffer.Bytes ()
|
|
|
|
return _data, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-11-13 01:08:51 +00:00
|
|
|
|
2018-11-09 13:54:47 +00:00
|
|
|
func MetadataDecode (_data []byte) ([][2]string, error) {
|
|
|
|
_metadata := make ([][2]string, 0, 16)
|
2018-11-13 15:38:03 +00:00
|
|
|
_metadataAppend := func (_key []byte, _value []byte) () {
|
|
|
|
_metadata = append (_metadata, [2]string { string (_key), string (_value) })
|
|
|
|
}
|
|
|
|
if _error := MetadataDecodeIterate (_data, _metadataAppend); _error != nil {
|
|
|
|
return nil, _error
|
|
|
|
} else {
|
|
|
|
return _metadata, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-18 01:44:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2018-11-13 15:38:03 +00:00
|
|
|
func MetadataDecodeIterate (_data []byte, _callback func ([]byte, []byte) ()) (error) {
|
|
|
|
|
|
|
|
_dataSize := len (_data)
|
|
|
|
_headerOffset := 0
|
|
|
|
|
|
|
|
for {
|
|
|
|
|
|
|
|
if _headerOffset == _dataSize {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
_data := _data[_headerOffset :]
|
2021-12-18 01:44:31 +00:00
|
|
|
_headerLimit := bytes.Index (_data, []byte ("\r\n"))
|
2018-11-13 15:38:03 +00:00
|
|
|
if (_headerLimit == -1) {
|
|
|
|
return fmt.Errorf ("[2d0d442a] invalid metadata encoding")
|
2018-11-09 13:54:47 +00:00
|
|
|
}
|
2018-11-13 15:38:03 +00:00
|
|
|
|
|
|
|
_data = _data[: _headerLimit]
|
2019-08-12 19:06:00 +00:00
|
|
|
_separator := bytes.Index (_data, []byte (": "))
|
2018-11-13 15:38:03 +00:00
|
|
|
if _separator == -1 {
|
|
|
|
return fmt.Errorf ("[41f3756c] invalid metadata encoding")
|
2018-11-09 13:54:47 +00:00
|
|
|
}
|
2021-12-18 01:44:31 +00:00
|
|
|
|
2018-11-13 15:38:03 +00:00
|
|
|
_key := _data[: _separator]
|
2021-11-18 07:09:07 +00:00
|
|
|
_value := _data[_separator + 2 :]
|
2021-12-18 01:44:31 +00:00
|
|
|
if _separator == 0 {
|
2019-08-12 14:22:29 +00:00
|
|
|
return fmt.Errorf ("[c3f5e8f3] invalid metadata encoding (empty key)")
|
|
|
|
}
|
2021-12-18 01:44:31 +00:00
|
|
|
if _separator == (_headerLimit - 2) {
|
2019-08-12 14:22:29 +00:00
|
|
|
return fmt.Errorf ("[d6a923b6] invalid metadata encoding (empty value)")
|
|
|
|
}
|
2018-11-13 15:38:03 +00:00
|
|
|
|
|
|
|
_callback (_key, _value)
|
2021-12-18 01:44:31 +00:00
|
|
|
|
|
|
|
_headerOffset += _headerLimit + 2
|
2018-11-09 13:54:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-13 01:08:51 +00:00
|
|
|
|
|
|
|
|
2018-11-15 17:11:34 +00:00
|
|
|
var metadataKeyRegex = regexp.MustCompile (`\A(?:[A-Z0-9](?:[a-z0-9]?[a-z]+)(?:-[A-Z0-9](?:[a-z0-9]?[a-z]+))*)|ETag\z`)
|
|
|
|
var metadataValueRegex = regexp.MustCompile (`\A[[:graph:]](?: ?[[:graph:]]+)*\z`)
|
2018-11-09 13:54:47 +00:00
|
|
|
|