2018-12-31 20:04:05 +01:00
|
|
|
//
|
2020-01-01 02:23:48 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
#include "td/utils/Slice.h"
|
|
|
|
#include "td/utils/Status.h"
|
|
|
|
#include "td/utils/StringBuilder.h"
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class HttpUrl {
|
|
|
|
public:
|
2020-06-15 03:23:47 +02:00
|
|
|
enum class Protocol { Http, Https } protocol_ = Protocol::Http;
|
2018-12-31 20:04:05 +01:00
|
|
|
string userinfo_;
|
|
|
|
string host_;
|
2018-10-26 16:11:20 +02:00
|
|
|
bool is_ipv6_ = false;
|
|
|
|
int specified_port_ = 0;
|
|
|
|
int port_ = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
string query_;
|
|
|
|
|
|
|
|
string get_url() const;
|
2018-10-26 16:27:37 +02:00
|
|
|
|
|
|
|
HttpUrl(Protocol protocol, string userinfo, string host, bool is_ipv6, int specified_port, int port, string query)
|
|
|
|
: protocol_(protocol)
|
|
|
|
, userinfo_(std::move(userinfo))
|
|
|
|
, host_(std::move(host))
|
|
|
|
, is_ipv6_(is_ipv6)
|
|
|
|
, specified_port_(specified_port)
|
|
|
|
, port_(port)
|
|
|
|
, query_(std::move(query)) {
|
|
|
|
}
|
2018-12-31 20:04:05 +01:00
|
|
|
};
|
|
|
|
|
2019-08-05 11:42:42 +02:00
|
|
|
Result<HttpUrl> parse_url(Slice url,
|
2020-06-15 03:23:47 +02:00
|
|
|
HttpUrl::Protocol default_protocol = HttpUrl::Protocol::Http) TD_WARN_UNUSED_RESULT;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
StringBuilder &operator<<(StringBuilder &sb, const HttpUrl &url);
|
|
|
|
|
2018-02-19 23:54:50 +01:00
|
|
|
string get_url_query_file_name(const string &query);
|
|
|
|
|
2019-08-05 11:56:28 +02:00
|
|
|
string get_url_file_name(Slice url);
|
2018-02-20 00:29:19 +01:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
} // namespace td
|