A few KDM dialog fixes.
[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         curl_easy_setopt (curl, CURLOPT_FTP_USE_EPSV, 0);
59
60         CURLcode const cr = curl_easy_perform (curl);
61
62         temp_zip.close ();
63         curl_easy_cleanup (curl);
64         if (cr != CURLE_OK) {
65                 return String::compose (_("Download failed (%1/%2 error %3)"), url, file, cr);
66         }
67
68         /* Open the ZIP file and read `file' out of it */
69         
70         struct zip* zip = zip_open (temp_zip.c_str(), 0, 0);
71         if (!zip) {
72                 return optional<string> (_("Could not open downloaded ZIP file"));
73         }
74         
75         struct zip_file* zip_file = zip_fopen (zip, file.c_str(), 0);
76         if (!zip_file) {
77                 return optional<string> (_("Unexpected ZIP file contents"));
78         }
79         
80         ScopedTemporary temp_cert;
81         f = temp_cert.open ("wb");
82         char buffer[4096];
83         while (1) {
84                 int const N = zip_fread (zip_file, buffer, sizeof (buffer));
85                 fwrite (buffer, 1, N, f);
86                 if (N < int (sizeof (buffer))) {
87                         break;
88                 }
89         }
90         temp_cert.close ();
91         
92         load (temp_cert.file ());
93         return optional<string> ();
94 }
95
96
97 static size_t
98 ftp_ls_data (void* buffer, size_t size, size_t nmemb, void* data)
99 {
100         string* s = reinterpret_cast<string *> (data);
101         uint8_t* b = reinterpret_cast<uint8_t *> (buffer);
102         for (size_t i = 0; i < (size * nmemb); ++i) {
103                 *s += b[i];
104         }
105         return nmemb;
106 }
107
108 list<string>
109 ftp_ls (string url)
110 {
111         CURL* curl = curl_easy_init ();
112         if (!curl) {
113                 return list<string> ();
114         }
115
116         if (url.substr (url.length() - 1, 1) != "/") {
117                 url += "/";
118         }
119         curl_easy_setopt (curl, CURLOPT_URL, url.c_str ());
120
121         string ls_raw;
122         struct curl_slist* commands = 0;
123         commands = curl_slist_append (commands, "NLST");
124         curl_easy_setopt (curl, CURLOPT_POSTQUOTE, commands);
125         curl_easy_setopt (curl, CURLOPT_WRITEDATA, &ls_raw);
126         curl_easy_setopt (curl, CURLOPT_WRITEFUNCTION, ftp_ls_data);
127         curl_easy_setopt (curl, CURLOPT_FTP_USE_EPSV, 0);
128         CURLcode const r = curl_easy_perform (curl);
129         if (r != CURLE_OK) {
130                 return list<string> ();
131         }
132
133         stringstream s (ls_raw);
134         string line;
135         list<string> ls;
136         while (s.good ()) {
137                 getline (s, line);
138                 if (line.length() > 55) {
139                         string const file = line.substr (55);
140                         if (file != "." && file != "..") {
141                                 ls.push_back (file);
142                         }
143                 }
144         }
145
146         curl_easy_cleanup (curl);
147
148         return ls;
149 }