X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Finternet.cc;h=a9c30611df49d89f065cd04ee525f1b2bdf3ab72;hb=233f8008287c09ed0da6cddba56fb1bd83e21d0f;hp=67f6ed2bc8a71dc42f7e9975fd6fe0102963f0fc;hpb=a34e100c7e8f7bce98cf074ecb0507fe6175df61;p=dcpomatic.git diff --git a/src/lib/internet.cc b/src/lib/internet.cc index 67f6ed2bc..a9c30611d 100644 --- a/src/lib/internet.cc +++ b/src/lib/internet.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2014-2015 Carl Hetherington + Copyright (C) 2014-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,13 +18,15 @@ */ -#include "scoped_temporary.h" + #include "compose.hpp" -#include "exceptions.h" #include "cross.h" +#include "exceptions.h" +#include "scoped_temporary.h" +#include "util.h" +#include #include #include -#include #include #include #include @@ -32,36 +34,79 @@ #include "i18n.h" -using std::string; + +using std::function; using std::list; -using boost::optional; -using boost::function; +using std::string; using boost::algorithm::trim; +using boost::optional; + static size_t -get_from_zip_url_data (void* buffer, size_t size, size_t nmemb, void* stream) +ls_url_data (void* buffer, size_t size, size_t nmemb, void* output) { - FILE* f = reinterpret_cast (stream); + string* s = reinterpret_cast(output); + char* c = reinterpret_cast(buffer); + for (size_t i = 0; i < (size * nmemb); ++i) { + *s += c[i]; + } + return nmemb; +} + + +list +ls_url (string url) +{ + auto curl = curl_easy_init (); + curl_easy_setopt (curl, CURLOPT_URL, url.c_str()); + curl_easy_setopt (curl, CURLOPT_DIRLISTONLY, 1); + + string ls; + curl_easy_setopt (curl, CURLOPT_WRITEFUNCTION, ls_url_data); + curl_easy_setopt (curl, CURLOPT_WRITEDATA, &ls); + auto const cr = curl_easy_perform (curl); + + if (cr != CURLE_OK) { + return {}; + } + + list result; + result.push_back(""); + for (size_t i = 0; i < ls.size(); ++i) { + if (ls[i] == '\n') { + result.push_back(""); + } else { + result.back() += ls[i]; + } + } + + result.pop_back (); + return result; +} + + +static size_t +get_from_url_data (void* buffer, size_t size, size_t nmemb, void* stream) +{ + auto f = reinterpret_cast (stream); return fwrite (buffer, size, nmemb, f); } -/** @param url URL of ZIP file. - * @param file Filename within ZIP file. - * @param load Function passed a (temporary) filesystem path of the unpacked file. - */ + optional -get_from_zip_url (string url, string file, bool pasv, function load) +get_from_url (string url, bool pasv, bool skip_pasv_ip, ScopedTemporary& temp) { - /* Download the ZIP file to temp_zip */ - CURL* curl = curl_easy_init (); - curl_easy_setopt (curl, CURLOPT_URL, url.c_str ()); + auto curl = curl_easy_init (); + curl_easy_setopt (curl, CURLOPT_URL, url.c_str()); - ScopedTemporary temp_zip; - FILE* f = temp_zip.open ("wb"); - curl_easy_setopt (curl, CURLOPT_WRITEFUNCTION, get_from_zip_url_data); - curl_easy_setopt (curl, CURLOPT_WRITEDATA, f); + auto& f = temp.open ("wb"); + curl_easy_setopt (curl, CURLOPT_WRITEFUNCTION, get_from_url_data); + curl_easy_setopt (curl, CURLOPT_WRITEDATA, f.get()); curl_easy_setopt (curl, CURLOPT_FTP_USE_EPSV, 0); curl_easy_setopt (curl, CURLOPT_FTP_USE_EPRT, 0); + if (skip_pasv_ip) { + curl_easy_setopt (curl, CURLOPT_FTP_SKIP_PASV_IP, 1); + } if (!pasv) { curl_easy_setopt (curl, CURLOPT_FTPPORT, "-"); } @@ -69,12 +114,42 @@ get_from_zip_url (string url, string file, bool pasv, function +get_from_url (string url, bool pasv, bool skip_pasv_ip, function (boost::filesystem::path, string)> load) +{ + ScopedTemporary temp; + auto e = get_from_url (url, pasv, skip_pasv_ip, temp); + if (e) { + return e; + } + return load (temp.path(), url); +} + + +/** @param url URL of ZIP file. + * @param file Filename within ZIP file. + * @param load Function passed a (temporary) filesystem path of the unpacked file. + */ +optional +get_from_zip_url (string url, string file, bool pasv, bool skip_pasv_ip, function (boost::filesystem::path, string)> load) +{ + /* Download the ZIP file to temp_zip */ + ScopedTemporary temp_zip; + auto e = get_from_url (url, pasv, skip_pasv_ip, temp_zip); + if (e) { + return e; } /* Open the ZIP file and read `file' out of it */ @@ -85,19 +160,21 @@ get_from_zip_url (string url, string file, bool pasv, function (_("Could not open downloaded ZIP file")); + return string(_("Could not open downloaded ZIP file")); } - zip_source_t* zip_source = zip_source_filep_create (zip_file, 0, -1, 0); + auto zip_source = zip_source_filep_create (zip_file.take(), 0, -1, 0); if (!zip_source) { - return optional (_("Could not open downloaded ZIP file")); + return string(_("Could not open downloaded ZIP file")); } - zip_t* zip = zip_open_from_source (zip_source, 0, 0); + zip_error_t error; + zip_error_init (&error); + auto zip = zip_open_from_source (zip_source, ZIP_RDONLY, &error); if (!zip) { - return optional (_("Could not open downloaded ZIP file")); + return String::compose (_("Could not open downloaded ZIP file (%1:%2: %3)"), error.zip_err, error.sys_err, error.str ? error.str : ""); } #else @@ -106,88 +183,22 @@ get_from_zip_url (string url, string file, bool pasv, function (_("Unexpected ZIP file contents")); + return string(_("Unexpected ZIP file contents")); } ScopedTemporary temp_cert; - f = temp_cert.open ("wb"); + auto& f = temp_cert.open ("wb"); char buffer[4096]; while (true) { int const N = zip_fread (file_in_zip, buffer, sizeof (buffer)); - fwrite (buffer, 1, N, f); + f.checked_write(buffer, N); if (N < int (sizeof (buffer))) { break; } } zip_fclose (file_in_zip); zip_close (zip); - temp_cert.close (); - - load (temp_cert.file ()); - return optional (); -} - -static size_t -ftp_ls_data (void* buffer, size_t size, size_t nmemb, void* data) -{ - string* s = reinterpret_cast (data); - uint8_t* b = reinterpret_cast (buffer); - for (size_t i = 0; i < (size * nmemb); ++i) { - *s += b[i]; - } - return size * nmemb; -} - -list -ftp_ls (string url, bool pasv) -{ - CURL* curl = curl_easy_init (); - if (!curl) { - throw NetworkError ("could not set up curl"); - } - - if (url.substr (url.length() - 1, 1) != "/") { - url += "/"; - } - curl_easy_setopt (curl, CURLOPT_URL, url.c_str ()); - /* 20s timeout */ - curl_easy_setopt (curl, CURLOPT_TIMEOUT, 20); - - string ls_raw; - struct curl_slist* commands = 0; - commands = curl_slist_append (commands, "NLST"); - curl_easy_setopt (curl, CURLOPT_POSTQUOTE, commands); - curl_easy_setopt (curl, CURLOPT_WRITEDATA, &ls_raw); - curl_easy_setopt (curl, CURLOPT_WRITEFUNCTION, ftp_ls_data); - curl_easy_setopt (curl, CURLOPT_FTP_USE_EPSV, 0); - curl_easy_setopt (curl, CURLOPT_FTP_USE_EPRT, 0); - curl_easy_setopt (curl, CURLOPT_VERBOSE, 1); - if (!pasv) { - curl_easy_setopt (curl, CURLOPT_FTPPORT, "-"); - } - CURLcode const r = curl_easy_perform (curl); - if (r != CURLE_OK) { - curl_easy_cleanup (curl); - throw NetworkError (curl_easy_strerror (r)); - } - - list ls; - string line; - for (size_t i = 0; i < ls_raw.length(); ++i) { - line += ls_raw[i]; - if (ls_raw[i] == '\n') { - trim (line); - if (line.length() > 55) { - string const file = line.substr (55); - if (file != "." && file != "..") { - ls.push_back (file); - } - } - line = ""; - } - } - - curl_easy_cleanup (curl); + f.close (); - return ls; + return load (temp_cert.path(), url); }