2017-04-06 02:06:42 +03:00
|
|
|
/*
|
|
|
|
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
|
|
|
|
*
|
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-05-16 21:46:45 +03:00
|
|
|
#pragma once
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-12-01 18:33:49 +03:00
|
|
|
#include <QFileInfo>
|
2017-10-28 15:46:39 +03:00
|
|
|
#include <QNetworkAccessManager>
|
2017-10-28 21:24:42 +03:00
|
|
|
#include <QUrl>
|
2017-12-04 19:41:19 +03:00
|
|
|
#include <mtx.hpp>
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* MatrixClient provides the high level API to communicate with
|
|
|
|
* a Matrix homeserver. All the responses are returned through signals.
|
|
|
|
*/
|
|
|
|
class MatrixClient : public QNetworkAccessManager
|
|
|
|
{
|
2017-09-03 11:43:45 +03:00
|
|
|
Q_OBJECT
|
2017-04-06 02:06:42 +03:00
|
|
|
public:
|
2017-09-03 11:43:45 +03:00
|
|
|
MatrixClient(QString server, QObject *parent = 0);
|
|
|
|
|
|
|
|
// Client API.
|
|
|
|
void initialSync() noexcept;
|
|
|
|
void sync() noexcept;
|
2017-12-04 19:41:19 +03:00
|
|
|
void sendRoomMessage(mtx::events::MessageType ty,
|
2017-11-15 19:38:50 +03:00
|
|
|
int txnId,
|
2017-09-03 11:43:45 +03:00
|
|
|
const QString &roomid,
|
2017-09-10 12:58:00 +03:00
|
|
|
const QString &msg,
|
2017-12-01 18:33:49 +03:00
|
|
|
const QFileInfo &info,
|
2017-09-10 12:58:00 +03:00
|
|
|
const QString &url = "") noexcept;
|
2017-09-03 11:43:45 +03:00
|
|
|
void login(const QString &username, const QString &password) noexcept;
|
|
|
|
void registerUser(const QString &username,
|
|
|
|
const QString &password,
|
|
|
|
const QString &server) noexcept;
|
|
|
|
void versions() noexcept;
|
|
|
|
void fetchRoomAvatar(const QString &roomid, const QUrl &avatar_url);
|
|
|
|
void fetchUserAvatar(const QString &userId, const QUrl &avatarUrl);
|
|
|
|
void fetchOwnAvatar(const QUrl &avatar_url);
|
|
|
|
void downloadImage(const QString &event_id, const QUrl &url);
|
2017-11-28 03:01:37 +03:00
|
|
|
void downloadFile(const QString &event_id, const QUrl &url);
|
2017-10-05 18:13:11 +03:00
|
|
|
void messages(const QString &room_id, const QString &from_token, int limit = 30) noexcept;
|
2017-09-10 12:58:00 +03:00
|
|
|
void uploadImage(const QString &roomid, const QString &filename);
|
2017-11-30 00:39:35 +03:00
|
|
|
void uploadFile(const QString &roomid, const QString &filename);
|
2017-12-01 18:33:49 +03:00
|
|
|
void uploadAudio(const QString &roomid, const QString &filename);
|
2017-10-01 19:49:36 +03:00
|
|
|
void joinRoom(const QString &roomIdOrAlias);
|
|
|
|
void leaveRoom(const QString &roomId);
|
2017-10-31 21:11:49 +03:00
|
|
|
void sendTypingNotification(const QString &roomid, int timeoutInMillis = 20000);
|
|
|
|
void removeTypingNotification(const QString &roomid);
|
2017-11-24 01:10:58 +03:00
|
|
|
void readEvent(const QString &room_id, const QString &event_id);
|
2017-09-03 11:43:45 +03:00
|
|
|
|
2017-10-22 19:03:55 +03:00
|
|
|
QUrl getHomeServer() { return server_; };
|
|
|
|
int transactionId() { return txn_id_; };
|
2017-11-15 19:42:21 +03:00
|
|
|
int incrementTransactionId() { return ++txn_id_; };
|
2017-09-03 11:43:45 +03:00
|
|
|
|
|
|
|
void reset() noexcept;
|
2017-04-09 02:17:04 +03:00
|
|
|
|
2017-04-06 02:06:42 +03:00
|
|
|
public slots:
|
2017-09-03 11:43:45 +03:00
|
|
|
void getOwnProfile() noexcept;
|
|
|
|
void logout() noexcept;
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-10-22 19:03:55 +03:00
|
|
|
void setServer(const QString &server)
|
|
|
|
{
|
|
|
|
server_ = QUrl(QString("https://%1").arg(server));
|
|
|
|
};
|
|
|
|
void setAccessToken(const QString &token) { token_ = token; };
|
|
|
|
void setNextBatchToken(const QString &next_batch) { next_batch_ = next_batch; };
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
signals:
|
2017-09-03 11:43:45 +03:00
|
|
|
void loginError(const QString &error);
|
|
|
|
void registerError(const QString &error);
|
|
|
|
void versionError(const QString &error);
|
|
|
|
|
|
|
|
void loggedOut();
|
|
|
|
|
|
|
|
void loginSuccess(const QString &userid, const QString &homeserver, const QString &token);
|
|
|
|
void registerSuccess(const QString &userid,
|
|
|
|
const QString &homeserver,
|
|
|
|
const QString &token);
|
|
|
|
void versionSuccess();
|
2017-09-10 12:58:00 +03:00
|
|
|
void imageUploaded(const QString &roomid, const QString &filename, const QString &url);
|
2017-11-30 00:39:35 +03:00
|
|
|
void fileUploaded(const QString &roomid, const QString &filename, const QString &url);
|
2017-12-01 18:33:49 +03:00
|
|
|
void audioUploaded(const QString &roomid, const QString &filename, const QString &url);
|
2017-09-03 11:43:45 +03:00
|
|
|
|
|
|
|
void roomAvatarRetrieved(const QString &roomid, const QPixmap &img);
|
|
|
|
void userAvatarRetrieved(const QString &userId, const QImage &img);
|
|
|
|
void ownAvatarRetrieved(const QPixmap &img);
|
|
|
|
void imageDownloaded(const QString &event_id, const QPixmap &img);
|
2017-11-28 03:01:37 +03:00
|
|
|
void fileDownloaded(const QString &event_id, const QByteArray &data);
|
2017-09-03 11:43:45 +03:00
|
|
|
|
|
|
|
// Returned profile data for the user's account.
|
|
|
|
void getOwnProfileResponse(const QUrl &avatar_url, const QString &display_name);
|
2017-12-04 19:41:19 +03:00
|
|
|
void initialSyncCompleted(const mtx::responses::Sync &response);
|
2017-10-20 22:32:48 +03:00
|
|
|
void initialSyncFailed(const QString &msg);
|
2017-12-04 19:41:19 +03:00
|
|
|
void syncCompleted(const mtx::responses::Sync &response);
|
2017-09-03 11:43:45 +03:00
|
|
|
void syncFailed(const QString &msg);
|
2017-10-08 22:38:38 +03:00
|
|
|
void joinFailed(const QString &msg);
|
2017-09-03 11:43:45 +03:00
|
|
|
void messageSent(const QString &event_id, const QString &roomid, const int txn_id);
|
2017-11-15 19:38:50 +03:00
|
|
|
void messageSendFailed(const QString &roomid, const int txn_id);
|
2017-09-03 11:43:45 +03:00
|
|
|
void emoteSent(const QString &event_id, const QString &roomid, const int txn_id);
|
2017-12-04 19:41:19 +03:00
|
|
|
void messagesRetrieved(const QString &room_id, const mtx::responses::Messages &msgs);
|
2017-10-01 19:49:36 +03:00
|
|
|
void joinedRoom(const QString &room_id);
|
|
|
|
void leftRoom(const QString &room_id);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
2017-12-01 18:33:49 +03:00
|
|
|
QNetworkReply *makeUploadRequest(const QString &filename);
|
|
|
|
|
2017-09-03 11:43:45 +03:00
|
|
|
// Client API prefix.
|
2017-09-10 12:58:00 +03:00
|
|
|
QString clientApiUrl_;
|
|
|
|
|
|
|
|
// Media API prefix.
|
|
|
|
QString mediaApiUrl_;
|
2017-09-03 11:43:45 +03:00
|
|
|
|
|
|
|
// The Matrix server used for communication.
|
|
|
|
QUrl server_;
|
|
|
|
|
|
|
|
// The access token used for authentication.
|
|
|
|
QString token_;
|
|
|
|
|
|
|
|
// Increasing transaction ID.
|
|
|
|
int txn_id_;
|
|
|
|
|
|
|
|
// Token to be used for the next sync.
|
|
|
|
QString next_batch_;
|
2017-04-06 02:06:42 +03:00
|
|
|
};
|