/* * Copyright (c) 2012 Rainer Clasen * 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 #include #include #include #include #include #include #include #include #include // QUrl split into QUrlQuerty in QT5 #if QT_VERSION > 0x050000 #include #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