v/vlib/net/http/http.v

221 lines
6.1 KiB
V
Raw Normal View History

2022-01-04 10:21:08 +01:00
// Copyright (c) 2019-2022 Alexander Medvednikov. All rights reserved.
2019-06-23 04:21:30 +02:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
2019-06-22 20:20:28 +02:00
module http
2019-08-06 14:43:09 +02:00
import net.urllib
const (
2020-05-16 16:12:23 +02:00
max_redirects = 4
2020-01-16 18:16:11 +01:00
content_type_default = 'text/plain'
bufsize = 1536
)
// FetchConfig holds configurations of fetch
2020-01-16 18:16:11 +01:00
pub struct FetchConfig {
pub mut:
2021-08-17 08:16:59 +02:00
url string
method Method
header Header
data string
params map[string]string
cookies map[string]string
2020-05-20 08:58:57 +02:00
user_agent string = 'v.http'
verbose bool
//
2021-09-09 18:55:49 +02:00
validate bool // set this to true, if you want to stop requests, when their certificates are found to be invalid
verify string // the path to a rootca.pem file, containing trusted CA certificate(s)
cert string // the path to a cert.pem file, containing client certificate(s) for the request
cert_key string // the path to a key.pem file, containing private keys for the client certificate(s)
in_memory_verification bool // if true, verify, cert, and cert_key are read from memory, not from a file
allow_redirect bool = true // whether to allow redirect
2020-01-16 18:16:11 +01:00
}
pub fn new_request(method Method, url_ string, data string) ?Request {
url := if method == .get && !url_.contains('?') { url_ + '?' + data } else { url_ }
// println('new req() method=$method url="$url" dta="$data"')
return Request{
method: method
url: url
data: data
/*
headers: {
'Accept-Encoding': 'compress'
}
*/
}
}
// get sends a GET HTTP request to the URL
2020-01-16 18:16:11 +01:00
pub fn get(url string) ?Response {
2021-08-17 08:16:59 +02:00
return fetch(method: .get, url: url)
2020-01-14 23:19:50 +01:00
}
// post sends a POST HTTP request to the URL with a string data
pub fn post(url string, data string) ?Response {
2021-08-17 08:16:59 +02:00
return fetch(
method: .post
url: url
data: data
header: new_header(key: .content_type, value: http.content_type_default)
)
2020-01-14 23:19:50 +01:00
}
// post_json sends a POST HTTP request to the URL with a JSON data
pub fn post_json(url string, data string) ?Response {
2021-08-17 08:16:59 +02:00
return fetch(
method: .post
url: url
data: data
header: new_header(key: .content_type, value: 'application/json')
)
}
// post_form sends a POST HTTP request to the URL with X-WWW-FORM-URLENCODED data
2020-01-16 18:16:11 +01:00
pub fn post_form(url string, data map[string]string) ?Response {
2021-08-17 08:16:59 +02:00
return fetch(
method: .post
url: url
header: new_header(key: .content_type, value: 'application/x-www-form-urlencoded')
data: url_encode_form_data(data)
)
2020-01-14 23:19:50 +01:00
}
[params]
pub struct PostMultipartFormConfig {
pub mut:
form map[string]string
files map[string][]FileData
header Header
}
// post_multipart_form sends a POST HTTP request to the URL with multipart form data
pub fn post_multipart_form(url string, conf PostMultipartFormConfig) ?Response {
body, boundary := multipart_form_body(conf.form, conf.files)
mut header := conf.header
header.set(.content_type, 'multipart/form-data; boundary="$boundary"')
return fetch(
method: .post
url: url
header: header
data: body
)
}
// put sends a PUT HTTP request to the URL with a string data
pub fn put(url string, data string) ?Response {
2021-08-17 08:16:59 +02:00
return fetch(
method: .put
url: url
data: data
header: new_header(key: .content_type, value: http.content_type_default)
)
2020-01-14 23:19:50 +01:00
}
// patch sends a PATCH HTTP request to the URL with a string data
pub fn patch(url string, data string) ?Response {
2021-08-17 08:16:59 +02:00
return fetch(
method: .patch
url: url
data: data
header: new_header(key: .content_type, value: http.content_type_default)
)
2019-07-29 19:18:26 +02:00
}
// head sends a HEAD HTTP request to the URL
2020-01-16 18:16:11 +01:00
pub fn head(url string) ?Response {
2021-08-17 08:16:59 +02:00
return fetch(method: .head, url: url)
2019-06-22 20:20:28 +02:00
}
// delete sends a DELETE HTTP request to the URL
2020-01-16 18:16:11 +01:00
pub fn delete(url string) ?Response {
2021-08-17 08:16:59 +02:00
return fetch(method: .delete, url: url)
}
// fetch sends an HTTP request to the URL with the given method and configurations
2021-08-17 08:16:59 +02:00
pub fn fetch(config FetchConfig) ?Response {
if config.url == '' {
2020-01-16 18:16:11 +01:00
return error('http.fetch: empty url')
2019-07-29 19:18:26 +02:00
}
2021-08-17 08:16:59 +02:00
url := build_url_from_fetch(config) or { return error('http.fetch: invalid url $config.url') }
2020-01-16 18:16:11 +01:00
req := Request{
method: config.method
url: url
2021-08-17 08:16:59 +02:00
data: config.data
header: config.header
2020-01-16 18:16:11 +01:00
cookies: config.cookies
user_agent: config.user_agent
2019-06-22 20:20:28 +02:00
user_ptr: 0
2020-01-16 18:16:11 +01:00
verbose: config.verbose
validate: config.validate
verify: config.verify
cert: config.cert
cert_key: config.cert_key
2021-09-09 18:55:49 +02:00
in_memory_verification: config.in_memory_verification
allow_redirect: config.allow_redirect
2019-06-22 20:20:28 +02:00
}
res := req.do()?
2020-01-16 18:16:11 +01:00
return res
2019-06-22 20:20:28 +02:00
}
// get_text sends a GET HTTP request to the URL and returns the text content of the response
2019-07-31 22:10:28 +02:00
pub fn get_text(url string) string {
2021-08-17 08:16:59 +02:00
resp := fetch(url: url, method: .get) or { return '' }
return resp.body
2019-10-24 18:44:49 +02:00
}
2019-07-31 22:10:28 +02:00
// url_encode_form_data converts mapped data to an URL encoded string
2020-01-16 18:16:11 +01:00
pub fn url_encode_form_data(data map[string]string) string {
2020-04-26 13:49:31 +02:00
mut pieces := []string{}
for key_, value_ in data {
key := urllib.query_escape(key_)
value := urllib.query_escape(value_)
2020-01-16 18:16:11 +01:00
pieces << '$key=$value'
}
return pieces.join('&')
}
2021-08-17 08:16:59 +02:00
[deprecated: 'use fetch()']
fn fetch_with_method(method Method, _config FetchConfig) ?Response {
2020-01-16 18:16:11 +01:00
mut config := _config
config.method = method
2021-08-17 08:16:59 +02:00
return fetch(config)
2020-01-16 18:16:11 +01:00
}
2021-08-17 08:16:59 +02:00
fn build_url_from_fetch(config FetchConfig) ?string {
mut url := urllib.parse(config.url)?
if config.params.len == 0 {
2020-01-16 18:16:11 +01:00
return url.str()
}
mut pieces := []string{cap: config.params.len}
for key, val in config.params {
pieces << '$key=$val'
2020-01-16 18:16:11 +01:00
}
mut query := pieces.join('&')
if url.raw_query.len > 1 {
query = url.raw_query + '&' + query
}
url.raw_query = query
return url.str()
}
[deprecated: 'unescape_url is deprecated, use urllib.query_unescape() instead']
pub fn unescape_url(s string) string {
2019-10-24 18:44:49 +02:00
panic('http.unescape_url() was replaced with urllib.query_unescape()')
}
[deprecated: 'escape_url is deprecated, use urllib.query_escape() instead']
pub fn escape_url(s string) string {
2019-10-24 18:44:49 +02:00
panic('http.escape_url() was replaced with urllib.query_escape()')
}
[deprecated: 'unescape is deprecated, use urllib.query_escape() instead']
pub fn unescape(s string) string {
2019-10-24 18:44:49 +02:00
panic('http.unescape() was replaced with http.unescape_url()')
}
[deprecated: 'escape is deprecated, use urllib.query_unescape() instead']
pub fn escape(s string) string {
2019-10-24 18:44:49 +02:00
panic('http.escape() was replaced with http.escape_url()')
}