From 9134914f6065c0b248dd1b4317dbf9b16f5f52b5 Mon Sep 17 00:00:00 2001 From: dec05eba Date: Thu, 19 Nov 2020 12:23:06 +0100 Subject: Matrix: fix duplicate tag items, cache events we dont have permission to view as well --- include/DownloadUtils.hpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'include/DownloadUtils.hpp') diff --git a/include/DownloadUtils.hpp b/include/DownloadUtils.hpp index e1e71df..3eff519 100644 --- a/include/DownloadUtils.hpp +++ b/include/DownloadUtils.hpp @@ -2,6 +2,7 @@ #include #include +#include #include namespace QuickMedia { @@ -16,8 +17,11 @@ namespace QuickMedia { std::string value; }; + // Return true the return DownloadResult::OK for the download, which also saves the result in cache if |download_to_string_cache| is used + using DownloadErrorHandler = std::function; + DownloadResult download_to_string(const std::string &url, std::string &result, const std::vector &additional_args, bool use_tor, bool use_browser_useragent = false, bool fail_on_error = true); - DownloadResult download_to_string_cache(const std::string &url, std::string &result, const std::vector &additional_args, bool use_tor, bool use_browser_useragent = false); + DownloadResult download_to_string_cache(const std::string &url, std::string &result, const std::vector &additional_args, bool use_tor, bool use_browser_useragent = false, DownloadErrorHandler error_handler = nullptr); DownloadResult download_to_file(const std::string &url, const std::string &destination_filepath, const std::vector &additional_args, bool use_tor, bool use_browser_useragent = false); DownloadResult download_to_json(const std::string &url, rapidjson::Document &result, const std::vector &additional_args, bool use_tor, bool use_browser_useragent = false, bool fail_on_error = true); } \ No newline at end of file -- cgit v1.2.3