Fix archiving by extracting the Content-Location header.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
tastytea 2019-08-06 19:56:57 +02:00
parent f8a5f881f3
commit c218c23f97
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
2 changed files with 17 additions and 9 deletions

View File

@ -85,7 +85,8 @@ namespace remwharead
string _uri;
//! Make a HTTP(S) request.
const string make_request(const string &uri) const;
const string make_request(const string &uri,
bool archive = false) const;
//! Extract the title from an HTML page.
const string extract_title(const string &html);

View File

@ -130,9 +130,11 @@ namespace remwharead
return { false, "Unknown error.", "", "", "" };
}
const string URI::make_request(const string &uri) const
const string URI::make_request(const string &uri, bool archive) const
{
Poco::URI poco_uri(uri);
string method =
archive ? HTTPRequest::HTTP_HEAD : HTTPRequest::HTTP_GET;
string path = poco_uri.getPathAndQuery();
if (path.empty())
{
@ -151,8 +153,7 @@ namespace remwharead
poco_uri.getPort());
}
HTTPRequest request(HTTPRequest::HTTP_GET, path,
HTTPMessage::HTTP_1_1);
HTTPRequest request(method, path, HTTPMessage::HTTP_1_1);
request.set("User-Agent", string("remwharead/") + global::version);
HTTPResponse response;
@ -180,7 +181,14 @@ namespace remwharead
case HTTPResponse::HTTP_OK:
{
string answer;
StreamCopier::copyToString(rs, answer);
if (archive)
{
answer = response.get("Content-Location");
}
else
{
StreamCopier::copyToString(rs, answer);
}
return answer;
}
default:
@ -586,12 +594,11 @@ namespace remwharead
try
{
const string answer = make_request("https://web.archive.org/save/"
+ _uri);
+ _uri, true);
smatch match;
if (regex_search(answer, match, regex("Content-Location: (.+)\r")))
if (!answer.empty())
{
return { true, "", "https://web.archive.org" + match[1].str() };
return { true, "", "https://web.archive.org" + answer };
}
}
catch (const Poco::Exception &e)