nextcloud-desktop/src/libsync/connectionvalidator.h

78 lines
1.8 KiB
C
Raw Normal View History

2013-05-04 18:01:45 +04:00
/*
* Copyright (C) by Klaas Freitag <freitag@owncloud.com>
*
* 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; version 2 of the License.
*
* 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.
*/
#ifndef CONNECTIONVALIDATOR_H
#define CONNECTIONVALIDATOR_H
#include "owncloudlib.h"
2013-05-04 18:01:45 +04:00
#include <QObject>
#include <QStringList>
2013-10-23 16:48:44 +04:00
#include <QVariantMap>
#include <QNetworkReply>
2013-05-04 18:01:45 +04:00
2014-11-10 00:34:07 +03:00
namespace OCC {
2013-05-04 18:01:45 +04:00
2013-10-23 16:48:44 +04:00
class Account;
class OWNCLOUDSYNC_EXPORT ConnectionValidator : public QObject
2013-05-04 18:01:45 +04:00
{
Q_OBJECT
public:
2013-10-23 16:48:44 +04:00
explicit ConnectionValidator(Account *account, QObject *parent = 0);
2013-05-04 18:01:45 +04:00
enum Status {
Undefined,
Connected,
NotConfigured,
ServerVersionMismatch,
CredentialsTooManyAttempts,
CredentialError,
CredentialsUserCanceled,
CredentialsWrong,
StatusNotFound
};
QStringList errors() const;
bool networkError() const;
2013-05-04 18:01:45 +04:00
void checkConnection();
QString statusString( Status ) const;
2013-05-04 18:01:45 +04:00
signals:
void connectionResult( ConnectionValidator::Status );
// void connectionAvailable();
// void connectionFailed();
2013-05-04 18:01:45 +04:00
public slots:
protected slots:
void slotStatusFound(const QUrl&url, const QVariantMap &info);
void slotNoStatusFound(QNetworkReply *reply);
void slotStatusTimeout(const QUrl& url);
2013-05-04 18:01:45 +04:00
void slotCheckAuthentication();
void slotAuthFailed(QNetworkReply *reply);
2013-10-23 16:48:44 +04:00
void slotAuthSuccess();
2013-05-04 18:01:45 +04:00
private:
QStringList _errors;
2013-10-23 16:48:44 +04:00
Account *_account;
bool _networkError;
2013-05-04 18:01:45 +04:00
};
}
#endif // CONNECTIONVALIDATOR_H