2019-05-15 07:04:12 +02:00
|
|
|
/* This file is part of remwharead.
|
|
|
|
* Copyright © 2019 tastytea <tastytea@tastytea.de>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, version 3.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-05-16 08:36:35 +02:00
|
|
|
#ifndef REMWHAREAD_URI_HPP
|
|
|
|
#define REMWHAREAD_URI_HPP
|
2019-05-15 07:04:12 +02:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2019-07-27 09:59:43 +02:00
|
|
|
namespace remwharead
|
2019-05-15 07:04:12 +02:00
|
|
|
{
|
2019-07-27 09:59:43 +02:00
|
|
|
using std::string;
|
|
|
|
|
2019-08-05 23:19:44 +02:00
|
|
|
/*!
|
|
|
|
* @brief A processed HTML page.
|
|
|
|
*
|
2019-08-06 12:13:27 +02:00
|
|
|
* @return true if successful, when cast to bool.
|
|
|
|
*
|
|
|
|
* @since 0.7.0
|
2019-08-05 23:19:44 +02:00
|
|
|
*
|
|
|
|
* @headerfile uri.hpp remwharead/uri.hpp
|
|
|
|
*/
|
2019-07-27 09:59:43 +02:00
|
|
|
typedef struct html_extract
|
|
|
|
{
|
2019-08-06 12:13:27 +02:00
|
|
|
bool successful = false;
|
|
|
|
string error;
|
2019-07-27 09:59:43 +02:00
|
|
|
string title;
|
|
|
|
string description;
|
|
|
|
string fulltext;
|
2019-08-06 12:13:27 +02:00
|
|
|
|
|
|
|
operator bool();
|
2019-07-27 09:59:43 +02:00
|
|
|
} html_extract;
|
|
|
|
|
2019-08-06 12:40:52 +02:00
|
|
|
/*!
|
|
|
|
* @brief The result of the call to the archive service.
|
|
|
|
*
|
|
|
|
* @return true if successful, when cast to bool.
|
|
|
|
*
|
|
|
|
* @since 0.7.0
|
|
|
|
*
|
|
|
|
* @headerfile uri.hpp remwharead/uri.hpp
|
|
|
|
*/
|
|
|
|
typedef struct archive_answer
|
|
|
|
{
|
|
|
|
bool successful = false;
|
|
|
|
string error;
|
|
|
|
string uri;
|
|
|
|
|
|
|
|
operator bool();
|
|
|
|
} archive_answer;
|
|
|
|
|
2019-08-05 23:19:44 +02:00
|
|
|
/*!
|
|
|
|
* @brief Download, archive and process an %URI.
|
|
|
|
*
|
|
|
|
* @since 0.6.0
|
|
|
|
*
|
|
|
|
* @headerfile uri.hpp remwharead/uri.hpp
|
|
|
|
*/
|
2019-07-27 09:59:43 +02:00
|
|
|
class URI
|
|
|
|
{
|
|
|
|
public:
|
2019-07-28 02:13:23 +02:00
|
|
|
//! Construct object and set URL.
|
2019-07-27 09:59:43 +02:00
|
|
|
explicit URI(const string &uri);
|
2019-08-04 18:46:53 +02:00
|
|
|
~URI();
|
2019-07-27 09:59:43 +02:00
|
|
|
|
2019-07-28 02:18:52 +02:00
|
|
|
//! Download %URI and extract title, description and full text.
|
2019-07-27 09:59:43 +02:00
|
|
|
const html_extract get();
|
2019-07-28 02:13:23 +02:00
|
|
|
|
2019-07-28 02:18:52 +02:00
|
|
|
//! Save %URI in archive and return archive-URI.
|
2019-08-06 12:40:52 +02:00
|
|
|
const archive_answer archive();
|
2019-07-27 09:59:43 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
string _uri;
|
|
|
|
|
2019-08-05 17:00:34 +02:00
|
|
|
//! Make a HTTP(S) request.
|
2019-08-06 19:56:57 +02:00
|
|
|
const string make_request(const string &uri,
|
|
|
|
bool archive = false) const;
|
2019-07-28 02:13:23 +02:00
|
|
|
|
|
|
|
//! Extract the title from an HTML page.
|
2019-07-27 09:59:43 +02:00
|
|
|
const string extract_title(const string &html);
|
2019-07-28 02:13:23 +02:00
|
|
|
|
|
|
|
//! Extract the description from an HTML page.
|
2019-07-27 09:59:43 +02:00
|
|
|
const string extract_description(const string &html);
|
2019-07-28 02:13:23 +02:00
|
|
|
|
|
|
|
//! Removes HTML tags and superflous spaces from an HTML page.
|
2019-07-27 09:59:43 +02:00
|
|
|
const string strip_html(const string &html);
|
2019-07-28 02:13:23 +02:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* @brief Remove HTML tags.
|
|
|
|
*
|
|
|
|
* @param html HTML page.
|
|
|
|
* @param tag If set, only remove this tag.
|
|
|
|
*/
|
2019-07-27 09:59:43 +02:00
|
|
|
const string remove_html_tags(const string &html,
|
|
|
|
const string &tag = "");
|
2019-07-28 02:13:23 +02:00
|
|
|
|
|
|
|
//! Convert HTML entities to UTF-8.
|
2019-07-27 09:59:43 +02:00
|
|
|
const string unescape_html(const string &html);
|
2019-07-28 02:13:23 +02:00
|
|
|
|
2019-07-27 09:59:43 +02:00
|
|
|
//! Replace newlines with spaces.
|
|
|
|
const string remove_newlines(string text);
|
|
|
|
};
|
|
|
|
}
|
2019-05-15 07:04:12 +02:00
|
|
|
|
2019-05-16 08:36:35 +02:00
|
|
|
#endif // REMWHAREAD_URI_HPP
|