Skip to content

net.http #

Constants #

const max_headers = 50

fn delete #

fn delete(url string) !Response

delete sends an HTTP DELETE request to the given url.

fn download_file #

fn download_file(url string, out_file_path string) !

download_file retrieves a document from the URL url, and saves it in the output file path out_file_path.

fn fetch #

fn fetch(config FetchConfig) !Response

TODO - @[noinline] attribut is used for temporary fix the 'get_text()' intermittent segfault / nil value when compiling with GCC 13.2.x and -prod option ( Issue #20506 ) fetch sends an HTTP request to the url with the given method and configuration.

fn get #

fn get(url string) !Response

get sends a GET HTTP request to the given url.

fn get_text #

fn get_text(url string) string

get_text sends an HTTP GET request to the given url and returns the text content of the response.

fn method_from_str #

fn method_from_str(m string) Method

method_from_str returns the corresponding Method enum field given a string m, e.g. 'GET' would return Method.get.

Currently, the default value is Method.get for unsupported string value.

fn new_custom_header_from_map #

fn new_custom_header_from_map(kvs map[string]string) !Header

new_custom_header_from_map creates a Header from string key value pairs

fn new_header #

fn new_header(kvs ...HeaderConfig) Header

Create a new Header object

fn new_header_from_map #

fn new_header_from_map(kvs map[CommonHeader]string) Header

new_header_from_map creates a Header from key value pairs

fn new_http_proxy #

fn new_http_proxy(raw_url string) !&HttpProxy

new_http_proxy creates a new HttpProxy instance, from the given http proxy url in raw_url

fn new_request #

fn new_request(method Method, url_ string, data string) Request

new_request creates a new Request given the request method, url_, and data.

fn new_response #

fn new_response(conf ResponseConfig) Response

new_response creates a Response object from the configuration. This function will add a Content-Length header if body is not empty.

fn parse_form #

fn parse_form(body string) map[string]string

Parse URL encoded key=value&key=value forms

Fixme: Some servers can require theparameter in a specific order.

a possible solution is to use the a list of QueryValue

fn parse_multipart_form #

fn parse_multipart_form(body string, boundary string) (map[string]string, map[string][]FileData)

parse_multipart_form parses an http request body, given a boundary string For more details about multipart forms, see: https://datatracker.ietf.org/doc/html/rfc2183 https://datatracker.ietf.org/doc/html/rfc2388 https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Disposition

fn parse_request #

fn parse_request(mut reader io.BufferedReader) !Request

parse_request parses a raw HTTP request into a Request object. See also: parse_request_head, which parses only the headers.

fn parse_request_head #

fn parse_request_head(mut reader io.BufferedReader) !Request

parse_request_head parses only the header of a raw HTTP request into a Request object

fn parse_response #

fn parse_response(resp string) !Response

Parse a raw HTTP response into a Response object

fn patch #

fn patch(url string, data string) !Response

patch sends string data as an HTTP PATCH request to the given url.

fn post #

fn post(url string, data string) !Response

post sends the string data as an HTTP POST request to the given url.

fn post_form #

fn post_form(url string, data map[string]string) !Response

post_form sends the map data as X-WWW-FORM-URLENCODED data to an HTTP POST request to the given url.

fn post_form_with_cookies #

fn post_form_with_cookies(url string, data map[string]string, cookies map[string]string) !Response

fn post_json #

fn post_json(url string, data string) !Response

post_json sends the JSON data as an HTTP POST request to the given url.

fn post_multipart_form #

fn post_multipart_form(url string, conf PostMultipartFormConfig) !Response

post_multipart_form sends multipart form data conf as an HTTP POST request to the given url.

fn put #

fn put(url string, data string) !Response

put sends string data as an HTTP PUT request to the given url.

fn read_cookies #

fn read_cookies(h Header, filter string) []&Cookie

Parses all "Cookie" values from the header h and returns the successfully parsed Cookies.

if filter isn't empty, only cookies of that name are returned

fn status_from_int #

fn status_from_int(code int) Status

status_from_int returns the corresponding enum field of Status given the code in integer value.

fn url_encode_form_data #

fn url_encode_form_data(data map[string]string) string

url_encode_form_data converts mapped data to a URL encoded string.

fn version_from_str #

fn version_from_str(v string) Version

interface Handler #

interface Handler {
mut:
	handle(Request) Response
}

fn (HeaderKeyError) msg #

fn (err HeaderKeyError) msg() string

fn (HeaderKeyError) code #

fn (err HeaderKeyError) code() int

type RequestFinishFn #

type RequestFinishFn = fn (request &Request, final_size u64) !

type RequestProgressFn #

type RequestProgressFn = fn (request &Request, chunk []u8, read_so_far u64) !

type RequestRedirectFn #

type RequestRedirectFn = fn (request &Request, nredirects int, new_url string) !

enum CommonHeader #

enum CommonHeader {
	accept
	accept_ch
	accept_charset
	accept_ch_lifetime
	accept_encoding
	accept_language
	accept_patch
	accept_post
	accept_ranges
	access_control_allow_credentials
	access_control_allow_headers
	access_control_allow_methods
	access_control_allow_origin
	access_control_expose_headers
	access_control_max_age
	access_control_request_headers
	access_control_request_method
	age
	allow
	alt_svc
	authorization
	authority
	cache_control
	clear_site_data
	connection
	content_disposition
	content_encoding
	content_language
	content_length
	content_location
	content_range
	content_security_policy
	content_security_policy_report_only
	content_type
	cookie
	cross_origin_embedder_policy
	cross_origin_opener_policy
	cross_origin_resource_policy
	date
	device_memory
	digest
	dnt
	early_data
	etag
	expect
	expect_ct
	expires
	feature_policy
	forwarded
	from
	host
	if_match
	if_modified_since
	if_none_match
	if_range
	if_unmodified_since
	index
	keep_alive
	large_allocation
	last_modified
	link
	location
	nel
	origin
	pragma
	proxy_authenticate
	proxy_authorization
	range
	referer
	referrer_policy
	retry_after
	save_data
	sec_fetch_dest
	sec_fetch_mode
	sec_fetch_site
	sec_fetch_user
	sec_websocket_accept
	sec_websocket_key
	server
	server_timing
	set_cookie
	sourcemap
	strict_transport_security
	te
	timing_allow_origin
	tk
	trailer
	transfer_encoding
	upgrade
	upgrade_insecure_requests
	user_agent
	vary
	via
	want_digest
	warning
	www_authenticate
	x_content_type_options
	x_dns_prefetch_control
	x_forwarded_for
	x_forwarded_host
	x_forwarded_proto
	x_frame_options
	x_xss_protection
}

CommonHeader is an enum of the most common HTTP headers

fn (CommonHeader) str #

fn (h CommonHeader) str() string

enum Method #

enum Method { // as of 2023-06-20
	get // Note: get ***should*** remain the first value here, to ensure that http.fetch() by default will use it
	head
	post
	put
	// uncommon ones:
	acl
	baseline_control
	bind
	checkin
	checkout
	connect
	copy
	delete
	label
	link
	@lock
	merge
	mkactivity
	mkcalendar
	mkcol
	mkredirectref
	mkworkspace
	move
	options
	orderpatch
	patch
	pri
	propfind
	proppatch
	rebind
	report
	search
	trace
	unbind
	uncheckout
	unlink
	unlock
	update
	updateredirectref
	version_control
}

The methods listed here are all of those on the list available at: https://www.iana.org/assignments/http-methods/http-methods.xhtml

fn (Method) str #

fn (m Method) str() string

str returns the string representation of the HTTP Method m.

enum SameSite #

enum SameSite {
	same_site_not_set
	same_site_default_mode = 1
	same_site_lax_mode
	same_site_strict_mode
	same_site_none_mode
}

SameSite allows a server to define a cookie attribute making it impossible for the browser to send this cookie along with cross-site requests. The main goal is to mitigate the risk of cross-origin information leakage, and provide some protection against cross-site request forgery attacks.

See https://tools.ietf.org/html/draft-ietf-httpbis-cookie-same-site-00 for details.

enum ServerStatus #

enum ServerStatus {
	closed
	running
	stopped
}

enum Status #

enum Status {
	unknown                         = -1
	unassigned                      = 0
	cont                            = 100
	switching_protocols             = 101
	processing                      = 102
	checkpoint_draft                = 103
	ok                              = 200
	created                         = 201
	accepted                        = 202
	non_authoritative_information   = 203
	no_content                      = 204
	reset_content                   = 205
	partial_content                 = 206
	multi_status                    = 207
	already_reported                = 208
	im_used                         = 226
	multiple_choices                = 300
	moved_permanently               = 301
	found                           = 302
	see_other                       = 303
	not_modified                    = 304
	use_proxy                       = 305
	switch_proxy                    = 306
	temporary_redirect              = 307
	permanent_redirect              = 308
	bad_request                     = 400
	unauthorized                    = 401
	payment_required                = 402
	forbidden                       = 403
	not_found                       = 404
	method_not_allowed              = 405
	not_acceptable                  = 406
	proxy_authentication_required   = 407
	request_timeout                 = 408
	conflict                        = 409
	gone                            = 410
	length_required                 = 411
	precondition_failed             = 412
	request_entity_too_large        = 413
	request_uri_too_long            = 414
	unsupported_media_type          = 415
	requested_range_not_satisfiable = 416
	expectation_failed              = 417
	im_a_teapot                     = 418
	misdirected_request             = 421
	unprocessable_entity            = 422
	locked                          = 423
	failed_dependency               = 424
	unordered_collection            = 425
	upgrade_required                = 426
	precondition_required           = 428
	too_many_requests               = 429
	request_header_fields_too_large = 431
	unavailable_for_legal_reasons   = 451
	client_closed_request           = 499
	internal_server_error           = 500
	not_implemented                 = 501
	bad_gateway                     = 502
	service_unavailable             = 503
	gateway_timeout                 = 504
	http_version_not_supported      = 505
	variant_also_negotiates         = 506
	insufficient_storage            = 507
	loop_detected                   = 508
	bandwidth_limit_exceeded        = 509
	not_extended                    = 510
	network_authentication_required = 511
}

The status codes listed here are based on the comprehensive list, available at: https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml

fn (Status) str #

fn (code Status) str() string

str returns the string representation of Status code.

fn (Status) int #

fn (code Status) int() int

int converts an assigned and known Status to its integral equivalent. if a Status is unknown or unassigned, this method will return zero

fn (Status) is_valid #

fn (code Status) is_valid() bool

is_valid returns true if the status code is assigned and known

fn (Status) is_error #

fn (code Status) is_error() bool

is_error will return true if the status code represents either a client or a server error; otherwise will return false

fn (Status) is_success #

fn (code Status) is_success() bool

is_success will return true if the status code represents either an informational, success, or redirection response; otherwise will return false

enum Version #

enum Version {
	unknown
	v1_1
	v2_0
	v1_0
}

The versions listed here are the most common ones.

fn (Version) str #

fn (v Version) str() string

fn (Version) protos #

fn (v Version) protos() (int, int)

protos returns the version major and minor numbers

fn (Cookie) str #

fn (c &Cookie) str() string

str returns the serialization of the cookie for use in a Cookie header (if only Name and Value are set) or a Set-Cookie response header (if other fields are set).

If c.name is invalid, the empty string is returned.

struct FetchConfig #

struct FetchConfig {
pub mut:
	url        string
	method     Method = .get
	header     Header
	data       string
	params     map[string]string
	cookies    map[string]string
	user_agent string  = 'v.http'
	user_ptr   voidptr = unsafe { nil }
	verbose    bool
	proxy      &HttpProxy = unsafe { nil }
	//
	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
	max_retries            int  = 5 // maximum number of retries required when an underlying socket error occurs
	// callbacks to allow custom reporting code to run, while the request is running
	on_redirect RequestRedirectFn = unsafe { nil }
	on_progress RequestProgressFn = unsafe { nil }
	on_finish   RequestFinishFn   = unsafe { nil }
}

FetchConfig holds configuration data for the fetch function.

struct FileData #

struct FileData {
pub:
	filename     string
	content_type string
	data         string
}

fn (Header) free #

fn (mut h Header) free()

fn (Header) add #

fn (mut h Header) add(key CommonHeader, value string)

add appends a value to the header key.

fn (Header) add_custom #

fn (mut h Header) add_custom(key string, value string) !

add_custom appends a value to a custom header key. This function will return an error if the key contains invalid header characters.

fn (Header) add_map #

fn (mut h Header) add_map(kvs map[CommonHeader]string)

add_map appends the value for each header key.

fn (Header) add_custom_map #

fn (mut h Header) add_custom_map(kvs map[string]string) !

add_custom_map appends the value for each custom header key.

fn (Header) set #

fn (mut h Header) set(key CommonHeader, value string)

set sets the key-value pair. This function will clear any other values that exist for the CommonHeader.

fn (Header) set_custom #

fn (mut h Header) set_custom(key string, value string) !

set_custom sets the key-value pair for a custom header key. This function will clear any other values that exist for the header. This function will return an error if the key contains invalid header characters.

fn (Header) delete #

fn (mut h Header) delete(key CommonHeader)

delete deletes all values for a key.

fn (Header) delete_custom #

fn (mut h Header) delete_custom(key string)

delete_custom deletes all values for a custom header key.

fn (Header) coerce #

fn (mut h Header) coerce(flags HeaderCoerceConfig)

coerce coerces data in the Header by joining keys that match case-insensitively into one entry. [deprecated: 'no need to call this method anymore, keys are automatically coerced']

fn (Header) contains #

fn (h Header) contains(key CommonHeader) bool

contains returns whether the header key exists in the map.

fn (Header) contains_custom #

fn (h Header) contains_custom(key string, flags HeaderQueryConfig) bool

contains_custom returns whether the custom header key exists in the map.

fn (Header) get #

fn (h Header) get(key CommonHeader) !string

get gets the first value for the CommonHeader, or none if the key does not exist.

fn (Header) get_custom #

fn (h Header) get_custom(key string, flags HeaderQueryConfig) !string

get_custom gets the first value for the custom header, or none if the key does not exist.

fn (Header) starting_with #

fn (h Header) starting_with(key string) !string

starting_with gets the first header starting with key, or none if the key does not exist.

fn (Header) values #

fn (h Header) values(key CommonHeader) []string

values gets all values for the CommonHeader.

fn (Header) custom_values #

fn (h Header) custom_values(key string, flags HeaderQueryConfig) []string

custom_values gets all values for the custom header.

fn (Header) keys #

fn (h Header) keys() []string

keys gets all header keys as strings

fn (Header) render #

fn (h Header) render(flags HeaderRenderConfig) string

render renders the Header into a string for use in sending HTTP requests. All header lines will end in \r\n

fn (Header) render_into_sb #

fn (h Header) render_into_sb(mut sb strings.Builder, flags HeaderRenderConfig)

render_into_sb works like render, but uses a preallocated string builder instead. This method should be used only for performance critical applications.

fn (Header) join #

fn (h Header) join(other Header) Header

join combines two Header structs into a new Header struct

fn (Header) str #

fn (h Header) str() string

str returns the headers string as seen in HTTP/1.1 requests. Key order is not guaranteed.

struct HeaderCoerceConfig #

@[params]
struct HeaderCoerceConfig {
	canonicalize bool
}

struct HeaderConfig #

struct HeaderConfig {
	key   CommonHeader
	value string
}

struct HeaderQueryConfig #

@[params]
struct HeaderQueryConfig {
	exact bool
}

struct HeaderRenderConfig #

@[params]
struct HeaderRenderConfig {
	version      Version
	coerce       bool
	canonicalize bool
}

struct MultiplePathAttributesError #

struct MultiplePathAttributesError {
	Error
}

fn (MultiplePathAttributesError) msg #

fn (err MultiplePathAttributesError) msg() string

struct PostMultipartFormConfig #

@[params]
struct PostMultipartFormConfig {
pub mut:
	form   map[string]string
	files  map[string][]FileData
	header Header
}

struct Request #

struct Request {
pub mut:
	version    Version = .v1_1
	method     Method  = .get
	header     Header
	host       string
	cookies    map[string]string @[deprecated: 'use req.cookie(name) and req.add_cookie(name) instead']
	data       string
	url        string
	user_agent string = 'v.http'
	verbose    bool
	user_ptr   voidptr
	proxy      &HttpProxy = unsafe { nil }
	// NOT implemented for ssl connections
	// time = -1 for no timeout
	read_timeout  i64 = 30 * time.second
	write_timeout i64 = 30 * time.second
	//
	validate               bool // when true, certificate failures will stop further processing
	verify                 string
	cert                   string
	cert_key               string
	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
	max_retries            int  = 5 // maximum number of retries required when an underlying socket error occurs
	// callbacks to allow custom reporting code to run, while the request is running
	on_redirect RequestRedirectFn = unsafe { nil }
	on_progress RequestProgressFn = unsafe { nil }
	on_finish   RequestFinishFn   = unsafe { nil }
}

Request holds information about an HTTP request (either received by a server or to be sent by a client)

fn (Request) add_header #

fn (mut req Request) add_header(key CommonHeader, val string)

add_header adds the key and value of an HTTP request header To add a custom header, use add_custom_header

fn (Request) add_custom_header #

fn (mut req Request) add_custom_header(key string, val string) !

add_custom_header adds the key and value of an HTTP request header This method may fail if the key contains characters that are not permitted

fn (Request) cookie #

fn (req &Request) cookie(name string) ?Cookie

cookie returns the named cookie provided in the request or none if not found. If multiple cookies match the given name, only one cookie will be returned.

fn (Request) do #

fn (req &Request) do() !Response

do will send the HTTP request and returns http.Response as soon as the response is received

fn (Request) referer #

fn (req &Request) referer() string

referer returns 'Referer' header value of the given request

struct Response #

struct Response {
pub mut:
	body         string
	header       Header
	status_code  int
	status_msg   string
	http_version string
}

Response represents the result of the request

fn (Response) bytes #

fn (resp Response) bytes() []u8

Formats resp to bytes suitable for HTTP response transmission

fn (Response) bytestr #

fn (resp Response) bytestr() string

Formats resp to a string suitable for HTTP response transmission

fn (Response) cookies #

fn (r Response) cookies() []Cookie

cookies parses the Set-Cookie headers into Cookie objects

fn (Response) status #

fn (r Response) status() Status

status parses the status_code into a Status struct

fn (Response) set_status #

fn (mut r Response) set_status(s Status)

set_status sets the status_code and status_msg of the response

fn (Response) version #

fn (r Response) version() Version

version parses the version

fn (Response) set_version #

fn (mut r Response) set_version(v Version)

set_version sets the http_version string of the response

struct ResponseConfig #

struct ResponseConfig {
	version Version = .v1_1
	status  Status  = .ok
	header  Header
	body    string
}

struct Server #

struct Server {
mut:
	state ServerStatus = .closed
pub mut:
	addr               string = ':8080' // change to ':8080' when port is removed
	port               int = 8080             @[deprecated: 'use addr']
	handler            Handler       = DebugHandler{}
	read_timeout       time.Duration = 30 * time.second
	write_timeout      time.Duration = 30 * time.second
	accept_timeout     time.Duration = 30 * time.second
	pool_channel_slots int = 1024
	worker_num         int = runtime.nr_jobs()
	listener           net.TcpListener
	//
	on_running fn (mut s Server) = unsafe { nil } // Blocking cb. If set, ran by the web server on transitions to its .running state.
	on_stopped fn (mut s Server) = unsafe { nil } // Blocking cb. If set, ran by the web server on transitions to its .stopped state.
	on_closed  fn (mut s Server) = unsafe { nil } // Blocking cb. If set, ran by the web server on transitions to its .closed state.
	//
	show_startup_message bool = true // set to false, to remove the default `Listening on ...` message.
}

fn (Server) listen_and_serve #

fn (mut s Server) listen_and_serve()

listen_and_serve listens on the server port s.port over TCP network and uses s.parse_and_respond to handle requests on incoming connections with s.handler.

fn (Server) stop #

fn (mut s Server) stop()

stop signals the server that it should not respond anymore.

fn (Server) close #

fn (mut s Server) close()

close immediately closes the port and signals the server that it has been closed.

fn (Server) status #

fn (s &Server) status() ServerStatus

status indicates whether the server is running, stopped, or closed.

fn (Server) wait_till_running #

fn (mut s Server) wait_till_running(params WaitTillRunningParams) !int

wait_till_running allows you to synchronise your calling (main) thread, with the state of the server (when the server is running in another thread). It returns an error, after params.max_retries * params.retry_period_ms milliseconds have passed, without that expected server transition.

struct UnexpectedExtraAttributeError #

struct UnexpectedExtraAttributeError {
	Error
	attributes []string
}

fn (UnexpectedExtraAttributeError) msg #

fn (err UnexpectedExtraAttributeError) msg() string

struct WaitTillRunningParams #

@[params]
struct WaitTillRunningParams {
pub:
	max_retries     int = 100 // how many times to check for the status, for each single s.wait_till_running() call
	retry_period_ms int = 10 // how much time to wait between each check for the status, in milliseconds
}

WaitTillRunningParams allows for parametrising the calls to s.wait_till_running()