remwharead/include/uri.hpp

197 lines
4.3 KiB
C++

/* This file is part of remwharead.
* Copyright © 2019, 2020 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/>.
*/
#ifndef REMWHAREAD_URI_HPP
#define REMWHAREAD_URI_HPP
#include <curl/curl.h>
#include <cstdint>
#include <string>
namespace remwharead
{
using std::string;
using std::uint16_t;
/*!
* @brief A processed HTML page.
*
* @return true if successful, when cast to bool.
*
* @since 0.7.0
*
* @headerfile uri.hpp remwharead/uri.hpp
*/
struct html_extract
{
bool successful = false;
string error;
string title;
string description;
string fulltext;
explicit operator bool() const;
};
/*!
* @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
*/
struct archive_answer
{
bool successful = false;
string error;
string uri;
explicit operator bool() const;
};
/*!
* @brief Download, archive and process an %URI.
*
* @since 0.6.0
*
* @headerfile uri.hpp remwharead/uri.hpp
*/
class URI
{
public:
/*!
* @brief Construct object and set URL.
*
* Initializes TLS and sets proxy from the environment variable
* `http_proxy`, if possible.
*
* @since 0.6.0
*/
explicit URI(string uri);
virtual ~URI() = default;
URI(const URI &other) = default;
URI &operator=(const URI &other) = default;
URI(URI &&other) = default;
URI &operator=(URI &&other) = default;
/*!
* @brief Download %URI and extract title, description and full text.
*
* @since 0.6.0
*/
[[nodiscard]] html_extract get();
/*!
* @brief Save %URI in archive and return archive-URI.
*
* @since 0.6.0
*/
[[nodiscard]] archive_answer archive() const;
protected:
string _uri;
string _encoding;
string _document;
/*!
* @brief Extract the title from an HTML page.
*
* @since 0.6.0
*/
[[nodiscard]] string extract_title() const;
/*!
* @brief Extract the description from an HTML page.
*
* @since 0.6.0
*/
[[nodiscard]] string extract_description() const;
/*!
* @brief Removes HTML tags and superflous spaces from an HTML page.
*
* @since 0.6.0
*/
[[nodiscard]] string strip_html() const;
/*!
* @brief Remove HTML tags.
*
* @param html HTML page.
* @param tag If set, only remove this tag.
*
* @since 0.6.0
*/
[[nodiscard]] static string remove_html_tags(const string &html,
const string &tag = "");
/*!
* @brief Convert HTML entities to UTF-8.
*
* @since 0.6.0
*/
[[nodiscard]] static string unescape_html(string html);
/*!
* @brief Replace newlines with spaces.
*
* @since 0.6.0
*/
[[nodiscard]] static string remove_newlines(string text);
/*!
* @brief Set proxy server.
*
* @since 0.8.5
*/
static void set_proxy();
/*!
* @brief Limits text to N characters, cuts at space.
*
* @since 0.8.5
*/
[[nodiscard]] static string cut_text(const string &text, uint16_t n_chars);
/*!
* @brief Converts string to UTF-8.
*
* @since 0.9.2
*/
[[nodiscard]] inline string to_utf8(const string &str);
/*!
* @brief Try to detect the encoding of the document.
*
* @since 0.9.2
*/
void detect_encoding();
/*!
* @brief Returns true if document is *HTML.
*
* @since 0.9.2
*/
[[nodiscard]] bool is_html() const;
};
} // namespace remwharead
#endif // REMWHAREAD_URI_HPP