mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-18 20:02:17 +03:00
565a5f0999
ran run-clang-tidy-14.py -header-filter='.*' -checks='-*,modernize-use-nodiscard' -fix under linux with most part of our code covered Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
70 lines
2.1 KiB
C++
70 lines
2.1 KiB
C++
/*
|
|
* Copyright (C) 2022 by Claudio Cambra <claudio.cambra@nextcloud.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; 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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QObject>
|
|
#include <QTimer>
|
|
|
|
#include "networkjobs.h"
|
|
#include "accountstate.h"
|
|
|
|
namespace OCC {
|
|
|
|
class CallStateChecker : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_PROPERTY(QString token READ token WRITE setToken NOTIFY tokenChanged)
|
|
Q_PROPERTY(AccountState* accountState READ accountState WRITE setAccountState NOTIFY accountStateChanged)
|
|
Q_PROPERTY(bool checking READ checking WRITE setChecking NOTIFY checkingChanged)
|
|
|
|
public:
|
|
explicit CallStateChecker(QObject *parent = nullptr);
|
|
|
|
[[nodiscard]] QString token() const;
|
|
[[nodiscard]] AccountState* accountState() const;
|
|
[[nodiscard]] bool checking() const;
|
|
|
|
signals:
|
|
void tokenChanged();
|
|
void accountStateChanged();
|
|
void checkingChanged();
|
|
|
|
void stopNotifying();
|
|
|
|
public slots:
|
|
void setToken(const QString &token);
|
|
void setAccountState(OCC::AccountState *accountState);
|
|
void setChecking(const bool checking);
|
|
|
|
private slots:
|
|
void slotStatusCheckTimerElapsed();
|
|
void slotNotificationTimerElapsed();
|
|
void slotCallStateReceived(const QJsonDocument &json, const int statusCode);
|
|
void reset();
|
|
|
|
private:
|
|
void setup();
|
|
void startCallStateCheck();
|
|
[[nodiscard]] bool isAccountServerVersion22OrLater() const;
|
|
|
|
AccountState *_accountState = nullptr;
|
|
QString _token;
|
|
QTimer _statusCheckTimer; // How often we check the status of the call
|
|
QTimer _notificationTimer; // How long we present the call notification for
|
|
QPointer<JsonApiJob> _stateCheckJob;
|
|
bool _checking = false;
|
|
};
|
|
|
|
}
|