1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2024-05-09 23:52:43 +00:00
harbour-sailfin/core/src/websocket.cpp

169 lines
6.8 KiB
C++
Raw Normal View History

2020-10-02 10:20:54 +00:00
/*
Sailfin: a Jellyfin client written using Qt
Copyright (C) 2021 Chris Josten
2020-10-02 10:20:54 +00:00
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "JellyfinQt/websocket.h"
2021-05-21 13:46:30 +00:00
#include <JellyfinQt/dto/generalcommand.h>
#include <JellyfinQt/dto/generalcommandtype.h>
#include <JellyfinQt/dto/playstaterequest.h>
#include <JellyfinQt/dto/useritemdatadto.h>
2020-10-02 10:20:54 +00:00
Q_LOGGING_CATEGORY(jellyfinWebSocket, "jellyfin.websocket");
2020-10-02 10:20:54 +00:00
namespace Jellyfin {
2020-10-02 10:20:54 +00:00
WebSocket::WebSocket(ApiClient *client)
: QObject (client), m_apiClient(client){
connect(&m_webSocket, &QWebSocket::connected, this, &WebSocket::onConnected);
connect(&m_webSocket, &QWebSocket::disconnected, this, &WebSocket::onDisconnected);
2020-10-02 10:20:54 +00:00
connect(&m_webSocket, static_cast<void (QWebSocket::*)(QAbstractSocket::SocketError)>(&QWebSocket::error),
this, [this](QAbstractSocket::SocketError error) {
Q_UNUSED(error)
qCDebug(jellyfinWebSocket) << "Connection error: " << m_webSocket.errorString();
2020-10-02 10:20:54 +00:00
});
connect(&m_webSocket, &QWebSocket::stateChanged, this, &WebSocket::onWebsocketStateChanged);
connect(&m_keepAliveTimer, &QTimer::timeout, this, &WebSocket::sendKeepAlive);
connect(&m_retryTimer, &QTimer::timeout, this, &WebSocket::open);
connect(client, &ApiClient::authenticatedChanged, this, [this](bool isAuthenticated) {
if (isAuthenticated) {
this->m_reconnectAttempt = 0;
this->open();
}
});
2020-10-02 10:20:54 +00:00
}
void WebSocket::open() {
QUrlQuery query;
query.addQueryItem("api_key", m_apiClient->token());
query.addQueryItem("deviceId", m_apiClient->deviceId());
2020-10-02 10:20:54 +00:00
QUrl connectionUrl(m_apiClient->baseUrl());
connectionUrl.setScheme(connectionUrl.scheme() == "http" ? "ws" : "wss");
connectionUrl.setPath("/socket");
connectionUrl.setQuery(query);
m_webSocket.open(connectionUrl);
m_reconnectAttempt++;
qCDebug(jellyfinWebSocket) << "Opening WebSocket connection to " << m_webSocket.requestUrl() << ", connect attempt " << m_reconnectAttempt;
2020-10-02 10:20:54 +00:00
}
void WebSocket::onConnected() {
connect(&m_webSocket, &QWebSocket::textMessageReceived, this, &WebSocket::textMessageReceived);
m_reconnectAttempt = 0;
2020-10-02 10:20:54 +00:00
}
void WebSocket::onDisconnected() {
disconnect(&m_webSocket, &QWebSocket::textMessageReceived, this, &WebSocket::textMessageReceived);
m_keepAliveTimer.stop();
if (m_reconnectAttempt <= 3) {
// 500, 2500, 12500
m_retryTimer.setInterval(100 * static_cast<int>(std::pow(5., m_reconnectAttempt)));
}
}
2020-10-02 10:20:54 +00:00
void WebSocket::textMessageReceived(const QString &message) {
qCDebug(jellyfinWebSocket) << "message received: " << message;
2020-10-02 10:20:54 +00:00
QJsonDocument doc = QJsonDocument::fromJson(message.toUtf8());
if (doc.isNull() || !doc.isObject()) {
qCWarning(jellyfinWebSocket()) << "Malformed message received over WebSocket: parse error or root not an object.";
2020-10-02 10:20:54 +00:00
return;
}
QJsonObject messageRoot = doc.object();
2021-05-21 13:46:30 +00:00
if (!messageRoot.contains("MessageType")) {
qCWarning(jellyfinWebSocket) << "Malformed message received over WebSocket: no MessageType set.";
2020-10-02 10:20:54 +00:00
return;
}
// Convert the type so we can use it in our enums.
QString messageType = messageRoot["MessageType"].toString();
2021-05-21 13:46:30 +00:00
QJsonValue data = messageRoot["Data"];
if (messageType == QStringLiteral("ForceKeepAlive")) {
2021-05-21 13:46:30 +00:00
setupKeepAlive(data.toInt());
} else if (messageType == QStringLiteral("GeneralCommand")) {
try {
DTO::GeneralCommand command = DTO::GeneralCommand::fromJson(data.toObject());
// TODO: move command handling out of here
switch(command.name()) {
case DTO::GeneralCommandType::DisplayMessage:
{
QString header = command.arguments()["Header"].toString("Message from server");
QString text = command.arguments()["Text"].toString("<Empty message>");
int timeout = command.arguments()["TimeoutMs"].toInt(-1);
emit m_apiClient->eventbus()->displayMessage(header, text, timeout);
}
break;
default:
qCDebug(jellyfinWebSocket) << "Unhandled command: " << data;
break;
}
} catch(QException &e) {
qCWarning(jellyfinWebSocket()) << "Error while deserializing command: " << e.what();
}
} else if (messageType == QStringLiteral("Playstate")) {
try {
DTO::PlaystateRequest request = PlaystateRequest::fromJson(data.toObject());
emit m_apiClient->eventbus()->playstateCommandReceived(request);
} catch (QException &e) {
qCWarning(jellyfinWebSocket) << "Error while deserialzing PlaystateRequest " << e.what();
}
} else if(messageType == QStringLiteral("UserDataChanged")) {
QString userId = data.toObject()["UserId"].toString();
if (userId != m_apiClient->userId()) {
qCDebug(jellyfinWebSocket) << "Received UserDataCHanged for other user";
} else {
try {
QList<DTO::UserItemDataDto> userDataList = Support::fromJsonValue<QList<DTO::UserItemDataDto>>(data.toObject()["UserDataList"]);
for (auto it = userDataList.cbegin(); it != userDataList.cend(); it++) {
emit m_apiClient->eventbus()->itemUserDataUpdated(it->itemId(), *it);
}
} catch (QException *e) {
qCWarning(jellyfinWebSocket) << "Unparseable UserData list received: " << e->what();
}
}
2021-05-21 13:46:30 +00:00
} else {
qCDebug(jellyfinWebSocket) << messageType;
2021-05-21 13:46:30 +00:00
}
2020-10-02 10:20:54 +00:00
}
void WebSocket::sendKeepAlive() {
sendMessage(KeepAlive);
}
void WebSocket::setupKeepAlive(int data) {
// Data is timeout in seconds, we want to send a keepalive at half the timeout
m_keepAliveTimer.setInterval(data * 500);
m_keepAliveTimer.setSingleShot(false);
m_keepAliveTimer.start();
sendKeepAlive();
}
QString WebSocket::generateMessageId() {
return QUuid::createUuid().toString();
}
void WebSocket::sendMessage(MessageType type, QJsonValue data) {
QJsonObject root;
root["MessageType"] = QVariant::fromValue(type).toString();
root["Data"] = data;
QString message = QJsonDocument(root).toJson(QJsonDocument::Compact);
m_webSocket.sendTextMessage(message);
qCDebug(jellyfinWebSocket) << "Sent message: " << message;
2020-10-02 10:20:54 +00:00
}
}