Uri

class Uri(pointer: <Error class: unknown class><<Error class: unknown class>>) : Record

The #GUri type and related functions can be used to parse URIs into their components, and build valid URIs from individual components.

Note that #GUri scope is to help manipulate URIs in various applications, following RFC 3986. In particular, it doesn't intend to cover web browser needs, and doesn't implement the WHATWG URL standard. No APIs are provided to help prevent homograph attacks, so #GUri is not suitable for formatting URIs for display to the user for making security-sensitive decisions.

Relative and absolute URIs # {#relative-absolute-uris}

As defined in RFC 3986, the hierarchical nature of URIs means that they can either be ‘relative references’ (sometimes referred to as ‘relative URIs’) or ‘URIs’ (for clarity, ‘URIs’ are referred to in this documentation as ‘absolute URIs’ — although in constrast to RFC 3986, fragment identifiers are always allowed).

Relative references have one or more components of the URI missing. In particular, they have no scheme. Any other component, such as hostname, query, etc. may be missing, apart from a path, which has to be specified (but may be empty). The path may be relative, starting with ./ rather than /.

For example, a valid relative reference is ./path?query, /?query#fragment or //example.com.

Absolute URIs have a scheme specified. Any other components of the URI which are missing are specified as explicitly unset in the URI, rather than being resolved relative to a base URI using g_uri_parse_relative().

For example, a valid absolute URI is file:///home/bob or https://search.com?query=string.

A #GUri instance is always an absolute URI. A string may be an absolute URI or a relative reference; see the documentation for individual functions as to what forms they accept.

Parsing URIs

The most minimalist APIs for parsing URIs are g_uri_split() and g_uri_split_with_user(). These split a URI into its component parts, and return the parts; the difference between the two is that g_uri_split() treats the ‘userinfo’ component of the URI as a single element, while g_uri_split_with_user() can (depending on the #GUriFlags you pass) treat it as containing a username, password, and authentication parameters. Alternatively, g_uri_split_network() can be used when you are only interested in the components that are needed to initiate a network connection to the service (scheme, host, and port).

g_uri_parse() is similar to g_uri_split(), but instead of returning individual strings, it returns a #GUri structure (and it requires that the URI be an absolute URI).

g_uri_resolve_relative() and g_uri_parse_relative() allow you to resolve a relative URI relative to a base URI. g_uri_resolve_relative() takes two strings and returns a string, and g_uri_parse_relative() takes a #GUri and a string and returns a #GUri.

All of the parsing functions take a #GUriFlags argument describing exactly how to parse the URI; see the documentation for that type for more details on the specific flags that you can pass. If you need to choose different flags based on the type of URI, you can use g_uri_peek_scheme() on the URI string to check the scheme first, and use that to decide what flags to parse it with.

For example, you might want to use %G_URI_PARAMS_WWW_FORM when parsing the params for a web URI, so compare the result of g_uri_peek_scheme() against http and https.

Building URIs

g_uri_join() and g_uri_join_with_user() can be used to construct valid URI strings from a set of component strings. They are the inverse of g_uri_split() and g_uri_split_with_user().

Similarly, g_uri_build() and g_uri_build_with_user() can be used to construct a #GUri from a set of component strings.

As with the parsing functions, the building functions take a #GUriFlags argument. In particular, it is important to keep in mind whether the URI components you are using are already %-encoded. If so, you must pass the %G_URI_FLAGS_ENCODED flag.

file:// URIs

Note that Windows and Unix both define special rules for parsing file:// URIs (involving non-UTF-8 character sets on Unix, and the interpretation of path separators on Windows). #GUri does not implement these rules. Use g_filename_from_uri() and g_filename_to_uri() if you want to properly convert between file:// URIs and local filenames.

URI Equality

Note that there is no g_uri_equal () function, because comparing URIs usefully requires scheme-specific knowledge that #GUri does not have. #GUri can help with normalization if you use the various encoded #GUriFlags as well as %G_URI_FLAGS_SCHEME_NORMALIZE however it is not comprehensive. For example, data:,foo and data:;base64,Zm9v resolve to the same thing according to the data: URI specification which GLib does not handle.

Skipped during bindings generation

  • method to_string: C function g_uri_to_string is ignored

  • parameter unescaped: guint8

  • parameter scheme: scheme: Out parameter is not supported

  • parameter scheme: scheme: Out parameter is not supported

  • parameter scheme: scheme: Out parameter is not supported

Since

2.66

Constructors

Link copied to clipboard
constructor(pointer: <Error class: unknown class><<Error class: unknown class>>)

Types

Link copied to clipboard
object Companion : RecordCompanion<Uri, <Error class: unknown class>>

Properties

Link copied to clipboard
val glibUriPointer: <Error class: unknown class><<Error class: unknown class>>

Functions

Link copied to clipboard

Gets @uri's authentication parameters, which may contain %-encoding, depending on the flags with which @uri was created. (If @uri was not created with %G_URI_FLAGS_HAS_AUTH_PARAMS then this will be null.)

Link copied to clipboard

Gets @uri's flags set upon construction.

Link copied to clipboard

Gets @uri's fragment, which may contain %-encoding, depending on the flags with which @uri was created.

Link copied to clipboard
fun getHost(): String?

Gets @uri's host. This will never have %-encoded characters, unless it is non-UTF-8 (which can only be the case if @uri was created with %G_URI_FLAGS_NON_DNS).

Link copied to clipboard

Gets @uri's password, which may contain %-encoding, depending on the flags with which @uri was created. (If @uri was not created with %G_URI_FLAGS_HAS_PASSWORD then this will be null.)

Link copied to clipboard

Gets @uri's path, which may contain %-encoding, depending on the flags with which @uri was created.

Link copied to clipboard
fun getPort(): Int

Gets @uri's port.

Link copied to clipboard

Gets @uri's query, which may contain %-encoding, depending on the flags with which @uri was created.

Link copied to clipboard

Gets @uri's scheme. Note that this will always be all-lowercase, regardless of the string or strings that @uri was created from.

Link copied to clipboard
fun getUser(): String?

Gets the ‘username’ component of @uri's userinfo, which may contain %-encoding, depending on the flags with which @uri was created. If @uri was not created with %G_URI_FLAGS_HAS_PASSWORD or %G_URI_FLAGS_HAS_AUTH_PARAMS, this is the same as g_uri_get_userinfo().

Link copied to clipboard

Gets @uri's userinfo, which may contain %-encoding, depending on the flags with which @uri was created.

Link copied to clipboard
fun parseRelative(uriRef: String, flags: UriFlags): <Error class: unknown class><Uri>

Parses @uri_ref according to @flags and, if it is a relative-absolute-uris, resolves it relative to @base_uri. If the result is not a valid absolute URI, it will be discarded, and an error returned.

Link copied to clipboard

Returns a string representing @uri, subject to the options in