v/vlib/net/urllib/values.v

88 lines
1.9 KiB
V
Raw Normal View History

// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
2019-08-01 15:01:03 +02:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module urllib
struct Value {
pub mut:
2019-08-01 15:01:03 +02:00
data []string
}
struct Values {
pub mut:
2019-08-01 15:01:03 +02:00
data map[string]Value
len int
2019-08-01 15:01:03 +02:00
}
// new_values returns a new Values struct for creating
2019-11-14 07:53:05 +01:00
// urlencoded query string parameters. it can also be to
// post form data with application/x-www-form-urlencoded.
// values.encode() will return the encoded data
pub fn new_values() Values {
2019-08-01 15:01:03 +02:00
return Values{
data: map[string]Value{}
2019-08-01 15:01:03 +02:00
}
}
// Currently you will need to use all()[key].data
// once map[string][]string is implemented
// this will be fixed
pub fn (v &Value) all() []string {
2019-08-01 15:01:03 +02:00
return v.data
}
// get gets the first value associated with the given key.
// If there are no values associated with the key, get returns
// a empty string.
pub fn (v &Values) get(key string) string {
2020-06-21 16:51:02 +02:00
if v.data.len == 0 {
2019-08-01 15:01:03 +02:00
return ''
}
vs := v.data[key]
if vs.data.len == 0 {
return ''
}
return vs.data[0]
}
// get_all gets the all the values associated with the given key.
// If there are no values associated with the key, get returns
// a empty []string.
pub fn (v &Values) get_all(key string) []string {
2020-06-21 16:51:02 +02:00
if v.data.len == 0 {
2019-11-14 07:53:05 +01:00
return []
}
vs := v.data[key]
if vs.data.len == 0 {
2019-11-14 07:53:05 +01:00
return []
}
return vs.data
}
// set sets the key to value. It replaces any existing
2019-08-01 15:01:03 +02:00
// values.
pub fn (mut v Values) set(key string, value string) {
mut a := v.data[key]
a.data = [value]
v.data[key] = a
2020-06-21 16:51:02 +02:00
v.len = v.data.len
2019-08-01 15:01:03 +02:00
}
// add adds the value to key. It appends to any existing
2019-08-01 15:01:03 +02:00
// values associated with key.
pub fn (mut v Values) add(key string, value string) {
2019-08-01 15:01:03 +02:00
mut a := v.data[key]
if a.data.len == 0 {
2019-11-14 07:53:05 +01:00
a.data = []
}
2019-08-01 15:01:03 +02:00
a.data << value
v.data[key] = a
2020-06-21 16:51:02 +02:00
v.len = v.data.len
2019-08-01 15:01:03 +02:00
}
// del deletes the values associated with key.
2020-05-17 13:51:18 +02:00
pub fn (mut v Values) del(key string) {
2019-08-01 15:01:03 +02:00
v.data.delete(key)
2020-06-21 16:51:02 +02:00
v.len = v.data.len
2019-08-01 15:01:03 +02:00
}