HTTPRequest

package
v0.0.0-...-535787f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 16, 2025 License: MIT Imports: 25 Imported by: 0

Documentation

Overview

A node with the ability to send HTTP requests. Uses graphics.gd/classdb/HTTPClient internally.

Can be used to make HTTP requests, i.e. download or upload files or web content via HTTP.

Warning: See the notes and warnings on graphics.gd/classdb/HTTPClient for limitations, especially regarding TLS security.

Note: When exporting to Android, make sure to enable the INTERNET permission in the Android export preset before exporting the project or using one-click deploy. Otherwise, network communication of any kind will be blocked by Android.

Example: Contact a REST API and print one of its returned fields:

package main

import (
	"encoding/json"

	"graphics.gd/classdb/Engine"
	"graphics.gd/classdb/HTTPClient"
	"graphics.gd/classdb/HTTPRequest"
	"graphics.gd/classdb/Node"
	"graphics.gd/variant/Signal"
)

type ExampleHTTP struct {
	Node.Extension[ExampleHTTP]
}

func (n *ExampleHTTP) Ready() {
	// Create an HTTP request node and connect its completion signal.
	var httpRequest = HTTPRequest.New()
	n.AsNode().AddChild(httpRequest.AsNode())
	httpRequest.OnRequestCompleted(func(result HTTPRequest.Result, response_code int, headers []string, body []byte) {
		var Response struct {
			Headers map[string]string
		}
		json.Unmarshal(body, &Response)
		// Will print the user agent string used by the HTTPRequest node (as recognized by httpbin.org).
		println(Response.Headers["User-Agent"])

		// Perform a POST request. The URL below returns JSON as of writing.
		body, _ = json.Marshal(map[string]string{"name": "Godette"})
		var err = HTTPRequest.Expanded(httpRequest).Request("https://httpbin.org/post", nil, HTTPClient.MethodPost, string(body))
		if err != nil {
			Engine.Raise(err)
		}
	}, Signal.OneShot)
	// Perform a GET request. The URL below returns JSON as of writing.
	var err = HTTPRequest.Expanded(httpRequest).Request("https://httpbin.org/get", nil, HTTPClient.MethodGet, "")
	if err != nil {
		Engine.Raise(err)
	}
	// Note: Don't make simultaneous requests using a single HTTPRequest node.
}

Example: Load an image using graphics.gd/classdb/HTTPRequest and display it:

package main

import (
	"errors"

	"graphics.gd/classdb/Engine"
	"graphics.gd/classdb/HTTPRequest"
	"graphics.gd/classdb/Image"
	"graphics.gd/classdb/ImageTexture"
	"graphics.gd/classdb/Node"
	"graphics.gd/classdb/TextureRect"
	"graphics.gd/variant/Signal"
)

type ExampleDownloadImage struct {
	Node.Extension[ExampleDownloadImage]
}

func (n ExampleDownloadImage) Ready() {
	var http_request = HTTPRequest.New()
	n.AsNode().AddChild(http_request.AsNode())
	http_request.AsHTTPRequest().OnRequestCompleted(func(result HTTPRequest.Result, response_code int, headers []string, body []byte) {
		if result != HTTPRequest.ResultSuccess {
			Engine.Raise(errors.New("Image couldn't be downloaded. Try a different image."))
		}
		var image = Image.New()
		var err = image.LoadPngFromBuffer(body)
		if err != nil {
			Engine.Raise(errors.New("Couldn't load the image."))
		}
		var texture = ImageTexture.CreateFromImage(image)

		// Display the image in a TextureRect node.
		var texture_rect = TextureRect.New()
		texture_rect.AsTextureRect().SetTexture(texture.AsTexture2D())
		n.AsNode().AddChild(texture_rect.AsNode())
	}, Signal.OneShot)
	// Perform the HTTP request. The URL below returns a PNG image as of writing.
	var error = http_request.Request("https://placehold.co/512")
	if error != nil {
		panic("An error occurred in the HTTP request.")
	}
}

Note: graphics.gd/classdb/HTTPRequest nodes will automatically handle decompression of response bodies. An Accept-Encoding header will be automatically added to each of your requests, unless one is already specified. Any response with a Content-Encoding: gzip header will automatically be decompressed and delivered to you as uncompressed bytes.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Advanced

type Advanced = class

Advanced exposes a 1:1 low-level instance of the class, undocumented, for those who know what they are doing.

type Any

type Any interface {
	gd.IsClass
	AsHTTPRequest() Instance
}

type Expanded

type Expanded [1]gdclass.HTTPRequest

func (Expanded) Request

func (self Expanded) Request(url string, custom_headers []string, method HTTPClient.Method, request_data string) error

