// Matrix Construct // // Copyright (C) Matrix Construct Developers, Authors & Contributors // Copyright (C) 2016-2018 Jason Volk // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above // copyright notice and this permission notice is present in all copies. The // full license for this software is available in the LICENSE file. #pragma once #define HAVE_IRCD_RFC3986_H /// Universal Resource Indicator (URI) grammars & tools namespace ircd::rfc3986 { struct uri; struct parser; IRCD_EXCEPTION(ircd::error, error) IRCD_EXCEPTION(error, coding_error) IRCD_EXCEPTION(coding_error, encoding_error) IRCD_EXCEPTION(coding_error, decoding_error) constexpr size_t HOSTNAME_MAX { rfc1035::LABEL_MAX }; constexpr size_t HOSTNAME_BUFSIZE { HOSTNAME_MAX + 1 }; constexpr size_t DOMAIN_MAX { rfc1035::NAME_MAX }; constexpr size_t DOMAIN_BUFSIZE { DOMAIN_MAX + 1 }; // urlencoding suite string_view encode(const mutable_buffer &, const string_view &url); string_view encode(const mutable_buffer &, const json::members &); string_view decode(const mutable_buffer &, const string_view &url); // extractor suite uint16_t port(const string_view &remote); // get portnum from valid remote string_view host(const string_view &remote); // get host without portnum } namespace ircd { namespace url = rfc3986; } struct ircd::rfc3986::uri { string_view scheme; string_view user; string_view remote; string_view path; string_view query; string_view fragment; uri(const string_view &); uri() = default; }; struct ircd::rfc3986::parser { using it = const char *; using unused = boost::spirit::unused_type; template using rule = boost::spirit::qi::rule; static const rule<> sub_delims; static const rule<> gen_delims; static const rule<> reserved; static const rule<> unreserved; static const rule<> pct_encoded; static const rule<> pchar; static const rule<> query; static const rule<> fragment; static const rule<> segment; static const rule<> segment_nz; static const rule<> segment_nz_nc; static const rule<> path_rootless; static const rule<> path_noscheme; static const rule<> path_absolute; static const rule<> path_abempty; static const rule<> path; static const rule<> reg_name; static const rule<> userinfo; static const rule port; // note in examples portnums are optional static const rule<> ip4_octet; static const rule<> ip4_address; // 1.2.3.4 static const rule<> ip4_literal; // 1.2.3.4 static const rule<> ip4_remote; // 1.2.3.4:12345 static const rule<> ip6_char; static const rule<> ip6_h16; static const rule<> ip6_piece; static const rule<> ip6_ipiece; static const rule<> ip6_ls32; static const rule<> ip6_addr[9]; static const rule<> ip6_address; // ::1 static const rule<> ip6_literal; // [::1] static const rule<> ip6_remote; // [::1]:12345 static const rule<> ip_address; // 1.2.3.4 | ::1 static const rule<> ip_literal; // 1.2.3.4 | [::1] static const rule<> ip_remote; // 1.2.3.4:12345 | [::1]:12345 static const rule<> hostname; // foo static const rule<> domain; // foo.com static const rule<> hostport; // foo.bar.com:12345 static const rule<> host; // 1.2.3.4 | ::1 | foo.com static const rule<> host_literal; // 1.2.3.4 | [::1] | foo.com static const rule<> remote; // 1.2.3.4:12345 | [::1]:12345 | foo.com:12345 static const rule<> authority; static const rule<> scheme; static const rule<> hier_part; static const rule<> relative_part; static const rule<> relative_ref; static const rule<> absolute_uri; static const rule<> uri; static const rule<> uri_ref; // uri | relative_ref }; // Validator suite namespace ircd::rfc3986 { // Variable rule... void valid(const parser::rule<> &, const string_view &); bool valid(std::nothrow_t, const parser::rule<> &, const string_view &); // convenience: parser::hostname void valid_hostname(const string_view &); bool valid_hostname(std::nothrow_t, const string_view &); // convenience: parser::host void valid_host(const string_view &); bool valid_host(std::nothrow_t, const string_view &); // convenience: parser::domainname void valid_domain(const string_view &); bool valid_domain(std::nothrow_t, const string_view &); // convenience: parser::remote void valid_remote(const string_view &); bool valid_remote(std::nothrow_t, const string_view &); }