Some more certificate download improvements.
[dcpomatic.git] / src / lib / internet.cc
1 /*
2     Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <string>
21 #include <boost/function.hpp>
22 #include <boost/optional.hpp>
23 #include <boost/filesystem.hpp>
24 #include <curl/curl.h>
25 #include <zip.h>
26 #include "util.h"
27
28 #include "i18n.h"
29
30 using std::string;
31 using std::stringstream;
32 using std::list;
33 using boost::optional;
34 using boost::function;
35
36 static size_t
37 get_from_zip_url_data (void* buffer, size_t size, size_t nmemb, void* stream)
38 {
39         FILE* f = reinterpret_cast<FILE*> (stream);
40         return fwrite (buffer, size, nmemb, f);
41 }
42
43 /** @param url URL of ZIP file.
44  *  @param file Filename within ZIP file.
45  *  @param load Function passed a (temporary) filesystem path of the unpacked file.
46  */
47 optional<string>
48 get_from_zip_url (string url, string file, function<void (boost::filesystem::path)> load)
49 {
50         /* Download the ZIP file to temp_zip */
51         CURL* curl = curl_easy_init ();
52         curl_easy_setopt (curl, CURLOPT_URL, url.c_str ());
53         
54         ScopedTemporary temp_zip;
55         FILE* f = temp_zip.open ("wb");
56         curl_easy_setopt (curl, CURLOPT_WRITEFUNCTION, get_from_zip_url_data);
57         curl_easy_setopt (curl, CURLOPT_WRITEDATA, f);
58
59         CURLcode const cr = curl_easy_perform (curl);
60
61         temp_zip.close ();
62         curl_easy_cleanup (curl);
63         if (cr != CURLE_OK) {
64                 return String::compose (_("Download failed (%1/%2 error %3)"), url, file, cr);
65         }
66
67         /* Open the ZIP file and read `file' out of it */
68         
69         struct zip* zip = zip_open (temp_zip.c_str(), 0, 0);
70         if (!zip) {
71                 return optional<string> (_("Could not open downloaded ZIP file"));
72         }
73         
74         struct zip_file* zip_file = zip_fopen (zip, file.c_str(), 0);
75         if (!zip_file) {
76                 return optional<string> (_("Unexpected ZIP file contents"));
77         }
78         
79         ScopedTemporary temp_cert;
80         f = temp_cert.open ("wb");
81         char buffer[4096];
82         while (1) {
83                 int const N = zip_fread (zip_file, buffer, sizeof (buffer));
84                 fwrite (buffer, 1, N, f);
85                 if (N < int (sizeof (buffer))) {
86                         break;
87                 }
88         }
89         temp_cert.close ();
90         
91         load (temp_cert.file ());
92         return optional<string> ();
93 }
94
95
96 static size_t
97 ftp_ls_data (void* buffer, size_t size, size_t nmemb, void* data)
98 {
99         string* s = reinterpret_cast<string *> (data);
100         uint8_t* b = reinterpret_cast<uint8_t *> (buffer);
101         for (size_t i = 0; i < (size * nmemb); ++i) {
102                 *s += b[i];
103         }
104         return nmemb;
105 }
106
107 list<string>
108 ftp_ls (string url)
109 {
110         CURL* curl = curl_easy_init ();
111         if (!curl) {
112                 return list<string> ();
113         }
114
115         if (url.substr (url.length() - 1, 1) != "/") {
116                 url += "/";
117         }
118         curl_easy_setopt (curl, CURLOPT_URL, url.c_str ());
119
120         string ls_raw;
121         struct curl_slist* commands = 0;
122         commands = curl_slist_append (commands, "NLST");
123         curl_easy_setopt (curl, CURLOPT_POSTQUOTE, commands);
124         curl_easy_setopt (curl, CURLOPT_WRITEDATA, &ls_raw);
125         curl_easy_setopt (curl, CURLOPT_WRITEFUNCTION, ftp_ls_data);
126         curl_easy_setopt (curl, CURLOPT_FTP_USE_EPSV, 0);
127         CURLcode const r = curl_easy_perform (curl);
128         if (r != CURLE_OK) {
129                 return list<string> ();
130         }
131
132         stringstream s (ls_raw);
133         string line;
134         list<string> ls;
135         while (s.good ()) {
136                 getline (s, line);
137                 if (line.length() > 55) {
138                         string const file = line.substr (55);
139                         if (file != "." && file != "..") {
140                                 ls.push_back (file);
141                         }
142                 }
143         }
144
145         curl_easy_cleanup (curl);
146
147         return ls;
148 }