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
|
/**
*
* This file is part of Tulip (www.tulip-software.org)
*
* Authors: David Auber and the Tulip development Team
* from LaBRI, University of Bordeaux
*
* Tulip is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* Tulip is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
*/
#include <cassert>
#include "WebDavManager.h"
#include <QDomDocument>
WebDavManager::WebDavManager(const QString& host, const QString& url, const QString& base64credentials) : _host(host), _url(url), _credentials("Basic " + base64credentials), _ongoingRequests(0), _displayErrors(true) {
_credentials = _credentials.replace("\012", "");
connect(&_manager, SIGNAL(finished(QNetworkReply*)), this, SLOT(requestFinished(QNetworkReply*)));
}
bool WebDavManager::folderExists(const QString& folder) {
_displayErrors = false;
_requestSucessFull = true;
++_ongoingRequests;
_manager.sendCustomRequest(initRequest(folder), QString("PROPFIND").toUtf8());
while(_ongoingRequests > 0) {
QCoreApplication::processEvents();
}
std::cout << "folder " << folder.toStdString() << (_requestSucessFull ? "exists" : "does not exists") << std::endl;
_displayErrors = true;
return _requestSucessFull;
}
bool WebDavManager::mkdir(const QString& folder) {
if(folderExists(folder)) {
return true;
}
_requestSucessFull = true;
++_ongoingRequests;
std::cout << "creating fodler " << folder.toStdString() << std::endl;
_manager.sendCustomRequest(initRequest(folder), QString("MKCOL").toUtf8());
while(_ongoingRequests > 0) {
QCoreApplication::processEvents();
}
return _requestSucessFull;
}
bool WebDavManager::putFile(const QString& filename, QIODevice* data) {
_requestSucessFull = true;
++_ongoingRequests;
std::cout << "uploading " << filename.toStdString() << std::endl;
_manager.sendCustomRequest(initRequest(filename), QString("PUT").toUtf8(), data);
while(_ongoingRequests > 0) {
QCoreApplication::processEvents();
}
return _requestSucessFull;
}
void WebDavManager::finish() {
while(_ongoingRequests > 0) {
QCoreApplication::processEvents();
}
}
void WebDavManager::requestFinished(QNetworkReply* reply) {
--_ongoingRequests;
if(reply->error() != QNetworkReply::NoError) {
if(_displayErrors) {
std::cout << "error: " << reply->errorString().toStdString() << std::endl;
std::cout << "reply: " << QString(reply->readAll()).toStdString() << std::endl;
std::cout << "request: " << reply->request().url().toString().toStdString() << std::endl;
}
_requestSucessFull = false;
}
if(!QString(reply->readAll()).contains("200")) {
_requestSucessFull = false;
}
reply->deleteLater();
}
QUrl WebDavManager::initUrl(const QString& dest) {
QUrl url("https://" + _host + ":" + "443" + "/" + _url + "/" + dest);
if(!url.isValid()) {
std::cout << "URL not valid: " << url.toString().toStdString() << std::endl;
assert(false);
}
return url;
}
QNetworkRequest WebDavManager::initRequest(const QString& destination, QIODevice* data, QVariant mimetype) {
QNetworkRequest request(initUrl(destination));
request.setRawHeader(QByteArray("Authorization"), _credentials.toLatin1());
request.setRawHeader(QByteArray("Host"), _host.toUtf8());
if(data != NULL) {
request.setHeader(QNetworkRequest::ContentLengthHeader, QVariant(data->size()));
}
request.setHeader(QNetworkRequest::ContentTypeHeader, mimetype);
return request;
}
QDomDocument* WebDavManager::getRemoteDescription() {
QNetworkRequest request = initRequest("archive/serverDescription.xml");
QNetworkAccessManager manager;
QNetworkReply* reply = manager.get(request);
QDomDocument* currentServerDescription = new QDomDocument();
QString errorMsg;
bool result = currentServerDescription->setContent(reply->readAll(), &errorMsg);
std::cout << result << ":"<< errorMsg.toStdString() << std::endl;
reply->deleteLater();
return currentServerDescription;
}
|