X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Finternet.cc;h=a9c30611df49d89f065cd04ee525f1b2bdf3ab72;hp=b45eaabf7580ec2c74a0d0559d3b0ed54b377223;hb=HEAD;hpb=59f63e2b6d0dba963faee7dfee54fbb48dee396a diff --git a/src/lib/internet.cc b/src/lib/internet.cc index b45eaabf7..1f280dc5d 100644 --- a/src/lib/internet.cc +++ b/src/lib/internet.cc @@ -1,153 +1,204 @@ /* - Copyright (C) 2014 Carl Hetherington + Copyright (C) 2014-2021 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic 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; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ -#include -#include -#include -#include + +#include "compose.hpp" +#include "cross.h" +#include "exceptions.h" +#include "scoped_temporary.h" +#include "util.h" +#include #include #include -#include "scoped_temporary.h" -#include "compose.hpp" -#include "safe_stringstream.h" +#include +#include +#include +#include #include "i18n.h" -using std::string; + +using std::function; using std::list; +using std::string; +using boost::algorithm::trim; using boost::optional; -using boost::function; + 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) +{ + 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) { - FILE* f = reinterpret_cast (stream); + 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 if (ls[i] != '\r') { + 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, 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 ()); - - 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 curl = curl_easy_init (); + curl_easy_setopt (curl, CURLOPT_URL, url.c_str()); + + 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, "-"); + } + /* Maximum time is 20s */ curl_easy_setopt (curl, CURLOPT_TIMEOUT, 20); - CURLcode const cr = curl_easy_perform (curl); + auto const cr = curl_easy_perform (curl); - temp_zip.close (); + f.close(); curl_easy_cleanup (curl); if (cr != CURLE_OK) { - return String::compose (_("Download failed (%1/%2 error %3)"), url, file, cr); + return String::compose (_("Download failed (%1 error %2)"), url, (int) cr); } - /* Open the ZIP file and read `file' out of it */ - - struct zip* zip = zip_open (temp_zip.c_str(), 0, 0); - if (!zip) { - return optional (_("Could not open downloaded ZIP file")); - } - - struct zip_file* zip_file = zip_fopen (zip, file.c_str(), 0); - if (!zip_file) { - return optional (_("Unexpected ZIP file contents")); - } - - ScopedTemporary temp_cert; - f = temp_cert.open ("wb"); - char buffer[4096]; - while (true) { - int const N = zip_fread (zip_file, buffer, sizeof (buffer)); - fwrite (buffer, 1, N, f); - if (N < int (sizeof (buffer))) { - break; - } - } - temp_cert.close (); - - load (temp_cert.file ()); - return optional (); + return {}; } -static size_t -ftp_ls_data (void* buffer, size_t size, size_t nmemb, void* data) +optional +get_from_url (string url, bool pasv, bool skip_pasv_ip, function (boost::filesystem::path, string)> load) { - string* s = reinterpret_cast (data); - uint8_t* b = reinterpret_cast (buffer); - for (size_t i = 0; i < (size * nmemb); ++i) { - *s += b[i]; + ScopedTemporary temp; + auto e = get_from_url (url, pasv, skip_pasv_ip, temp); + if (e) { + return e; } - return nmemb; + return load (temp.path(), url); } -list -ftp_ls (string 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) { - CURL* curl = curl_easy_init (); - if (!curl) { - return list (); + /* 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; } - if (url.substr (url.length() - 1, 1) != "/") { - url += "/"; + /* Open the ZIP file and read `file' out of it */ + +#ifdef DCPOMATIC_HAVE_ZIP_SOURCE_T + /* This is the way to do it with newer versions of libzip, and is required on Windows. + The zip_source_t API is missing in the libzip versions shipped with Ubuntu 14.04, + Centos 6, Centos 7, Debian 7 and Debian 8. + */ + + auto& zip_file = temp_zip.open("rb"); + if (!zip_file) { + return string(_("Could not open downloaded ZIP file")); } - 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); - CURLcode const r = curl_easy_perform (curl); - if (r != CURLE_OK) { - return list (); + auto zip_source = zip_source_filep_create (zip_file.take(), 0, -1, 0); + if (!zip_source) { + return string(_("Could not open downloaded ZIP file")); } - SafeStringStream s (ls_raw); - list ls; - while (s.good ()) { - string const line = s.getline (); - if (line.length() > 55) { - string const file = line.substr (55); - if (file != "." && file != "..") { - ls.push_back (file); - } - } + zip_error_t error; + zip_error_init (&error); + auto zip = zip_open_from_source (zip_source, ZIP_RDONLY, &error); + if (!zip) { + return String::compose (_("Could not open downloaded ZIP file (%1:%2: %3)"), error.zip_err, error.sys_err, error.str ? error.str : ""); } - curl_easy_cleanup (curl); +#else + struct zip* zip = zip_open (temp_zip.c_str(), 0, 0); +#endif + + struct zip_file* file_in_zip = zip_fopen (zip, file.c_str(), 0); + if (!file_in_zip) { + return string(_("Unexpected ZIP file contents")); + } + + ScopedTemporary temp_cert; + auto& f = temp_cert.open ("wb"); + char buffer[4096]; + while (true) { + int const N = zip_fread (file_in_zip, buffer, sizeof (buffer)); + f.checked_write(buffer, N); + if (N < int (sizeof (buffer))) { + break; + } + } + zip_fclose (file_in_zip); + zip_close (zip); + f.close (); - return ls; + return load (temp_cert.path(), url); }