2013-06-06 13:33:15 +00:00
|
|
|
#include "subsurfacewebservices.h"
|
2013-06-06 14:31:55 +00:00
|
|
|
#include "../webservice.h"
|
2013-11-30 17:18:04 +00:00
|
|
|
#include "mainwindow.h"
|
2013-06-06 14:31:55 +00:00
|
|
|
|
|
|
|
#include <libxml/parser.h>
|
2013-11-15 02:57:09 +00:00
|
|
|
#include <zip.h>
|
2013-06-06 14:31:55 +00:00
|
|
|
|
2013-11-15 02:57:09 +00:00
|
|
|
#include <QDir>
|
|
|
|
#include <QHttpMultiPart>
|
|
|
|
#include <QMessageBox>
|
2013-06-06 13:33:15 +00:00
|
|
|
#include <QNetworkAccessManager>
|
|
|
|
#include <QNetworkReply>
|
|
|
|
#include <QDebug>
|
2013-06-06 14:57:12 +00:00
|
|
|
#include <QSettings>
|
2013-11-15 02:57:09 +00:00
|
|
|
#include <QXmlStreamReader>
|
2013-06-06 14:31:55 +00:00
|
|
|
#include <qdesktopservices.h>
|
2013-06-06 13:33:15 +00:00
|
|
|
|
2013-06-06 14:57:12 +00:00
|
|
|
#include "../dive.h"
|
|
|
|
#include "../divelist.h"
|
|
|
|
|
2013-11-15 02:57:09 +00:00
|
|
|
#ifdef Q_OS_UNIX
|
|
|
|
# include <unistd.h> // for dup(2)
|
|
|
|
#endif
|
|
|
|
|
2013-06-06 14:57:12 +00:00
|
|
|
struct dive_table gps_location_table;
|
2013-10-05 07:29:09 +00:00
|
|
|
static bool merge_locations_into_dives(void);
|
2013-06-06 14:57:12 +00:00
|
|
|
|
2013-11-14 22:59:06 +00:00
|
|
|
static bool is_automatic_fix(struct dive *gpsfix)
|
|
|
|
{
|
|
|
|
if (gpsfix && gpsfix->location &&
|
|
|
|
(!strcmp(gpsfix->location, "automatic fix") ||
|
|
|
|
!strcmp(gpsfix->location, "Auto-created dive")))
|
|
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SAME_GROUP 6 * 3600 // six hours
|
|
|
|
|
|
|
|
static bool merge_locations_into_dives(void)
|
|
|
|
{
|
|
|
|
int i, nr = 0, changed = 0;
|
|
|
|
struct dive *gpsfix, *last_named_fix = NULL, *dive;
|
|
|
|
|
|
|
|
sort_table(&gps_location_table);
|
|
|
|
|
|
|
|
for_each_gps_location(i, gpsfix) {
|
|
|
|
if (is_automatic_fix(gpsfix)) {
|
|
|
|
dive = find_dive_including(gpsfix->when);
|
|
|
|
if (dive && !dive_has_gps_location(dive)) {
|
|
|
|
#if DEBUG_WEBSERVICE
|
|
|
|
struct tm tm;
|
|
|
|
utc_mkdate(gpsfix->when, &tm);
|
|
|
|
printf("found dive named %s @ %04d-%02d-%02d %02d:%02d:%02d\n",
|
|
|
|
gpsfix->location,
|
|
|
|
tm.tm_year+1900, tm.tm_mon+1, tm.tm_mday,
|
|
|
|
tm.tm_hour, tm.tm_min, tm.tm_sec);
|
|
|
|
#endif
|
|
|
|
changed++;
|
|
|
|
copy_gps_location(gpsfix, dive);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (last_named_fix && dive_within_time_range(last_named_fix, gpsfix->when, SAME_GROUP)) {
|
|
|
|
nr++;
|
|
|
|
} else {
|
|
|
|
nr = 1;
|
|
|
|
last_named_fix = gpsfix;
|
|
|
|
}
|
|
|
|
dive = find_dive_n_near(gpsfix->when, nr, SAME_GROUP);
|
|
|
|
if (dive) {
|
|
|
|
if (!dive_has_gps_location(dive)) {
|
|
|
|
copy_gps_location(gpsfix, dive);
|
|
|
|
changed++;
|
|
|
|
}
|
|
|
|
if (!dive->location) {
|
|
|
|
dive->location = strdup(gpsfix->location);
|
|
|
|
changed++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
struct tm tm;
|
|
|
|
utc_mkdate(gpsfix->when, &tm);
|
|
|
|
#if DEBUG_WEBSERVICE
|
|
|
|
printf("didn't find dive matching gps fix named %s @ %04d-%02d-%02d %02d:%02d:%02d\n",
|
|
|
|
gpsfix->location,
|
|
|
|
tm.tm_year+1900, tm.tm_mon+1, tm.tm_mday,
|
|
|
|
tm.tm_hour, tm.tm_min, tm.tm_sec);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return changed > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void clear_table(struct dive_table *table)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < table->nr; i++)
|
|
|
|
free(table->dives[i]);
|
|
|
|
table->nr = 0;
|
|
|
|
}
|
|
|
|
|
2013-10-25 00:30:21 +00:00
|
|
|
WebServices::WebServices(QWidget* parent, Qt::WindowFlags f): QDialog(parent, f)
|
2013-10-25 00:38:41 +00:00
|
|
|
, reply(0)
|
2013-10-25 00:30:21 +00:00
|
|
|
{
|
|
|
|
ui.setupUi(this);
|
|
|
|
connect(ui.buttonBox, SIGNAL(clicked(QAbstractButton*)), this, SLOT(buttonClicked(QAbstractButton*)));
|
|
|
|
connect(ui.download, SIGNAL(clicked(bool)), this, SLOT(startDownload()));
|
2013-11-15 02:57:09 +00:00
|
|
|
connect(ui.upload, SIGNAL(clicked(bool)), this, SLOT(startUpload()));
|
2013-11-15 01:47:35 +00:00
|
|
|
connect(&timeout, SIGNAL(timeout()), this, SLOT(downloadTimedOut()));
|
2013-10-25 00:30:21 +00:00
|
|
|
ui.buttonBox->button(QDialogButtonBox::Apply)->setEnabled(false);
|
2013-11-15 01:47:35 +00:00
|
|
|
timeout.setSingleShot(true);
|
2013-10-25 00:30:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WebServices::hidePassword()
|
|
|
|
{
|
|
|
|
ui.password->hide();
|
|
|
|
ui.passLabel->hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
void WebServices::hideUpload()
|
|
|
|
{
|
|
|
|
ui.upload->hide();
|
2013-11-15 02:57:09 +00:00
|
|
|
ui.download->show();
|
|
|
|
}
|
|
|
|
|
|
|
|
void WebServices::hideDownload()
|
|
|
|
{
|
|
|
|
ui.download->hide();
|
|
|
|
ui.upload->show();
|
2013-10-25 00:30:21 +00:00
|
|
|
}
|
|
|
|
|
2013-11-14 22:55:49 +00:00
|
|
|
QNetworkAccessManager *WebServices::manager()
|
|
|
|
{
|
|
|
|
static QNetworkAccessManager *manager = new QNetworkAccessManager(qApp);
|
|
|
|
return manager;
|
|
|
|
}
|
|
|
|
|
2013-11-15 01:47:35 +00:00
|
|
|
void WebServices::downloadTimedOut()
|
|
|
|
{
|
|
|
|
if (!reply)
|
|
|
|
return;
|
|
|
|
|
|
|
|
reply->deleteLater();
|
|
|
|
reply = NULL;
|
|
|
|
resetState();
|
2013-11-15 02:57:09 +00:00
|
|
|
ui.status->setText(tr("Operation timed out"));
|
2013-11-15 01:47:35 +00:00
|
|
|
}
|
|
|
|
|
2013-11-15 00:52:08 +00:00
|
|
|
void WebServices::updateProgress(qint64 current, qint64 total)
|
|
|
|
{
|
|
|
|
if (!reply)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (total >= INT_MAX / 2) {
|
|
|
|
// over a gigabyte!
|
|
|
|
if (total >= Q_INT64_C(1) << 47) {
|
|
|
|
total >>= 16;
|
|
|
|
current >>= 16;
|
|
|
|
}
|
|
|
|
total >>= 16;
|
|
|
|
current >>= 16;
|
|
|
|
}
|
|
|
|
ui.progressBar->setRange(0, total);
|
|
|
|
ui.progressBar->setValue(current);
|
2013-11-15 02:57:09 +00:00
|
|
|
ui.status->setText(tr("Transfering data..."));
|
2013-11-15 00:52:08 +00:00
|
|
|
|
|
|
|
// reset the timer: 30 seconds after we last got any data
|
|
|
|
timeout.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void WebServices::connectSignalsForDownload(QNetworkReply *reply)
|
|
|
|
{
|
|
|
|
connect(reply, SIGNAL(finished()), this, SLOT(downloadFinished()));
|
|
|
|
connect(reply, SIGNAL(error(QNetworkReply::NetworkError)),
|
|
|
|
this, SLOT(downloadError(QNetworkReply::NetworkError)));
|
|
|
|
connect(reply, SIGNAL(downloadProgress(qint64,qint64)), this,
|
|
|
|
SLOT(updateProgress(qint64,qint64)));
|
2013-11-15 01:47:35 +00:00
|
|
|
|
|
|
|
timeout.start(30000); // 30s
|
2013-11-15 00:52:08 +00:00
|
|
|
}
|
|
|
|
|
2013-11-15 00:50:46 +00:00
|
|
|
void WebServices::resetState()
|
|
|
|
{
|
|
|
|
ui.download->setEnabled(true);
|
2013-11-15 02:57:09 +00:00
|
|
|
ui.upload->setEnabled(true);
|
|
|
|
ui.userID->setEnabled(true);
|
|
|
|
ui.password->setEnabled(true);
|
2013-11-15 00:50:46 +00:00
|
|
|
ui.progressBar->reset();
|
|
|
|
ui.progressBar->setRange(0,1);
|
|
|
|
ui.status->setText(QString());
|
|
|
|
}
|
|
|
|
|
2013-10-25 00:52:11 +00:00
|
|
|
// #
|
|
|
|
// #
|
|
|
|
// # Subsurface Web Service Implementation.
|
|
|
|
// #
|
|
|
|
// #
|
|
|
|
|
2013-06-06 13:33:15 +00:00
|
|
|
SubsurfaceWebServices* SubsurfaceWebServices::instance()
|
|
|
|
{
|
2013-11-30 17:18:04 +00:00
|
|
|
static SubsurfaceWebServices *self = new SubsurfaceWebServices(mainWindow());
|
2013-06-28 12:20:42 +00:00
|
|
|
self->setAttribute(Qt::WA_QuitOnClose, false);
|
2013-06-06 13:33:15 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
SubsurfaceWebServices::SubsurfaceWebServices(QWidget* parent, Qt::WindowFlags f)
|
2013-10-03 18:54:25 +00:00
|
|
|
{
|
2013-06-06 14:57:12 +00:00
|
|
|
QSettings s;
|
2013-11-29 19:34:40 +00:00
|
|
|
ui.userID->setText(s.value("subsurface_webservice_uid").toString().toUpper());
|
2013-10-25 00:30:21 +00:00
|
|
|
hidePassword();
|
|
|
|
hideUpload();
|
2013-06-06 14:57:12 +00:00
|
|
|
}
|
|
|
|
|
2013-06-06 13:33:15 +00:00
|
|
|
void SubsurfaceWebServices::buttonClicked(QAbstractButton* button)
|
|
|
|
{
|
2013-10-03 18:54:25 +00:00
|
|
|
ui.buttonBox->button(QDialogButtonBox::Apply)->setEnabled(false);
|
|
|
|
switch(ui.buttonBox->buttonRole(button)){
|
2013-11-14 22:39:17 +00:00
|
|
|
case QDialogButtonBox::ApplyRole:{
|
|
|
|
clear_table(&gps_location_table);
|
|
|
|
QByteArray url = tr("Webservice").toLocal8Bit();
|
|
|
|
parse_xml_buffer(url.data(), downloadedData.data(), downloadedData.length(), &gps_location_table, NULL, NULL);
|
|
|
|
|
|
|
|
/* now merge the data in the gps_location table into the dive_table */
|
|
|
|
if (merge_locations_into_dives()) {
|
|
|
|
mark_divelist_changed(TRUE);
|
2013-06-06 14:57:12 +00:00
|
|
|
}
|
2013-11-14 22:39:17 +00:00
|
|
|
|
|
|
|
/* store last entered uid in config */
|
|
|
|
QSettings s;
|
|
|
|
s.setValue("subsurface_webservice_uid", ui.userID->text().toUpper());
|
|
|
|
s.sync();
|
|
|
|
hide();
|
|
|
|
close();
|
2013-11-15 00:50:46 +00:00
|
|
|
resetState();
|
2013-11-14 22:39:17 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case QDialogButtonBox::RejectRole:
|
2013-11-14 22:55:49 +00:00
|
|
|
// we may want to clean up after ourselves
|
2013-11-14 22:39:17 +00:00
|
|
|
// reply->deleteLater();
|
2013-11-15 00:52:08 +00:00
|
|
|
reply = NULL;
|
2013-11-15 00:50:46 +00:00
|
|
|
resetState();
|
2013-11-14 22:39:17 +00:00
|
|
|
break;
|
|
|
|
case QDialogButtonBox::HelpRole:
|
|
|
|
QDesktopServices::openUrl(QUrl("http://api.hohndel.org"));
|
|
|
|
break;
|
|
|
|
default:
|
2013-06-06 14:57:12 +00:00
|
|
|
break;
|
2013-06-06 14:31:55 +00:00
|
|
|
}
|
2013-06-06 13:33:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SubsurfaceWebServices::startDownload()
|
|
|
|
{
|
|
|
|
QUrl url("http://api.hohndel.org/api/dive/get/");
|
2013-11-15 01:47:30 +00:00
|
|
|
url.addQueryItem("login", ui.userID->text().toUpper());
|
2013-06-06 14:31:55 +00:00
|
|
|
|
2013-06-06 13:33:15 +00:00
|
|
|
QNetworkRequest request;
|
|
|
|
request.setUrl(url);
|
|
|
|
request.setRawHeader("Accept", "text/xml");
|
2013-11-14 22:55:49 +00:00
|
|
|
reply = manager()->get(request);
|
2013-11-14 23:05:24 +00:00
|
|
|
ui.status->setText(tr("Connecting..."));
|
2013-10-03 18:54:25 +00:00
|
|
|
ui.progressBar->setRange(0,0); // this makes the progressbar do an 'infinite spin'
|
|
|
|
ui.download->setEnabled(false);
|
|
|
|
ui.buttonBox->button(QDialogButtonBox::Apply)->setEnabled(false);
|
2013-11-15 00:52:08 +00:00
|
|
|
connectSignalsForDownload(reply);
|
2013-06-06 13:33:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SubsurfaceWebServices::downloadFinished()
|
|
|
|
{
|
2013-11-15 00:52:08 +00:00
|
|
|
if (!reply)
|
|
|
|
return;
|
|
|
|
|
2013-10-03 18:54:25 +00:00
|
|
|
ui.progressBar->setRange(0,1);
|
2013-06-06 14:31:55 +00:00
|
|
|
downloadedData = reply->readAll();
|
|
|
|
|
2013-10-03 18:54:25 +00:00
|
|
|
ui.download->setEnabled(true);
|
2013-11-15 02:57:09 +00:00
|
|
|
ui.status->setText(tr("Download finished"));
|
2013-06-06 14:31:55 +00:00
|
|
|
|
|
|
|
uint resultCode = download_dialog_parse_response(downloadedData);
|
|
|
|
setStatusText(resultCode);
|
|
|
|
if (resultCode == DD_STATUS_OK){
|
2013-10-03 18:54:25 +00:00
|
|
|
ui.buttonBox->button(QDialogButtonBox::Apply)->setEnabled(true);
|
2013-06-06 14:31:55 +00:00
|
|
|
}
|
|
|
|
reply->deleteLater();
|
2013-11-15 00:52:08 +00:00
|
|
|
reply = NULL;
|
2013-06-06 13:33:15 +00:00
|
|
|
}
|
|
|
|
|
2013-11-15 01:47:30 +00:00
|
|
|
void SubsurfaceWebServices::downloadError(QNetworkReply::NetworkError)
|
2013-06-06 13:33:15 +00:00
|
|
|
{
|
2013-11-15 00:50:46 +00:00
|
|
|
resetState();
|
|
|
|
ui.status->setText(tr("Download error: %1").arg(reply->errorString()));
|
2013-06-06 14:31:55 +00:00
|
|
|
reply->deleteLater();
|
2013-11-15 00:52:08 +00:00
|
|
|
reply = NULL;
|
2013-06-06 13:33:15 +00:00
|
|
|
}
|
|
|
|
|
2013-06-06 14:31:55 +00:00
|
|
|
void SubsurfaceWebServices::setStatusText(int status)
|
|
|
|
{
|
|
|
|
QString text;
|
|
|
|
switch (status) {
|
|
|
|
case DD_STATUS_ERROR_CONNECT: text = tr("Connection Error: "); break;
|
|
|
|
case DD_STATUS_ERROR_ID: text = tr("Invalid user identifier!"); break;
|
|
|
|
case DD_STATUS_ERROR_PARSE: text = tr("Cannot parse response!"); break;
|
|
|
|
case DD_STATUS_OK: text = tr("Download Success!"); break;
|
|
|
|
}
|
2013-10-03 18:54:25 +00:00
|
|
|
ui.status->setText(text);
|
2013-06-06 14:31:55 +00:00
|
|
|
}
|
2013-06-06 13:33:15 +00:00
|
|
|
|
2013-06-06 14:31:55 +00:00
|
|
|
/* requires that there is a <download> or <error> tag under the <root> tag */
|
|
|
|
void SubsurfaceWebServices::download_dialog_traverse_xml(xmlNodePtr node, unsigned int *download_status)
|
|
|
|
{
|
|
|
|
xmlNodePtr cur_node;
|
|
|
|
for (cur_node = node; cur_node; cur_node = cur_node->next) {
|
|
|
|
if ((!strcmp((const char *)cur_node->name, (const char *)"download")) &&
|
2013-11-14 22:39:17 +00:00
|
|
|
(!strcmp((const char *)xmlNodeGetContent(cur_node), (const char *)"ok"))) {
|
2013-06-06 14:31:55 +00:00
|
|
|
*download_status = DD_STATUS_OK;
|
|
|
|
return;
|
|
|
|
} else if (!strcmp((const char *)cur_node->name, (const char *)"error")) {
|
|
|
|
*download_status = DD_STATUS_ERROR_ID;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int SubsurfaceWebServices::download_dialog_parse_response(const QByteArray& xml)
|
|
|
|
{
|
|
|
|
xmlNodePtr root;
|
|
|
|
xmlDocPtr doc = xmlParseMemory(xml.data(), xml.length());
|
|
|
|
unsigned int status = DD_STATUS_ERROR_PARSE;
|
|
|
|
|
|
|
|
if (!doc)
|
|
|
|
return DD_STATUS_ERROR_PARSE;
|
|
|
|
root = xmlDocGetRootElement(doc);
|
|
|
|
if (!root) {
|
|
|
|
status = DD_STATUS_ERROR_PARSE;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
if (root->children)
|
|
|
|
download_dialog_traverse_xml(root->children, &status);
|
2013-11-14 22:39:17 +00:00
|
|
|
end:
|
|
|
|
xmlFreeDoc(doc);
|
|
|
|
return status;
|
2013-06-06 14:31:55 +00:00
|
|
|
}
|
2013-06-06 14:57:12 +00:00
|
|
|
|
2013-10-25 00:52:11 +00:00
|
|
|
// #
|
|
|
|
// #
|
|
|
|
// # Divelogs DE Web Service Implementation.
|
|
|
|
// #
|
|
|
|
// #
|
|
|
|
|
2013-11-15 02:57:09 +00:00
|
|
|
struct DiveListResult
|
|
|
|
{
|
|
|
|
QString errorCondition;
|
|
|
|
QString errorDetails;
|
|
|
|
QByteArray idList; // comma-separated, suitable to be sent in the fetch request
|
|
|
|
int idCount;
|
|
|
|
};
|
|
|
|
|
|
|
|
static DiveListResult parseDiveLogsDeDiveList(const QByteArray &xmlData)
|
|
|
|
{
|
|
|
|
/* XML format seems to be:
|
|
|
|
* <DiveDateReader version="1.0">
|
|
|
|
* <DiveDates>
|
|
|
|
* <date diveLogsId="nnn" lastModified="YYYY-MM-DD hh:mm:ss">DD.MM.YYYY hh:mm</date>
|
|
|
|
* [repeat <date></date>]
|
|
|
|
* </DiveDates>
|
|
|
|
* </DiveDateReader>
|
|
|
|
*/
|
|
|
|
QXmlStreamReader reader(xmlData);
|
|
|
|
const QString invalidXmlError = DivelogsDeWebServices::tr("Invalid response from server");
|
|
|
|
bool seenDiveDates = false;
|
|
|
|
DiveListResult result;
|
|
|
|
result.idCount = 0;
|
|
|
|
|
|
|
|
if (reader.readNextStartElement() && reader.name() != "DiveDateReader") {
|
|
|
|
result.errorCondition = invalidXmlError;
|
|
|
|
result.errorDetails =
|
|
|
|
DivelogsDeWebServices::tr("Expected XML tag 'DiveDateReader', got instead '%1")
|
|
|
|
.arg(reader.name().toString());
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (reader.readNextStartElement()) {
|
|
|
|
if (reader.name() != "DiveDates") {
|
|
|
|
if (reader.name() == "Login") {
|
|
|
|
QString status = reader.readElementText();
|
|
|
|
// qDebug() << "Login status:" << status;
|
|
|
|
|
|
|
|
// Note: there has to be a better way to determine a successful login...
|
|
|
|
if (status == "failed") {
|
|
|
|
result.errorCondition = "Login failed";
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// qDebug() << "Skipping" << reader.name();
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// process <DiveDates>
|
|
|
|
seenDiveDates = true;
|
|
|
|
while (reader.readNextStartElement()) {
|
|
|
|
if (reader.name() != "date") {
|
|
|
|
// qDebug() << "Skipping" << reader.name();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
QStringRef id = reader.attributes().value("divelogsId");
|
|
|
|
// qDebug() << "Found" << reader.name() << "with id =" << id;
|
|
|
|
if (!id.isEmpty()) {
|
|
|
|
result.idList += id.toLatin1();
|
|
|
|
result.idList += ',';
|
|
|
|
++result.idCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
reader.skipCurrentElement();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// chop the ending comma, if any
|
|
|
|
result.idList.chop(1);
|
|
|
|
|
|
|
|
if (!seenDiveDates) {
|
|
|
|
result.errorCondition = invalidXmlError;
|
|
|
|
result.errorDetails = DivelogsDeWebServices::tr("Expected XML tag 'DiveDates' not found");
|
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (reader.hasError()) {
|
|
|
|
// if there was an XML error, overwrite the result or other error conditions
|
|
|
|
result.errorCondition = invalidXmlError;
|
|
|
|
result.errorDetails = DivelogsDeWebServices::tr("Malformed XML response. Line %1: %2")
|
|
|
|
.arg(reader.lineNumber()).arg(reader.errorString());
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-10-25 00:52:11 +00:00
|
|
|
DivelogsDeWebServices* DivelogsDeWebServices::instance()
|
|
|
|
{
|
2013-11-30 17:18:04 +00:00
|
|
|
static DivelogsDeWebServices *self = new DivelogsDeWebServices(mainWindow());
|
2013-10-25 01:02:59 +00:00
|
|
|
self->setAttribute(Qt::WA_QuitOnClose, false);
|
|
|
|
return self;
|
2013-10-25 00:52:11 +00:00
|
|
|
}
|
|
|
|
|
2013-11-15 02:57:09 +00:00
|
|
|
void DivelogsDeWebServices::downloadDives()
|
2013-10-25 00:52:11 +00:00
|
|
|
{
|
2013-11-15 02:57:09 +00:00
|
|
|
hideUpload();
|
|
|
|
exec();
|
|
|
|
}
|
2013-10-25 00:52:11 +00:00
|
|
|
|
2013-11-15 02:57:09 +00:00
|
|
|
void DivelogsDeWebServices::uploadDives(QIODevice *dldContent)
|
|
|
|
{
|
|
|
|
QHttpMultiPart mp(QHttpMultiPart::FormDataType);
|
|
|
|
QHttpPart part;
|
|
|
|
part.setRawHeader("Content-Disposition", "form-data; name=\"userfile\"");
|
|
|
|
part.setBodyDevice(dldContent);
|
|
|
|
mp.append(part);
|
|
|
|
|
|
|
|
multipart = ∓
|
|
|
|
hideDownload();
|
|
|
|
exec();
|
|
|
|
multipart = NULL;
|
|
|
|
|
|
|
|
delete reply; // we need to ensure it has stopped using our QHttpMultiPart
|
|
|
|
}
|
|
|
|
|
|
|
|
DivelogsDeWebServices::DivelogsDeWebServices(QWidget* parent, Qt::WindowFlags f): WebServices(parent, f)
|
|
|
|
{
|
|
|
|
QSettings s;
|
|
|
|
ui.userID->setText(s.value("divelogde_user").toString());
|
|
|
|
ui.password->setText(s.value("divelogde_pass").toString());
|
|
|
|
hideUpload();
|
2013-10-25 00:52:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DivelogsDeWebServices::startUpload()
|
|
|
|
{
|
2013-11-15 02:57:09 +00:00
|
|
|
ui.status->setText(tr("Uploading dive list..."));
|
|
|
|
ui.progressBar->setRange(0,0); // this makes the progressbar do an 'infinite spin'
|
|
|
|
ui.upload->setEnabled(false);
|
|
|
|
ui.userID->setEnabled(false);
|
|
|
|
ui.password->setEnabled(false);
|
2013-10-25 00:52:11 +00:00
|
|
|
|
2013-11-15 02:57:09 +00:00
|
|
|
QNetworkRequest request;
|
|
|
|
request.setUrl(QUrl("https://divelogs.de/DivelogsDirectImport.php"));
|
|
|
|
request.setRawHeader("Accept", "text/xml, application/xml");
|
|
|
|
|
|
|
|
QHttpPart part;
|
|
|
|
part.setRawHeader("Content-Disposition", "form-data; name=\"user\"");
|
|
|
|
part.setBody(ui.userID->text().toUtf8());
|
|
|
|
multipart->append(part);
|
|
|
|
|
|
|
|
part.setRawHeader("Content-Disposition", "form-data; name=\"pass\"");
|
|
|
|
part.setBody(ui.password->text().toUtf8());
|
|
|
|
multipart->append(part);
|
|
|
|
|
|
|
|
reply = manager()->post(request, multipart);
|
|
|
|
connect(reply, SIGNAL(finished()), this, SLOT(uploadFinished()));
|
|
|
|
connect(reply, SIGNAL(error(QNetworkReply::NetworkError)), this,
|
|
|
|
SLOT(uploadError(QNetworkReply::NetworkError)));
|
|
|
|
connect(reply, SIGNAL(uploadProgress(qint64,qint64)), this,
|
|
|
|
SLOT(updateProgress(qint64,qint64)));
|
|
|
|
|
|
|
|
timeout.start(30000); // 30s
|
2013-10-25 00:52:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DivelogsDeWebServices::startDownload()
|
|
|
|
{
|
2013-11-15 02:57:09 +00:00
|
|
|
ui.status->setText(tr("Downloading dive list..."));
|
|
|
|
ui.progressBar->setRange(0,0); // this makes the progressbar do an 'infinite spin'
|
|
|
|
ui.download->setEnabled(false);
|
|
|
|
ui.userID->setEnabled(false);
|
|
|
|
ui.password->setEnabled(false);
|
|
|
|
|
|
|
|
QNetworkRequest request;
|
|
|
|
request.setUrl(QUrl("https://divelogs.de/xml_available_dives.php"));
|
|
|
|
request.setRawHeader("Accept", "text/xml, application/xml");
|
|
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/x-www-form-urlencoded");
|
|
|
|
|
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5,0,0)
|
|
|
|
QUrl body;
|
|
|
|
body.addQueryItem("user", ui.userID->text());
|
|
|
|
body.addQueryItem("pass", ui.password->text());
|
|
|
|
|
|
|
|
reply = manager()->post(request, body.encodedQuery());
|
|
|
|
#else
|
|
|
|
QUrlQuery body;
|
|
|
|
body.addQueryItem("user", ui.userID->text());
|
|
|
|
body.addQueryItem("pass", ui.password->text());
|
|
|
|
|
|
|
|
reply = manager()->post(request, body.query(QUrl::FullyEncoded).toLatin1())
|
|
|
|
#endif
|
|
|
|
connect(reply, SIGNAL(finished()), this, SLOT(listDownloadFinished()));
|
|
|
|
connect(reply, SIGNAL(error(QNetworkReply::NetworkError)),
|
|
|
|
this, SLOT(downloadError(QNetworkReply::NetworkError)));
|
|
|
|
|
|
|
|
timeout.start(30000); // 30s
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivelogsDeWebServices::listDownloadFinished()
|
|
|
|
{
|
|
|
|
if (!reply)
|
|
|
|
return;
|
|
|
|
QByteArray xmlData = reply->readAll();
|
|
|
|
reply->deleteLater();
|
|
|
|
reply = NULL;
|
|
|
|
|
|
|
|
// parse the XML data we downloaded
|
|
|
|
DiveListResult diveList = parseDiveLogsDeDiveList(xmlData);
|
|
|
|
if (!diveList.errorCondition.isEmpty()) {
|
|
|
|
// error condition
|
|
|
|
resetState();
|
|
|
|
ui.status->setText(diveList.errorCondition);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ui.status->setText(tr("Downloading %1 dives...").arg(diveList.idCount));
|
|
|
|
|
|
|
|
QNetworkRequest request;
|
|
|
|
// request.setUrl(QUrl("https://divelogs.de/DivelogsDirectExport.php"));
|
|
|
|
request.setUrl(QUrl("http://divelogs.de/DivelogsDirectExport.php"));
|
|
|
|
request.setRawHeader("Accept", "application/zip, */*");
|
|
|
|
request.setHeader(QNetworkRequest::ContentTypeHeader, "application/x-www-form-urlencoded");
|
|
|
|
|
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5,0,0)
|
|
|
|
QUrl body;
|
|
|
|
body.addQueryItem("user", ui.userID->text());
|
|
|
|
body.addQueryItem("pass", ui.password->text());
|
|
|
|
body.addQueryItem("ids", diveList.idList);
|
|
|
|
|
|
|
|
reply = manager()->post(request, body.encodedQuery());
|
|
|
|
#else
|
|
|
|
QUrlQuery body;
|
|
|
|
body.addQueryItem("user", ui.userID->text());
|
|
|
|
body.addQueryItem("pass", ui.password->text());
|
|
|
|
body.addQueryItem("ids", diveList.idList);
|
|
|
|
|
|
|
|
reply = manager()->post(request, body.query(QUrl::FullyEncoded).toLatin1())
|
|
|
|
#endif
|
|
|
|
|
|
|
|
connect(reply, SIGNAL(readyRead()), this, SLOT(saveToZipFile()));
|
|
|
|
connectSignalsForDownload(reply);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivelogsDeWebServices::saveToZipFile()
|
|
|
|
{
|
|
|
|
if (!zipFile.isOpen()) {
|
|
|
|
zipFile.setFileTemplate(QDir::tempPath() + "/import-XXXXXX.dld");
|
|
|
|
zipFile.open();
|
|
|
|
}
|
2013-10-25 00:52:11 +00:00
|
|
|
|
2013-11-15 02:57:09 +00:00
|
|
|
zipFile.write(reply->readAll());
|
2013-10-25 00:52:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DivelogsDeWebServices::downloadFinished()
|
|
|
|
{
|
2013-11-15 02:57:09 +00:00
|
|
|
if (!reply)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ui.download->setEnabled(true);
|
|
|
|
ui.status->setText(tr("Download finished - %1").arg(reply->attribute(QNetworkRequest::HttpReasonPhraseAttribute).toString()));
|
|
|
|
reply->deleteLater();
|
|
|
|
reply = NULL;
|
|
|
|
|
|
|
|
int errorcode;
|
|
|
|
zipFile.seek(0);
|
|
|
|
#ifdef Q_OS_UNIX
|
|
|
|
int duppedfd = dup(zipFile.handle());
|
|
|
|
struct zip *zip = zip_fdopen(duppedfd, 0, &errorcode);
|
|
|
|
if (!zip)
|
|
|
|
::close(duppedfd);
|
|
|
|
#else
|
|
|
|
struct zip *zip = zip_open(zipFile.fileName(), 0, &errorcode);
|
|
|
|
#endif
|
|
|
|
if (!zip) {
|
|
|
|
char buf[512];
|
|
|
|
zip_error_to_str(buf, sizeof(buf), errorcode, errno);
|
|
|
|
QMessageBox::critical(this, tr("Corrupted download"),
|
|
|
|
tr("The archive could not be opened:\n%1").arg(QString::fromLocal8Bit(buf)));
|
|
|
|
zipFile.close();
|
|
|
|
return;
|
|
|
|
}
|
2013-10-25 00:52:11 +00:00
|
|
|
|
2013-11-15 02:57:09 +00:00
|
|
|
quint64 entries = zip_get_num_entries(zip, 0);
|
|
|
|
for (quint64 i = 0; i < entries; ++i) {
|
|
|
|
struct zip_file *zip_file = zip_fopen_index(zip, i, 0);
|
|
|
|
if (!zip_file) {
|
|
|
|
QMessageBox::critical(this, tr("Corrupted download"),
|
|
|
|
tr("The archive contains corrupt data:\n%1").arg(QString::fromLocal8Bit(zip_strerror(zip))));
|
|
|
|
goto close_zip;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ### FIXME: What do I do with this?
|
|
|
|
|
|
|
|
zip_fclose(zip_file);
|
|
|
|
}
|
|
|
|
|
|
|
|
close_zip:
|
|
|
|
zip_close(zip);
|
|
|
|
zipFile.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DivelogsDeWebServices::uploadFinished()
|
|
|
|
{
|
|
|
|
if (!reply)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ui.progressBar->setRange(0,1);
|
|
|
|
ui.upload->setEnabled(true);
|
|
|
|
ui.status->setText(tr("Upload finished"));
|
|
|
|
|
|
|
|
// check what the server sent us: it might contain
|
|
|
|
// an error condition, such as a failed login
|
|
|
|
QByteArray xmlData = reply->readAll();
|
|
|
|
|
|
|
|
// ### FIXME: what's the format?
|
2013-10-25 00:52:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DivelogsDeWebServices::setStatusText(int status)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-11-15 02:57:09 +00:00
|
|
|
void DivelogsDeWebServices::downloadError(QNetworkReply::NetworkError)
|
2013-10-25 00:52:11 +00:00
|
|
|
{
|
2013-11-15 02:57:09 +00:00
|
|
|
resetState();
|
|
|
|
ui.status->setText(tr("Download error: %1").arg(reply->errorString()));
|
|
|
|
reply->deleteLater();
|
|
|
|
reply = NULL;
|
|
|
|
}
|
2013-10-25 00:52:11 +00:00
|
|
|
|
2013-11-15 02:57:09 +00:00
|
|
|
void DivelogsDeWebServices::uploadError(QNetworkReply::NetworkError error)
|
|
|
|
{
|
|
|
|
downloadError(error);
|
2013-10-25 00:52:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DivelogsDeWebServices::buttonClicked(QAbstractButton* button)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2013-11-15 02:57:09 +00:00
|
|
|
|