aboutsummaryrefslogtreecommitdiffstats
path: root/HomeScreen/src2/usermanagement.cpp
blob: f97300135ee6d5e9fc7cc0d5db149b62d626bdb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include "usermanagement.h"
#include <QApplication>
#include <QDebug>
UserManagement::UserManagement(QObject *home, QObject *shortcutArea, QObject *statusArea) : QObject()
{
    this->home = home;
    this->appModel = home->findChild<ApplicationModel *>("ApplicationModel");
    this->shortcutArea = shortcutArea;
    this->statusArea = statusArea;
    this->currentLanguage = "en";
    connect(&timerTest, SIGNAL(timeout()), this, SLOT(slot_timerTest()));
    timerTest.setSingleShot(false);
    timerTest.start(5000);
    connectWebsockets(QStringLiteral("wss://echo.websocket.org"));
}
void UserManagement::slot_timerTest()
{
    if(currentLanguage == "fr")
        currentLanguage = "en";
    else
        currentLanguage = "fr";
    appModel->changeLanguage(currentLanguage);
    QMetaObject::invokeMethod(home, "languageChanged");
    QMetaObject::invokeMethod(shortcutArea, "languageChanged", Q_ARG(QVariant, currentLanguage));
    QMetaObject::invokeMethod(statusArea, "languageChanged", Q_ARG(QVariant, currentLanguage));
    if(currentLanguage == "fr") {
        QLocale::setDefault(QLocale("fr_FR"));
        QMetaObject::invokeMethod(home, "showSign90", Q_ARG(QVariant, true));
        QMetaObject::invokeMethod(home, "showVisa", Q_ARG(QVariant, false));
        QMetaObject::invokeMethod(home, "showHello", Q_ARG(QVariant, "Bonjour José!"));
    } else {
        QLocale::setDefault(QLocale("en_US"));
        QMetaObject::invokeMethod(home, "showSign90", Q_ARG(QVariant, false));
        QMetaObject::invokeMethod(home, "showVisa", Q_ARG(QVariant, true));
        QMetaObject::invokeMethod(home, "showHello", Q_ARG(QVariant, "Hello José!"));
    }
}
void UserManagement::connectWebsockets(const QUrl &url)
{
    QSslConfiguration config = QSslConfiguration::defaultConfiguration();
    config.setProtocol(QSsl::SecureProtocols);
    webSocket.setSslConfiguration(config);
    connect(&webSocket, &QWebSocket::connected, this, &UserManagement::onConnected);
    connect(&webSocket, &QWebSocket::disconnected, this, &UserManagement::onClosed);
    webSocket.open(QUrl(url));
}
void UserManagement::onConnected()
{
    connect(&webSocket, &QWebSocket::textMessageReceived,
            this, &UserManagement::onTextMessageReceived);
    webSocket.sendTextMessage(QStringLiteral("Hello, world!"));

}
void UserManagement::onTextMessageReceived(QString message)
{
    qWarning()<<"message received:"<<message;
}

void UserManagement::onClosed()
{
    qWarning()<<"webSocket closed";
}