mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-13 16:18:42 +00:00
94 lines
2.8 KiB
C++
94 lines
2.8 KiB
C++
/*
|
|
* Copyright (c) 2016 Damien.Grauser (damien.grauser@pev-geneve.ch)
|
|
*
|
|
* 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 GC_TodaysPlan_h
|
|
#define GC_TodaysPlan_h
|
|
|
|
#include "CloudService.h"
|
|
#include <QNetworkAccessManager>
|
|
#include <QNetworkRequest>
|
|
#include <QImage>
|
|
|
|
class TodaysPlan : public CloudService {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
TodaysPlan(Context *context);
|
|
CloudService *clone(Context *context) { return new TodaysPlan(context); }
|
|
~TodaysPlan();
|
|
|
|
QString id() const { return "Today's Plan"; }
|
|
QString uiName() const { return tr("Today's Plan"); }
|
|
QString description() const { return (tr("Sync with the smarter training site.")); }
|
|
QImage logo() const { return QImage(":images/services/todaysplan.png"); }
|
|
|
|
// open/connect and close/disconnect
|
|
bool open(QStringList &errors);
|
|
bool close();
|
|
|
|
// home directory
|
|
QString home();
|
|
|
|
// write a file
|
|
bool writeFile(QByteArray &data, QString remotename, RideFile *ride);
|
|
|
|
// read a file
|
|
bool readFile(QByteArray *data, QString remotename, QString remoteid);
|
|
|
|
// todays plan needs the response to be adjusted before being returned
|
|
QByteArray* prepareResponse(QByteArray* data, QString &name);
|
|
|
|
// create a folder
|
|
bool createFolder(QString);
|
|
|
|
// athlete selection
|
|
QList<CloudServiceAthlete> listAthletes();
|
|
bool selectAthlete(CloudServiceAthlete);
|
|
|
|
// dirent style api
|
|
CloudServiceEntry *root() { return root_; }
|
|
QList<CloudServiceEntry*> readdir(QString path, QStringList &errors, QDateTime from, QDateTime to);
|
|
|
|
public slots:
|
|
|
|
// getting data
|
|
void readyRead(); // a readFile operation has work to do
|
|
void readFileCompleted();
|
|
|
|
// sending data
|
|
void writeFileCompleted();
|
|
|
|
private:
|
|
Context *context;
|
|
QNetworkAccessManager *nam;
|
|
CloudServiceEntry *root_;
|
|
|
|
QMap<QNetworkReply*, QByteArray*> buffers;
|
|
|
|
QString userId;
|
|
|
|
QMap<QString, QJsonObject> replyActivity;
|
|
|
|
|
|
private slots:
|
|
void onSslErrors(QNetworkReply *reply, const QList<QSslError>&error);
|
|
};
|
|
#endif
|