mirror of
https://github.com/soypat/lneto.git
synced 2026-08-17 05:13:27 +00:00
106 lines
3.0 KiB
Go
106 lines
3.0 KiB
Go
package httpraw
|
|
|
|
// Form holds "application/x-www-form-urlencoded" key-value pairs, the encoding
|
|
// HTML forms use for POST bodies and query strings alike. Methods function
|
|
// similarly to eponymous [Cookie] methods.
|
|
//
|
|
// Pairs are stored as they appear on the wire, percent-encoded and with '+'
|
|
// undecoded, until [Form.Decode] rewrites them in place. The caller bounds the
|
|
// data: Form parses the buffer it is handed and reads nothing more.
|
|
type Form struct {
|
|
kv KVBuffer
|
|
}
|
|
|
|
func (f *Form) EnableBufferGrowth(enableGrowth bool) { f.kv.EnableBufferGrowth(enableGrowth) }
|
|
|
|
// Reset discards parsed pairs and sets the buffer to parse in place.
|
|
// If buf is nil the current buffer is reused.
|
|
func (f *Form) Reset(buf []byte, capKV int) {
|
|
f.kv.Reset(buf, capKV)
|
|
}
|
|
|
|
// ParseBytes copies the argument bytes to the Form's underlying buffer and parses them.
|
|
func (f *Form) ParseBytes(b []byte) error {
|
|
f.Reset(nil, 0)
|
|
err := f.kv.ReadFromBytes(b)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return f.Parse()
|
|
}
|
|
|
|
// Parse parses the form's buffer in place.
|
|
func (f *Form) Parse() error {
|
|
f.kv.discardKVs()
|
|
key, value, rest := NextQueryPair(f.kv.buf)
|
|
for key != nil {
|
|
if !f.kv.setInternal(key, value) {
|
|
return ErrBufferExhausted
|
|
}
|
|
key, value, rest = NextQueryPair(rest)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Decode rewrites every key and value in place, replacing percent escapes and
|
|
// '+' with the bytes they encode. Decoding only shrinks, so no memory is added.
|
|
func (f *Form) Decode() error {
|
|
const plusAsSpace = true // Form encoded data, unlike a path.
|
|
nkvs := f.kv.Len()
|
|
for i := range nkvs {
|
|
k, v := f.kv.At(i)
|
|
nk, err := CopyDecodedPercentURL(k, k, plusAsSpace)
|
|
if err != nil {
|
|
return err
|
|
} else if len(v) == 0 {
|
|
if nk != len(k) {
|
|
f.kv.setAt(i, k, v)
|
|
}
|
|
continue
|
|
}
|
|
nv, err := CopyDecodedPercentURL(v, v, plusAsSpace)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if nk != len(k) || nv != len(v) {
|
|
f.kv.setAt(i, k[:nk], v[:nv])
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Len returns the amount of key-value pairs parsed.
|
|
func (f *Form) Len() int { return f.kv.Len() }
|
|
|
|
// Pair returns the i'th key-value pair in wire order. The value is nil for a
|
|
// pair with no '=', i.e: "ok" in "ok&q=go", which distinguishes it from "ok="
|
|
// where the value is present and empty.
|
|
func (f *Form) Pair(i int) (key, value []byte) {
|
|
return f.kv.At(i)
|
|
}
|
|
|
|
// Get returns the value of the first pair matching key, nil if absent or if the
|
|
// pair has no value. Bytes are compared as stored, so call [Form.Decode] first
|
|
// when keys may be encoded.
|
|
func (f *Form) Get(key string) []byte { return f.kv.Get(key) }
|
|
|
|
// Has returns true if key is present, with or without a value.
|
|
func (f *Form) Has(key string) bool { return f.kv.Present(key) }
|
|
|
|
// AppendKeyValues appends the form's wire representation to dst and returns it.
|
|
func (f *Form) AppendKeyValues(dst []byte) []byte {
|
|
nkv := f.kv.Len()
|
|
for i := range nkv {
|
|
key, value := f.Pair(i)
|
|
if i > 0 {
|
|
dst = append(dst, '&')
|
|
}
|
|
dst = append(dst, key...)
|
|
if value != nil {
|
|
dst = append(dst, '=')
|
|
dst = append(dst, value...)
|
|
}
|
|
}
|
|
return dst
|
|
}
|