1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
|
//
// Copyright (c) 2022 alandefreitas (alandefreitas@gmail.com)
//
// Distributed under the Boost Software License, Version 1.0.
// https://www.boost.org/LICENSE_1_0.txt
//
//[example_mailto
/*
This example parses a mailto URL into a new
view type and prints its components to
standard output.
*/
#include <boost/url/grammar/ci_string.hpp>
#include <boost/url/grammar/parse.hpp>
#include <boost/url/optional.hpp>
#include <boost/url/rfc/absolute_uri_rule.hpp>
#include <boost/url/url.hpp>
#include <boost/url/url_view.hpp>
#include <algorithm>
#include <iostream>
#include "rfc.hpp"
namespace urls = boost::urls;
// fwd-declaration for mailto_view
struct mailto_rule_t;
/// A new url type for mailto URLs
/**
This class represents a URI with the mailto
scheme.
Unlike a urls::url_view, which only represents
the general syntax of urls, a mailto_view
represents a reference to fields that are
relevant to mailto URLs, while ignoring
elements of the general syntax
that are not relevant to the scheme.
This allows us to use the general syntax
parsers to create a representation that
is more appropriate for the specified scheme
syntax.
@par Specification
@li <a href="https://www.rfc-editor.org/rfc/rfc6068"
>The 'mailto' URI Scheme</a>
@li <a href="https://www.rfc-editor.org/errata/rfc6068"
>RFC Errata Report</a>
@par References
@li <a href="https://en.wikipedia.org/wiki/Mailto"
>mailto (Wikipedia)</a>
*/
class mailto_view
{
urls::url_view u_;
public:
/// Return the specified email address in the URL
/**
A mailto URL might contain multiple email
addresses separated by commas.
The first addresses are represented in
the path. Other addresses are in
any query parameter whose key is "to".
@param i Address index
@return The specified address
*/
std::string
address(std::size_t i = 0) const;
/// @copydoc address()
urls::pct_string_view
encoded_address(std::size_t i = 0) const noexcept;
/// Return number of email addresses in the URL
std::size_t
size() const noexcept;
/// Return the specified cc email address in the URL
/**
A mailto URL might contain multiple cc
email addresses separated by commas.
Addresses can be represented in any query
parameter whose key is "cc".
@param i Address index
@return The specified cc address
*/
std::string
cc(std::size_t i) const;
/// @copydoc cc()
urls::pct_string_view
encoded_cc(std::size_t i) const noexcept;
/// Return number of "cc" email addresses in the URL
std::size_t
size_cc() const noexcept;
/// Return email message subject
std::string
subject() const;
/// @copydoc subject()
urls::pct_string_view
encoded_subject() const noexcept;
/// Return email message body
std::string
body() const;
/// @copydoc body()
urls::pct_string_view
encoded_body() const noexcept;
friend
std::ostream&
operator<<(std::ostream& os, mailto_view m)
{
return os << m.u_;
}
private:
// Count number of addresses in a string
static
std::size_t
addr_in_str(boost::core::string_view s);
// Get the ith address from a string
static
boost::optional<urls::pct_string_view>
get_nth_address(boost::core::string_view to, std::size_t &i) noexcept;
// Get param value or empty otherwise
urls::pct_string_view
param_or_empty(urls::pct_string_view k) const noexcept;
friend mailto_rule_t;
};
/** Rule to match a mailto URL
*/
struct mailto_rule_t
{
/// Value type returned by the rule
using value_type = mailto_view;
/// Parse a sequence of characters into a mailto_view
boost::system::result< value_type >
parse( char const*& it, char const* end ) const noexcept;
};
constexpr mailto_rule_t mailto_rule{};
/** Return a parsed mailto URL from a string, or error.
This is a more convenient user-facing function
to parse mailto URLs.
*/
boost::system::result< mailto_view >
parse_mailto( boost::core::string_view s ) noexcept
{
return urls::grammar::parse(s, mailto_rule);
}
int main(int argc, char** argv)
{
// This example shows how to use custom parsing
// to process alternate URI schemes, in this
// case "mailto"
if (argc != 2) {
std::cout << argv[0] << "\n";
std::cout << "mailto <URL>\n"
"examples:\n"
// Single e-mail address
"mailto mailto:someone@example.com\n"
// Two e-mail addresses
"mailto mailto:someone@example.com,someoneelse@example.com\n"
// E-mail headers
"mailto mailto:someone@example.com?subject=Our%20meeting&cc=someone_else@example.com&body=Hi%21\n"
// E-mail headers only
"mailto mailto:?to=&subject=mailto%20example&body=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FMailto\n"
// All fields
"mailto mailto:someone@example.com,%73omeoneelse@me.com?to=thirdperson@example.com&subject=Our%20meeting&cc=someone_else@example.com,onemore@ex%61mple.com&body=Hi%21\n";
return EXIT_FAILURE;
}
boost::system::result<mailto_view> r =
parse_mailto(argv[1]);
if (!r)
return EXIT_FAILURE;
mailto_view m = *r;
std::cout << "link: " << m << "\n";
for (std::size_t i = 0; i < m.size(); ++i)
std::cout <<
"to[" << i << "]: " <<
m.address(i) << "\n";
for (std::size_t i = 0; i < m.size_cc(); ++i)
std::cout <<
"cc[" << i << "]: " <<
m.address(i) << "\n";
std::cout << "subject: " << m.subject() << "\n";
std::cout << "body: " << m.body() << "\n";
return EXIT_SUCCESS;
}
std::string
mailto_view::address(std::size_t i) const
{
return encoded_address(i).decode();
}
urls::pct_string_view
mailto_view::encoded_address(std::size_t i) const noexcept
{
// Look for ith email address in the path string
auto s = get_nth_address(u_.encoded_path(), i);
if (s)
return *s;
// Look for ith email address in one of the "to" headers
auto ps = u_.encoded_params();
auto it = ps.find("to", urls::ignore_case);
while (it != ps.end())
{
s = get_nth_address((*it++).value, i);
if (s)
return *s;
it = ps.find(it, "to", urls::ignore_case);
}
return {};
}
std::size_t
mailto_view::size() const noexcept
{
// Count addresses in path
std::size_t n = addr_in_str(u_.encoded_path());
// Count addresses in "to" headers
auto ps = u_.encoded_params();
auto it = ps.find("to", urls::ignore_case);
while (it != ps.end())
{
n += addr_in_str((*it++).value);
it = ps.find(it, "to", urls::ignore_case);
}
return n;
}
std::string
mailto_view::cc(std::size_t i) const
{
return encoded_cc(i).decode();
}
urls::pct_string_view
mailto_view::encoded_cc(std::size_t i) const noexcept
{
// Look for ith email address in one of the "to" headers
auto ps = u_.encoded_params();
auto it = ps.find("cc", urls::ignore_case);
while (it != ps.end())
{
auto s = get_nth_address((*it++).value, i);
if (s)
return *s;
it = ps.find(it, "cc", urls::ignore_case);
}
return {};
}
std::size_t
mailto_view::size_cc() const noexcept
{
// Count addresses in "to" headers
std::size_t n = 0;
auto ps = u_.encoded_params();
auto it = ps.find("cc", urls::ignore_case);
while (it != ps.end())
{
n += addr_in_str((*it++).value);
it = ps.find(it, "cc", urls::ignore_case);
}
return n;
}
std::string
mailto_view::subject() const
{
return encoded_subject().decode();
}
urls::pct_string_view
mailto_view::encoded_subject() const noexcept
{
return param_or_empty("subject");
}
std::string
mailto_view::mailto_view::body() const
{
return encoded_body().decode();
}
urls::pct_string_view
mailto_view::encoded_body() const noexcept
{
return param_or_empty("body");
}
std::size_t
mailto_view::addr_in_str(boost::core::string_view s)
{
std::size_t n = 0;
bool empty = true;
for (char c : s)
{
if (c == ',')
{
n += !empty;
empty = true;
}
else
{
empty = false;
}
}
n += !empty;
return n;
}
boost::optional<urls::pct_string_view>
mailto_view::get_nth_address(boost::core::string_view to, std::size_t &i) noexcept
{
auto p = to.find(',');
while (p != boost::core::string_view::npos)
{
if (i == 0)
return urls::pct_string_view(
to.substr(0, p));
--i;
to.remove_prefix(p + 1);
p = to.find(',');
}
if (!to.empty())
{
if (i == 0)
return urls::pct_string_view(
to.substr(0, p));
--i;
}
return boost::none;
}
urls::pct_string_view
mailto_view::param_or_empty(urls::pct_string_view k) const noexcept
{
auto ps = u_.encoded_params();
auto it = ps.find(k, urls::ignore_case);
if (it != ps.end())
return (*it).value;
return {};
}
auto
mailto_rule_t::parse( char const*& it, char const* end ) const noexcept
-> boost::system::result< value_type >
{
// Syntax-based rules
boost::system::result<urls::url_view> r =
urls::grammar::parse(it, end, urls::absolute_uri_rule);
if (!r)
return r.error();
// Scheme-based rules
mailto_view m;
m.u_ = *r;
auto valid_header = [](urls::param_pct_view p) {
return
urls::grammar::parse(p.key, hfname_rule) &&
urls::grammar::parse(p.value, hfvalue_rule) &&
p.has_value &&
(!urls::grammar::ci_is_equal(p.key, "to") ||
urls::grammar::parse(p.value, addr_spec_rule));
};
auto ps = m.u_.encoded_params();
if (m.u_.scheme() == "mailto" &&
!m.u_.has_authority() &&
urls::grammar::parse(m.u_.encoded_path(), to_rule) &&
std::all_of(ps.begin(), ps.end(), valid_header))
return m;
return urls::grammar::error::invalid;
}
//]
|