mirror of https://github.com/YGGverse/Yoda.git
yggverse
3 months ago
7 changed files with 82 additions and 87 deletions
@ -1,41 +0,0 @@ |
|||||||
#include "url.hpp" |
|
||||||
|
|
||||||
using namespace lib; |
|
||||||
using namespace std; |
|
||||||
|
|
||||||
Url::Url( |
|
||||||
string subject |
|
||||||
) { |
|
||||||
smatch results; |
|
||||||
|
|
||||||
static const regex pattern( // @TODO user:password@#fragment?
|
|
||||||
R"regex(^((\w+)?:\/\/)?([^:\/]+)?(:(\d+)?)?([^\?$]+)?(\?(.*)?)?)regex" |
|
||||||
); |
|
||||||
|
|
||||||
regex_search( |
|
||||||
subject, |
|
||||||
results, |
|
||||||
pattern |
|
||||||
); |
|
||||||
|
|
||||||
scheme = results[2]; |
|
||||||
host = results[3]; |
|
||||||
port = results[5]; |
|
||||||
path = results[6]; |
|
||||||
query = results[8]; |
|
||||||
} |
|
||||||
|
|
||||||
string Url::to_string() |
|
||||||
{ |
|
||||||
string result; |
|
||||||
|
|
||||||
if (!scheme.empty()) result += scheme + "://"; |
|
||||||
if (!host.empty()) result += host; |
|
||||||
if (!port.empty()) result += ":" + port; |
|
||||||
if (!path.empty()) result += "/" + path; |
|
||||||
if (!query.empty()) result += "?" + query; |
|
||||||
|
|
||||||
return result; |
|
||||||
} |
|
||||||
|
|
||||||
Url::~Url() = default; |
|
Loading…
Reference in new issue