Files
@ f2a6ba12fc29
Branch filter:
Location: libtransport.git/3rdparty/cpprestsdk/src/uri/uri.cpp
f2a6ba12fc29
10.9 KiB
text/x-c++hdr
Slack frontend stub
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 | /***
* ==++==
*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* ==--==
* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+
*
* Protocol independent support for URIs.
*
* For the latest on this and related APIs, please see http://casablanca.codeplex.com.
*
* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
****/
#include "stdafx.h"
using namespace utility::conversions;
namespace web { namespace details
{
utility::string_t uri_components::join()
{
// canonicalize components first
// convert scheme to lowercase
std::transform(m_scheme.begin(), m_scheme.end(), m_scheme.begin(), [this](utility::char_t c) {
return (utility::char_t)tolower(c);
});
// convert host to lowercase
std::transform(m_host.begin(), m_host.end(), m_host.begin(), [this](utility::char_t c) {
return (utility::char_t)tolower(c);
});
// canonicalize the path to have a leading slash if it's a full uri
if (!m_host.empty() && m_path.empty())
{
m_path = _XPLATSTR("/");
}
else if (!m_host.empty() && m_path[0] != _XPLATSTR('/'))
{
m_path.insert(m_path.begin(), 1, _XPLATSTR('/'));
}
utility::ostringstream_t os;
os.imbue(std::locale::classic());
if (!m_scheme.empty())
{
os << m_scheme << _XPLATSTR(':');
}
if (!m_host.empty())
{
os << _XPLATSTR("//");
if (!m_user_info.empty())
{
os << m_user_info << _XPLATSTR('@');
}
os << m_host;
if (m_port > 0)
{
os << _XPLATSTR(':') << m_port;
}
}
if (!m_path.empty())
{
// only add the leading slash when the host is present
if (!m_host.empty() && m_path.front() != _XPLATSTR('/'))
{
os << _XPLATSTR('/');
}
os << m_path;
}
if (!m_query.empty())
{
os << _XPLATSTR('?') << m_query;
}
if (!m_fragment.empty())
{
os << _XPLATSTR('#') << m_fragment;
}
return os.str();
}
}
using namespace details;
uri::uri(const utility::string_t &uri_string)
{
if (!details::uri_parser::parse(uri_string, m_components))
{
throw uri_exception("provided uri is invalid: " + utility::conversions::to_utf8string(uri_string));
}
m_uri = m_components.join();
}
uri::uri(const utility::char_t *uri_string): m_uri(uri_string)
{
if (!details::uri_parser::parse(uri_string, m_components))
{
throw uri_exception("provided uri is invalid: " + utility::conversions::to_utf8string(uri_string));
}
m_uri = m_components.join();
}
utility::string_t uri::encode_impl(const utility::string_t &raw, const std::function<bool(int)>& should_encode)
{
const utility::char_t * const hex = _XPLATSTR("0123456789ABCDEF");
utility::string_t encoded;
std::string utf8raw = to_utf8string(raw);
for (auto iter = utf8raw.begin(); iter != utf8raw.end(); ++iter)
{
// for utf8 encoded string, char ASCII can be greater than 127.
int ch = static_cast<unsigned char>(*iter);
// ch should be same under both utf8 and utf16.
if(should_encode(ch))
{
encoded.push_back(_XPLATSTR('%'));
encoded.push_back(hex[(ch >> 4) & 0xF]);
encoded.push_back(hex[ch & 0xF]);
}
else
{
// ASCII don't need to be encoded, which should be same on both utf8 and utf16.
encoded.push_back((utility::char_t)ch);
}
}
return encoded;
}
/// </summary>
/// Encodes a string by converting all characters except for RFC 3986 unreserved characters to their
/// hexadecimal representation.
/// </summary>
utility::string_t uri::encode_data_string(const utility::string_t &raw)
{
return uri::encode_impl(raw, [](int ch) -> bool
{
return !uri_parser::is_unreserved(ch);
});
}
utility::string_t uri::encode_uri(const utility::string_t &raw, uri::components::component component)
{
// Note: we also encode the '+' character because some non-standard implementations
// encode the space character as a '+' instead of %20. To better interoperate we encode
// '+' to avoid any confusion and be mistaken as a space.
switch(component)
{
case components::user_info:
return uri::encode_impl(raw, [](int ch) -> bool
{
return !uri_parser::is_user_info_character(ch)
|| ch == '%' || ch == '+';
});
case components::host:
return uri::encode_impl(raw, [](int ch) -> bool
{
// No encoding of ASCII characters in host name (RFC 3986 3.2.2)
return ch > 127;
});
case components::path:
return uri::encode_impl(raw, [](int ch) -> bool
{
return !uri_parser::is_path_character(ch)
|| ch == '%' || ch == '+';
});
case components::query:
return uri::encode_impl(raw, [](int ch) -> bool
{
return !uri_parser::is_query_character(ch)
|| ch == '%' || ch == '+';
});
case components::fragment:
return uri::encode_impl(raw, [](int ch) -> bool
{
return !uri_parser::is_fragment_character(ch)
|| ch == '%' || ch == '+';
});
case components::full_uri:
default:
return uri::encode_impl(raw, [](int ch) -> bool
{
return !uri_parser::is_unreserved(ch) && !uri_parser::is_reserved(ch);
});
};
}
/// <summary>
/// Helper function to convert a hex character digit to a decimal character value.
/// Throws an exception if not a valid hex digit.
/// </summary>
static int hex_char_digit_to_decimal_char(int hex)
{
int decimal;
if(hex >= '0' && hex <= '9')
{
decimal = hex - '0';
}
else if(hex >= 'A' && hex <= 'F')
{
decimal = 10 + (hex - 'A');
}
else if(hex >= 'a' && hex <= 'f')
{
decimal = 10 + (hex - 'a');
}
else
{
throw uri_exception("Invalid hexidecimal digit");
}
return decimal;
}
utility::string_t uri::decode(const utility::string_t &encoded)
{
std::string utf8raw;
for(auto iter = encoded.begin(); iter != encoded.end(); ++iter)
{
if(*iter == _XPLATSTR('%'))
{
if(++iter == encoded.end())
{
throw uri_exception("Invalid URI string, two hexidecimal digits must follow '%'");
}
int decimal_value = hex_char_digit_to_decimal_char(static_cast<int>(*iter)) << 4;
if(++iter == encoded.end())
{
throw uri_exception("Invalid URI string, two hexidecimal digits must follow '%'");
}
decimal_value += hex_char_digit_to_decimal_char(static_cast<int>(*iter));
utf8raw.push_back(static_cast<char>(decimal_value));
}
else
{
// encoded string has to be ASCII.
utf8raw.push_back(reinterpret_cast<const char &>(*iter));
}
}
return to_string_t(utf8raw);
}
std::vector<utility::string_t> uri::split_path(const utility::string_t &path)
{
std::vector<utility::string_t> results;
utility::istringstream_t iss(path);
iss.imbue(std::locale::classic());
utility::string_t s;
while (std::getline(iss, s, _XPLATSTR('/')))
{
if (!s.empty())
{
results.push_back(s);
}
}
return results;
}
std::map<utility::string_t, utility::string_t> uri::split_query(const utility::string_t &query)
{
std::map<utility::string_t, utility::string_t> results;
// Split into key value pairs separated by '&'.
size_t prev_amp_index = 0;
while(prev_amp_index != utility::string_t::npos)
{
size_t amp_index = query.find_first_of(_XPLATSTR('&'), prev_amp_index);
if (amp_index == utility::string_t::npos)
amp_index = query.find_first_of(_XPLATSTR(';'), prev_amp_index);
utility::string_t key_value_pair = query.substr(
prev_amp_index,
amp_index == utility::string_t::npos ? query.size() - prev_amp_index : amp_index - prev_amp_index);
prev_amp_index = amp_index == utility::string_t::npos ? utility::string_t::npos : amp_index + 1;
size_t equals_index = key_value_pair.find_first_of(_XPLATSTR('='));
if(equals_index == utility::string_t::npos)
{
continue;
}
else if (equals_index == 0)
{
utility::string_t value(key_value_pair.begin() + equals_index + 1, key_value_pair.end());
results[_XPLATSTR("")] = value;
}
else
{
utility::string_t key(key_value_pair.begin(), key_value_pair.begin() + equals_index);
utility::string_t value(key_value_pair.begin() + equals_index + 1, key_value_pair.end());
results[key] = value;
}
}
return results;
}
bool uri::validate(const utility::string_t &uri_string)
{
return uri_parser::validate(uri_string);
}
uri uri::authority() const
{
return uri_builder().set_scheme(this->scheme()).set_host(this->host()).set_port(this->port()).set_user_info(this->user_info()).to_uri();
}
uri uri::resource() const
{
return uri_builder().set_path(this->path()).set_query(this->query()).set_fragment(this->fragment()).to_uri();
}
bool uri::operator == (const uri &other) const
{
// Each individual URI component must be decoded before performing comparison.
// TFS # 375865
if (this->is_empty() && other.is_empty())
{
return true;
}
else if (this->is_empty() || other.is_empty())
{
return false;
}
else if (this->scheme() != other.scheme())
{
// scheme is canonicalized to lowercase
return false;
}
else if(uri::decode(this->user_info()) != uri::decode(other.user_info()))
{
return false;
}
else if (uri::decode(this->host()) != uri::decode(other.host()))
{
// host is canonicalized to lowercase
return false;
}
else if (this->port() != other.port())
{
return false;
}
else if (uri::decode(this->path()) != uri::decode(other.path()))
{
return false;
}
else if (uri::decode(this->query()) != uri::decode(other.query()))
{
return false;
}
else if (uri::decode(this->fragment()) != uri::decode(other.fragment()))
{
return false;
}
return true;
}
}
|