mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 08:08:42 +00:00
83 lines
2.0 KiB
C++
83 lines
2.0 KiB
C++
/*
|
|
* Copyright (c) 2012 Rainer Clasen <bj@zuto.de>
|
|
* Copyright (c) 2014 Nils Knieling copied from TtbDialog.h
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
* Software Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc., 51
|
|
* Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef VELOHEROUPLOADER_H
|
|
#define VELOHEROUPLOADER_H
|
|
#include "GoldenCheetah.h"
|
|
|
|
#include <QObject>
|
|
#include <QtGui>
|
|
#include <QDialog>
|
|
#include <QLabel>
|
|
#include <QUrl>
|
|
#include <QHttpMultiPart>
|
|
#include <QXmlInputSource>
|
|
#include <QXmlSimpleReader>
|
|
#include <QXmlDefaultHandler>
|
|
#include <QNetworkReply>
|
|
|
|
// QUrl split into QUrlQuerty in QT5
|
|
#if QT_VERSION > 0x050000
|
|
#include <QUrlQuery>
|
|
#endif
|
|
|
|
#include "Context.h"
|
|
#include "RideItem.h"
|
|
#include "ShareDialog.h"
|
|
|
|
class VeloHeroUploader : public ShareDialogUploader
|
|
{
|
|
Q_OBJECT
|
|
G_OBJECT
|
|
|
|
public:
|
|
VeloHeroUploader(Context *context, RideItem *item, ShareDialog *parent = 0);
|
|
|
|
virtual void upload();
|
|
|
|
virtual bool canUpload( QString &err );
|
|
virtual bool wasUploaded();
|
|
|
|
private slots:
|
|
void dispatchReply( QNetworkReply *reply );
|
|
|
|
void requestSession();
|
|
void finishSession(QNetworkReply *reply);
|
|
|
|
void requestUpload();
|
|
void finishUpload(QNetworkReply *reply);
|
|
|
|
private:
|
|
enum requestType {
|
|
reqSession,
|
|
reqUpload,
|
|
};
|
|
|
|
QEventLoop eventLoop;
|
|
QNetworkAccessManager networkMgr;
|
|
requestType currentRequest;
|
|
|
|
QString sessionId;
|
|
QString exerciseId;
|
|
bool uploadSuccessful;
|
|
|
|
};
|
|
|
|
#endif // VELOHEROUPLOADER_H
|