Remove some unused code.
[dcpomatic.git] / src / lib / internet.cc
1 /*
2     Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "scoped_temporary.h"
22 #include "compose.hpp"
23 #include "exceptions.h"
24 #include "cross.h"
25 #include <curl/curl.h>
26 #include <zip.h>
27 #include <boost/function.hpp>
28 #include <boost/optional.hpp>
29 #include <boost/filesystem.hpp>
30 #include <boost/algorithm/string.hpp>
31 #include <string>
32
33 #include "i18n.h"
34
35 using std::string;
36 using std::list;
37 using boost::optional;
38 using boost::function;
39 using boost::algorithm::trim;
40
41 static size_t
42 get_from_zip_url_data (void* buffer, size_t size, size_t nmemb, void* stream)
43 {
44         FILE* f = reinterpret_cast<FILE*> (stream);
45         return fwrite (buffer, size, nmemb, f);
46 }
47
48 /** @param url URL of ZIP file.
49  *  @param file Filename within ZIP file.
50  *  @param load Function passed a (temporary) filesystem path of the unpacked file.
51  */
52 optional<string>
53 get_from_zip_url (string url, string file, bool pasv, function<void (boost::filesystem::path)> load)
54 {
55         /* Download the ZIP file to temp_zip */
56         CURL* curl = curl_easy_init ();
57         curl_easy_setopt (curl, CURLOPT_URL, url.c_str ());
58
59         ScopedTemporary temp_zip;
60         FILE* f = temp_zip.open ("wb");
61         curl_easy_setopt (curl, CURLOPT_WRITEFUNCTION, get_from_zip_url_data);
62         curl_easy_setopt (curl, CURLOPT_WRITEDATA, f);
63         curl_easy_setopt (curl, CURLOPT_FTP_USE_EPSV, 0);
64         curl_easy_setopt (curl, CURLOPT_FTP_USE_EPRT, 0);
65         if (!pasv) {
66                 curl_easy_setopt (curl, CURLOPT_FTPPORT, "-");
67         }
68
69         /* Maximum time is 20s */
70         curl_easy_setopt (curl, CURLOPT_TIMEOUT, 20);
71
72         CURLcode const cr = curl_easy_perform (curl);
73
74         temp_zip.close ();
75         curl_easy_cleanup (curl);
76         if (cr != CURLE_OK) {
77                 return String::compose (_("Download failed (%1/%2 error %3)"), url, file, (int) cr);
78         }
79
80         /* Open the ZIP file and read `file' out of it */
81
82 #ifdef DCPOMATIC_HAVE_ZIP_SOURCE_T
83         /* This is the way to do it with newer versions of libzip, and is required on Windows.
84            The zip_source_t API is missing in the libzip versions shipped with Ubuntu 14.04,
85            Centos 6, Centos 7, Debian 7 and Debian 8.
86         */
87
88         FILE* zip_file = fopen_boost (temp_zip.file (), "rb");
89         if (!zip_file) {
90                 return optional<string> (_("Could not open downloaded ZIP file"));
91         }
92
93         zip_source_t* zip_source = zip_source_filep_create (zip_file, 0, -1, 0);
94         if (!zip_source) {
95                 return optional<string> (_("Could not open downloaded ZIP file"));
96         }
97
98         zip_t* zip = zip_open_from_source (zip_source, 0, 0);
99         if (!zip) {
100                 return optional<string> (_("Could not open downloaded ZIP file"));
101         }
102
103 #else
104         struct zip* zip = zip_open (temp_zip.c_str(), 0, 0);
105 #endif
106
107         struct zip_file* file_in_zip = zip_fopen (zip, file.c_str(), 0);
108         if (!file_in_zip) {
109                 return optional<string> (_("Unexpected ZIP file contents"));
110         }
111
112         ScopedTemporary temp_cert;
113         f = temp_cert.open ("wb");
114         char buffer[4096];
115         while (true) {
116                 int const N = zip_fread (file_in_zip, buffer, sizeof (buffer));
117                 fwrite (buffer, 1, N, f);
118                 if (N < int (sizeof (buffer))) {
119                         break;
120                 }
121         }
122         zip_fclose (file_in_zip);
123         zip_close (zip);
124         temp_cert.close ();
125
126         load (temp_cert.file ());
127         return optional<string> ();
128 }