Creates request on the underlying graphics.gd/classdb/HTTPClient. If there is no configuration errors, it tries to connect using graphics.gd/classdb/HTTPClient.Instance.ConnectToHost and passes parameters onto graphics.gd/classdb/HTTPClient.Instance.Request.

Returns [Ok] if request is successfully created. (Does not imply that the server has responded), [ErrUnconfigured] if not in the tree, [ErrBusy] if still processing previous request, [ErrInvalidParameter] if given string is not a valid URL format, or [ErrCantConnect] if not using thread and the graphics.gd/classdb/HTTPClient cannot connect to host.

Note: When 'method' is [Httpclient.MethodGet], the payload sent via 'request_data' might be ignored by the server or even cause the server to reject the request (check RFC 7231 section 4.3.1 for more details). As a workaround, you can send data as a query string in the URL (see graphics.gd/classdb/String.Instance.UriEncode for an example).

Note: It's recommended to use transport encryption (TLS) and to avoid sending sensitive information (such as login credentials) in HTTP GET URL parameters. Consider using HTTP POST requests or HTTP headers for such information instead.

func (Expanded) RequestRaw

func (self Expanded) RequestRaw(url string, custom_headers []string, method HTTPClient.Method, request_data_raw []byte) error

Creates request on the underlying graphics.gd/classdb/HTTPClient using a raw array of bytes for the request body. If there is no configuration errors, it tries to connect using graphics.gd/classdb/HTTPClient.Instance.ConnectToHost and passes parameters onto graphics.gd/classdb/HTTPClient.Instance.Request.

Returns [Ok] if request is successfully created. (Does not imply that the server has responded), [ErrUnconfigured] if not in the tree, [ErrBusy] if still processing previous request, [ErrInvalidParameter] if given string is not a valid URL format, or [ErrCantConnect] if not using thread and the graphics.gd/classdb/HTTPClient cannot connect to host.

type Extension

type Extension[T gdclass.Interface] struct{ gdclass.Extension[T, Instance] }

Extension can be embedded in a new struct to create an extension of this class. T should be the type that is embedding this Extension

func (*Extension[T]) AsHTTPRequest

func (self *Extension[T]) AsHTTPRequest() Instance

func (*Extension[T]) AsNode

func (self *Extension[T]) AsNode() Node.Instance

func (*Extension[T]) AsObject

func (self *Extension[T]) AsObject() [1]gd.Object

type ID

type ID Object.ID

ID is a typed object ID (reference) to an instance of this class, use it to store references to objects with unknown lifetimes, as an ID will not panic on use if the underlying object has been destroyed.

func (ID) Instance

func (id ID) Instance() (Instance, bool)

type Instance

type Instance [1]gdclass.HTTPRequest

Instance of the class with convieniently typed arguments and results.

var Nil Instance

Nil is a nil/null instance of the class. Equivalent to the zero value.

func New

func New() Instance

func (Instance) AcceptGzip

func (self Instance) AcceptGzip() bool

func (Instance) AsHTTPRequest

func (self Instance) AsHTTPRequest() Instance

func (Instance) AsNode

func (self Instance) AsNode() Node.Instance

func (Instance) AsObject

func (self Instance) AsObject() [1]gd.Object

func (Instance) BodySizeLimit

func (self Instance) BodySizeLimit() int

func (Instance) CancelRequest

func (self Instance) CancelRequest()

Cancels the current request.

func (Instance) DownloadChunkSize

func (self Instance) DownloadChunkSize() int

func (Instance) DownloadFile

func (self Instance) DownloadFile() string

func (Instance) GetBodySize

func (self Instance) GetBodySize() int

Returns the response body length.

Note: Some Web servers may not send a body length. In this case, the value returned will be -1. If using chunked transfer encoding, the body length will also be -1.

func (Instance) GetDownloadedBytes

func (self Instance) GetDownloadedBytes() int

Returns the number of bytes this HTTPRequest downloaded.

func (Instance) GetHttpClientStatus

func (self Instance) GetHttpClientStatus() HTTPClient.Status

Returns the current status of the underlying graphics.gd/classdb/HTTPClient.

func (Instance) ID

func (self Instance) ID() ID

func (Instance) MaxRedirects

func (self Instance) MaxRedirects() int

func (Instance) OnRequestCompleted

func (self Instance) OnRequestCompleted(cb func(result Result, response_code int, headers []string, body []byte), flags ...Signal.Flags)

func (Instance) Request

func (self Instance) Request(url string) error

Creates request on the underlying graphics.gd/classdb/HTTPClient. If there is no configuration errors, it tries to connect using graphics.gd/classdb/HTTPClient.Instance.ConnectToHost and passes parameters onto graphics.gd/classdb/HTTPClient.Instance.Request.

