2022-01-04 10:21:08 +01:00
|
|
|
// Copyright (c) 2019-2022 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
|
|
|
|
|
2022-02-09 16:36:12 +01:00
|
|
|
struct QueryValue {
|
2019-12-13 18:09:11 +01:00
|
|
|
pub mut:
|
2022-02-09 16:36:12 +01:00
|
|
|
key string
|
|
|
|
value string
|
2019-08-01 15:01:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Values {
|
2019-12-13 18:09:11 +01:00
|
|
|
pub mut:
|
2022-02-09 16:36:12 +01:00
|
|
|
data []QueryValue
|
2020-10-15 15:17:52 +02:00
|
|
|
len int
|
2019-08-01 15:01:03 +02:00
|
|
|
}
|
|
|
|
|
2019-08-02 23:28:55 +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
|
2019-08-02 23:28:55 +02:00
|
|
|
// 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{
|
2022-02-09 16:36:12 +01:00
|
|
|
data: []QueryValue{}
|
2019-08-01 15:01:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-02 23:28:55 +02:00
|
|
|
// get gets the first value associated with the given key.
|
|
|
|
// If there are no values associated with the key, get returns
|
|
|
|
// a empty string.
|
2019-10-10 19:04:11 +02:00
|
|
|
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 ''
|
|
|
|
}
|
2022-02-09 16:36:12 +01:00
|
|
|
for qvalue in v.data {
|
|
|
|
if qvalue.key == key {
|
|
|
|
return qvalue.value
|
|
|
|
}
|
2019-08-01 15:01:03 +02:00
|
|
|
}
|
2022-02-09 16:36:12 +01:00
|
|
|
return ''
|
2019-08-01 15:01:03 +02:00
|
|
|
}
|
|
|
|
|
2019-08-02 23:28:55 +02:00
|
|
|
// 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.
|
2019-10-10 19:04:11 +02:00
|
|
|
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 []
|
2019-08-02 23:28:55 +02:00
|
|
|
}
|
2022-02-09 16:36:12 +01:00
|
|
|
mut values := []string{}
|
|
|
|
for qvalue in v.data {
|
|
|
|
if qvalue.key == key {
|
|
|
|
values << qvalue.value
|
|
|
|
}
|
2019-08-02 23:28:55 +02:00
|
|
|
}
|
2022-02-09 16:36:12 +01:00
|
|
|
return values
|
2019-08-02 23:28:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// set sets the key to value. It replaces any existing
|
2022-02-13 14:06:00 +01:00
|
|
|
// values, or create a new bucket with the new key if it is missed.
|
2020-10-15 15:17:52 +02:00
|
|
|
pub fn (mut v Values) set(key string, value string) {
|
2022-02-09 16:36:12 +01:00
|
|
|
// A query string can contains several
|
|
|
|
// duplicate, so we need to make sure that we
|
|
|
|
// cover all the edge case.
|
2022-02-13 14:06:00 +01:00
|
|
|
mut found := false
|
2022-02-09 16:36:12 +01:00
|
|
|
for mut qvalue in v.data {
|
2022-02-13 14:06:00 +01:00
|
|
|
if qvalue.key == key {
|
|
|
|
found = true
|
|
|
|
qvalue.value = value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !found {
|
|
|
|
v.add(key, value)
|
2022-02-09 16:36:12 +01:00
|
|
|
}
|
2019-08-01 15:01:03 +02:00
|
|
|
}
|
|
|
|
|
2019-08-02 23:28:55 +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.
|
2020-10-15 15:17:52 +02:00
|
|
|
pub fn (mut v Values) add(key string, value string) {
|
2022-02-09 16:36:12 +01:00
|
|
|
v.data << QueryValue{
|
|
|
|
key: key
|
|
|
|
value: value
|
2019-08-02 23:28:55 +02:00
|
|
|
}
|
2020-06-21 16:51:02 +02:00
|
|
|
v.len = v.data.len
|
2019-08-01 15:01:03 +02:00
|
|
|
}
|
|
|
|
|
2019-08-02 23:28:55 +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) {
|
2022-02-09 16:36:12 +01:00
|
|
|
for idx, qvalue in v.data {
|
|
|
|
if qvalue.key == key {
|
|
|
|
v.data.delete(idx)
|
|
|
|
}
|
|
|
|
}
|
2020-06-21 16:51:02 +02:00
|
|
|
v.len = v.data.len
|
2019-08-01 15:01:03 +02:00
|
|
|
}
|
2022-02-09 16:36:12 +01:00
|
|
|
|
|
|
|
// return the list of values in the query string
|
|
|
|
pub fn (v Values) values() []string {
|
|
|
|
mut values := []string{}
|
|
|
|
for qvalue in v.data {
|
|
|
|
if qvalue.value != '' {
|
|
|
|
values << qvalue.value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return values
|
|
|
|
}
|
|
|
|
|
|
|
|
// return a map <key []value> of the query string
|
|
|
|
pub fn (v Values) to_map() map[string][]string {
|
|
|
|
mut result := map[string][]string{}
|
|
|
|
|
|
|
|
for qvalue in v.data {
|
|
|
|
if qvalue.key in result {
|
|
|
|
result[qvalue.key] << qvalue.value
|
|
|
|
} else {
|
|
|
|
result[qvalue.key] = [qvalue.value]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|