Add FTP uploader using curl.
[dcpomatic.git] / src / lib / scp_uploader.cc
1 /*
2     Copyright (C) 2012-2015 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 "scp_uploader.h"
21 #include "exceptions.h"
22 #include "job.h"
23 #include "config.h"
24 #include "cross.h"
25 #include "compose.hpp"
26
27 #include "i18n.h"
28
29 using std::string;
30 using std::min;
31 using boost::shared_ptr;
32 using boost::function;
33
34 SCPUploader::SCPUploader (function<void (string)> set_status, function<void (float)> set_progress)
35         : Uploader (set_status, set_progress)
36 {
37         _session = ssh_new ();
38         if (!_session) {
39                 throw NetworkError (_("could not start SSH session"));
40         }
41
42         ssh_options_set (_session, SSH_OPTIONS_HOST, Config::instance()->tms_ip().c_str ());
43         ssh_options_set (_session, SSH_OPTIONS_USER, Config::instance()->tms_user().c_str ());
44         int const port = 22;
45         ssh_options_set (_session, SSH_OPTIONS_PORT, &port);
46
47         int r = ssh_connect (_session);
48         if (r != SSH_OK) {
49                 throw NetworkError (String::compose (_("Could not connect to server %1 (%2)"), Config::instance()->tms_ip(), ssh_get_error (_session)));
50         }
51
52         r = ssh_is_server_known (_session);
53         if (r == SSH_SERVER_ERROR) {
54                 throw NetworkError (String::compose (_("SSH error (%1)"), ssh_get_error (_session)));
55         }
56
57         r = ssh_userauth_password (_session, 0, Config::instance()->tms_password().c_str ());
58         if (r != SSH_AUTH_SUCCESS) {
59                 throw NetworkError (String::compose (_("Failed to authenticate with server (%1)"), ssh_get_error (_session)));
60         }
61
62         _scp = ssh_scp_new (_session, SSH_SCP_WRITE | SSH_SCP_RECURSIVE, Config::instance()->tms_path().c_str ());
63         if (!_scp) {
64                 throw NetworkError (String::compose (_("could not start SCP session (%1)"), ssh_get_error (_session)));
65         }
66
67         r = ssh_scp_init (_scp);
68         if (r != SSH_OK) {
69                 throw NetworkError (String::compose (_("Could not start SCP session (%1)"), ssh_get_error (_session)));
70         }
71 }
72
73 SCPUploader::~SCPUploader ()
74 {
75         ssh_scp_free (_scp);
76         ssh_disconnect (_session);
77         ssh_free (_session);
78 }
79
80 void
81 SCPUploader::create_directory (boost::filesystem::path directory)
82 {
83         int const r = ssh_scp_push_directory (_scp, directory.string().c_str(), S_IRWXU);
84         if (r != SSH_OK) {
85                 throw NetworkError (String::compose (_("Could not create remote directory %1 (%2)"), directory, ssh_get_error (_session)));
86         }
87 }
88
89 void
90 SCPUploader::upload_file (boost::filesystem::path from, boost::filesystem::path to, boost::uintmax_t& transferred, boost::uintmax_t total_size)
91 {
92         boost::uintmax_t to_do = boost::filesystem::file_size (from);
93         ssh_scp_push_file (_scp, to.string().c_str(), to_do, S_IRUSR | S_IWUSR);
94
95         FILE* f = fopen_boost (from, "rb");
96         if (f == 0) {
97                 throw NetworkError (String::compose (_("Could not open %1 to send"), from));
98         }
99
100         boost::uintmax_t buffer_size = 64 * 1024;
101         char buffer[buffer_size];
102
103         while (to_do > 0) {
104                 int const t = min (to_do, buffer_size);
105                 size_t const read = fread (buffer, 1, t, f);
106                 if (read != size_t (t)) {
107                         fclose (f);
108                         throw ReadFileError (from);
109                 }
110
111                 int const r = ssh_scp_write (_scp, buffer, t);
112                 if (r != SSH_OK) {
113                         fclose (f);
114                         throw NetworkError (String::compose (_("Could not write to remote file (%1)"), ssh_get_error (_session)));
115                 }
116                 to_do -= t;
117                 transferred += t;
118
119                 if (total_size > 0) {
120                         _set_progress ((double) transferred / total_size);
121                 }
122         }
123
124         fclose (f);
125 }