Returns [Ok] if request is successfully created. (Does not imply that the server has responded), [ErrUnconfigured] if not in the tree, [ErrBusy] if still processing previous request, [ErrInvalidParameter] if given string is not a valid URL format, or [ErrCantConnect] if not using thread and the graphics.gd/classdb/HTTPClient cannot connect to host.

Note: When 'method' is [Httpclient.MethodGet], the payload sent via 'request_data' might be ignored by the server or even cause the server to reject the request (check RFC 7231 section 4.3.1 for more details). As a workaround, you can send data as a query string in the URL (see graphics.gd/classdb/String.Instance.UriEncode for an example).

Note: It's recommended to use transport encryption (TLS) and to avoid sending sensitive information (such as login credentials) in HTTP GET URL parameters. Consider using HTTP POST requests or HTTP headers for such information instead.

func (Instance) RequestRaw

func (self Instance) RequestRaw(url string) error

Creates request on the underlying graphics.gd/classdb/HTTPClient using a raw array of bytes for the request body. If there is no configuration errors, it tries to connect using graphics.gd/classdb/HTTPClient.Instance.ConnectToHost and passes parameters onto graphics.gd/classdb/HTTPClient.Instance.Request.

Returns [Ok] if request is successfully created. (Does not imply that the server has responded), [ErrUnconfigured] if not in the tree, [ErrBusy] if still processing previous request, [ErrInvalidParameter] if given string is not a valid URL format, or [ErrCantConnect] if not using thread and the graphics.gd/classdb/HTTPClient cannot connect to host.

func (Instance) SetAcceptGzip

func (self Instance) SetAcceptGzip(value bool)

func (Instance) SetBodySizeLimit

func (self Instance) SetBodySizeLimit(value int)

func (Instance) SetDownloadChunkSize

func (self Instance) SetDownloadChunkSize(value int)

func (Instance) SetDownloadFile

func (self Instance) SetDownloadFile(value string)

func (Instance) SetHttpProxy

func (self Instance) SetHttpProxy(host string, port int)

Sets the proxy server for HTTP requests.

The proxy server is unset if 'host' is empty or 'port' is -1.

func (Instance) SetHttpsProxy

func (self Instance) SetHttpsProxy(host string, port int)

Sets the proxy server for HTTPS requests.

The proxy server is unset if 'host' is empty or 'port' is -1.

func (Instance) SetMaxRedirects

func (self Instance) SetMaxRedirects(value int)

func (*Instance) SetObject

func (self *Instance) SetObject(obj [1]gd.Object) bool

func (Instance) SetTimeout

func (self Instance) SetTimeout(value Float.X)

func (Instance) SetTlsOptions

func (self Instance) SetTlsOptions(client_options TLSOptions.Instance)

Sets the graphics.gd/classdb/TLSOptions to be used when connecting to an HTTPS server. See graphics.gd/classdb/TLSOptions.Instance.Client.

func (Instance) SetUseThreads

func (self Instance) SetUseThreads(value bool)

func (Instance) Timeout

func (self Instance) Timeout() Float.X

func (Instance) UseThreads

func (self Instance) UseThreads() bool

func (Instance) Virtual

func (self Instance) Virtual(name string) reflect.Value

type Result

type Result int //gd:HTTPRequest.Result
const (
	// Request successful.
	ResultSuccess Result = 0
	// Request failed due to a mismatch between the expected and actual chunked body size during transfer. Possible causes include network errors, server misconfiguration, or issues with chunked encoding.
	ResultChunkedBodySizeMismatch Result = 1
	// Request failed while connecting.
	ResultCantConnect Result = 2
	// Request failed while resolving.
	ResultCantResolve Result = 3
	// Request failed due to connection (read/write) error.
	ResultConnectionError Result = 4
	// Request failed on TLS handshake.
	ResultTlsHandshakeError Result = 5
	// Request does not have a response (yet).
	ResultNoResponse Result = 6
	// Request exceeded its maximum size limit, see [Instance.BodySizeLimit].
	ResultBodySizeLimitExceeded Result = 7
	// Request failed due to an error while decompressing the response body. Possible causes include unsupported or incorrect compression format, corrupted data, or incomplete transfer.
	ResultBodyDecompressFailed Result = 8
	// Request failed (currently unused).
	ResultRequestFailed Result = 9
	// HTTPRequest couldn't open the download file.
	ResultDownloadFileCantOpen Result = 10
	// HTTPRequest couldn't write to the download file.
	ResultDownloadFileWriteError Result = 11
	// Request reached its maximum redirect limit, see [Instance.MaxRedirects].
	ResultRedirectLimitReached Result = 12
	// Request failed due to a timeout. If you expect requests to take a long time, try increasing the value of [Instance.Timeout] or setting it to 0.0 to remove the timeout completely.
	ResultTimeout Result = 13
)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL