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