forked from erikzenker/WebdavClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WebdavClient.cc
225 lines (198 loc) · 6.24 KB
/
WebdavClient.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
#include <string>
#include <unistd.h> /* close */
#include <fcntl.h> /* open */
#include <cstring> /* strncpy */
#include <neon/ne_props.h> /* ne_simple_propfind, ne_prop_result_set */
#include <neon/ne_uri.h> /* uri */
#include <neon/ne_auth.h> /* ne_set_server_auth, ne_ssl_trust_default_ca */
#include <neon/ne_basic.h> /* ne_session, ne_put, ne_get, ne_delete, ne_mkcol */
#include <WebdavClient.h>
static const ne_propname fetchProps[] = {
{ "DAV:", "resourcetype" },
{ "DAV:", "getlastmodified" },
{ "DAV:", "getcontenttype"},
{ NULL }
};
/**
* @brief Inits webdav session and ssl authentication
*
**/
WebdavClient::WebdavClient(const std::string url, const unsigned port, const std::string user, const std::string pw){
ne_sock_init();
mSession = ne_session_create("http", url.c_str(), 80);
std::vector<std::string> *login = new std::vector<std::string>();
login->push_back(user);
login->push_back(pw);
ne_set_server_auth(mSession, WebdavClient::setLogin, login);
}
WebdavClient::~WebdavClient(){
ne_forget_auth(mSession);
ne_session_destroy(mSession);
ne_sock_exit();
}
/**
* @brief Callback for ne_set_server_auth to set passwort and username of ssl connection
*
**/
int WebdavClient::setLogin(void *userdata, const char *realm, int attempts, char *username, char *password) {
std::vector<std::string> *login = (std::vector<std::string>*) userdata;
strncpy(username, login->at(0).c_str(), NE_ABUFSIZ);
strncpy(password, login->at(1).c_str(), NE_ABUFSIZ);
return attempts;
}
/**
* @brief Callback of ne_simple_propfind, that fills a vector(userdata) with properties of files/directory
*
**/
void WebdavClient::getProps(void *userdata, const ne_uri *uri, const ne_prop_result_set *set){
std::vector<WebdavPath> *paths = (std::vector<WebdavPath> *) userdata;
ne_propname props[] = {
{ "DAV:", "resourcetype" },
{ "DAV:", "getlastmodified" },
{ "DAV:", "getcontenttype"}
};
std::string ressourceType = ne_propset_value(set, &props[0]) ? ne_propset_value(set, &props[0]) : std::string();
std::string lastModified = ne_propset_value(set, &props[1]) ? ne_propset_value(set, &props[1]) : std::string();
std::string contentType = ne_propset_value(set, &props[2]) ? ne_propset_value(set, &props[2]) : std::string();
WebdavPath path(uri->host,
uri->path,
ressourceType,
lastModified,
contentType);
// Push information to userdata
paths->push_back(path);
}
/**
* @brief Checks for existance of file/diretory at
* given uri. This can be used to reduce transfer
* bandwidth, so no data need to be transfered
* which allready exists.
*
* @param uri of file/directory on webdav-server
*
* @return true if file/directory exists
* false if file/directory not exists
*
**/
bool WebdavClient::exist(std::string uri){
const int depth = NE_DEPTH_ZERO; /* NE_DEPTH_ZERO, NE_DEPTH_ONE, NE_DEPTH_INFINITE */
std::vector<WebdavPath> * props = new std::vector<WebdavPath>;
int res = ne_simple_propfind(mSession, uri.c_str(), depth, fetchProps, getProps, props);
if(res!=NE_OK){
mError = ne_get_error(mSession);
if(mError.find("404")!= std::string::npos){
return false;
}
return false;
}
props->erase(props->begin());
return true;
}
/**
* @brief Lists the directory specified with uri.
* Behauvior is like ls know from unix console.
* @param uri of directory on webdav-server
*
* @return A vector of pathinfomation(Webdavpath) of
* the listed directory.
*
**/
std::vector<WebdavPath> WebdavClient::ls(std::string uri){
const int depth = NE_DEPTH_ONE; /* NE_DEPTH_ZERO, NE_DEPTH_ONE, NE_DEPTH_INFINITE */
std::vector<WebdavPath> * props = new std::vector<WebdavPath>;
int res = ne_simple_propfind(mSession, uri.c_str(), depth, fetchProps, WebdavClient::getProps, props);
if(res!=NE_OK){
mError = ne_get_error(mSession);
return *props;
}
props->erase(props->begin());
return *props;
}
/**
* @brief Pulls the whole subtree of webdav-uri
*
**/
std::vector<WebdavPath> WebdavClient::tree(std::string uri){
std::vector<WebdavPath> *props = new std::vector<WebdavPath>;
const int depth = NE_DEPTH_INFINITE; /* NE_DEPTH_ZERO, NE_DEPTH_ONE, NE_DEPTH_INFINITE */
int res = ne_simple_propfind(mSession, uri.c_str(), depth, fetchProps, WebdavClient::getProps, props);
if(res!=NE_OK){
mError = ne_get_error(mSession);
return *props;
}
return *props;
}
/**
* @brief Puts a file (localSource) on a directory(uri)of the
* webdav-server.
*
* @param uri destination on the webdav-server
* localSource sourcefile, that will be copied
*
* @return false if can´t put file
* true otherwise
**/
bool WebdavClient::put(std::string uri, std::string localSource){
int fd = open(localSource.c_str(), O_RDONLY);
int res = ne_put(mSession, uri.c_str(), fd);
if(res!=NE_OK){
mError = ne_get_error(mSession);
return false;
}
close(fd);
return true;
}
/**
* @brief Downloads a file from webdav-server(uri).
*
* @param uri source of file to download
* localDestination download-destination
*
* @return false if can´t download file
* true otherwise
**/
bool WebdavClient::get(std::string uri, std::string localDestination){
int fd = open(localDestination.c_str(), O_WRONLY | O_CREAT);
int res = ne_get(mSession, uri.c_str(), fd);
if(res!=NE_OK){
mError = ne_get_error(mSession);
return false;
}
close(fd);
return true;
}
/**
* @brief Creates a directory on webdav-server at uri
*
* @param uri directory to create
*
* @return false if can´t create directory
* true otherwise
**/
bool WebdavClient::mkdir(std::string uri){
int res = ne_mkcol(mSession, uri.c_str());
if(res != NE_OK){
mError = ne_get_error(mSession);
return false;
}
return true;
}
/**
* @brief Delete file or directory on webdav-server at uri
*
* @param uri directory to delete
*
* @return false if can´t delete directory
* true otherwise
**/
bool WebdavClient::rm(std::string uri){
int res = ne_delete(mSession, uri.c_str());
if(res!=NE_OK){
mError = ne_get_error(mSession);
return false;
}
return true;
}
std::string WebdavClient::getLastError(){
return mError;
}