matrixion/src/CallManager.h

91 lines
3.4 KiB
C
Raw Normal View History

2020-07-11 02:19:48 +03:00
#pragma once
#include <string>
#include <vector>
#include <QMediaPlayer>
2020-08-01 21:31:10 +03:00
#include <QObject>
2020-07-11 02:19:48 +03:00
#include <QString>
#include <QTimer>
#include "WebRTCSession.h"
2020-07-11 02:19:48 +03:00
#include "mtx/events/collections.hpp"
#include "mtx/events/voip.hpp"
2020-07-26 17:59:50 +03:00
namespace mtx::responses {
struct TurnServer;
}
2020-07-11 02:19:48 +03:00
class QUrl;
2020-07-11 02:19:48 +03:00
class CallManager : public QObject
{
Q_OBJECT
Q_PROPERTY(bool isOnCall READ isOnCall NOTIFY newCallState)
Q_PROPERTY(bool isOnVideoCall READ isOnVideoCall NOTIFY newVideoCallState)
Q_PROPERTY(webrtc::State callState READ callState NOTIFY newCallState)
Q_PROPERTY(QString callPartyName READ callPartyName NOTIFY newCallParty)
Q_PROPERTY(QString callPartyAvatarUrl READ callPartyAvatarUrl NOTIFY newCallParty)
Q_PROPERTY(bool isMicMuted READ isMicMuted NOTIFY micMuteChanged)
Q_PROPERTY(bool callsSupported READ callsSupported CONSTANT)
2020-07-11 02:19:48 +03:00
public:
CallManager(QObject *);
2020-07-11 02:19:48 +03:00
2020-10-27 20:14:06 +03:00
void sendInvite(const QString &roomid, bool isVideo);
2020-08-01 21:31:10 +03:00
void hangUp(
mtx::events::msg::CallHangUp::Reason = mtx::events::msg::CallHangUp::Reason::User);
bool isOnCall() const { return session_.state() != webrtc::State::DISCONNECTED; }
bool isOnVideoCall() const { return session_.isVideo(); }
webrtc::State callState() const { return session_.state(); }
QString callPartyName() const { return callPartyName_; }
QString callPartyAvatarUrl() const { return callPartyAvatarUrl_; }
bool isMicMuted() const { return session_.isMicMuted(); }
bool callsSupported() const;
2020-07-31 02:59:54 +03:00
void refreshTurnServer();
2020-07-11 02:19:48 +03:00
public slots:
void syncEvent(const mtx::events::collections::TimelineEvents &event);
void toggleMicMute();
void toggleCameraView() { session_.toggleCameraView(); }
2020-07-11 02:19:48 +03:00
signals:
2020-08-01 21:31:10 +03:00
void newMessage(const QString &roomid, const mtx::events::msg::CallInvite &);
void newMessage(const QString &roomid, const mtx::events::msg::CallCandidates &);
void newMessage(const QString &roomid, const mtx::events::msg::CallAnswer &);
void newMessage(const QString &roomid, const mtx::events::msg::CallHangUp &);
void newCallState();
2020-10-27 20:14:06 +03:00
void newVideoCallState();
void newCallParty();
void micMuteChanged();
2020-08-01 21:31:10 +03:00
void turnServerRetrieved(const mtx::responses::TurnServer &);
2020-07-11 02:19:48 +03:00
private slots:
void retrieveTurnServer();
private:
2020-08-01 21:31:10 +03:00
WebRTCSession &session_;
2020-07-11 02:19:48 +03:00
QString roomid_;
QString callPartyName_;
QString callPartyAvatarUrl_;
2020-07-11 02:19:48 +03:00
std::string callid_;
const uint32_t timeoutms_ = 120000;
std::vector<mtx::events::msg::CallCandidates::Candidate> remoteICECandidates_;
2020-07-26 17:59:50 +03:00
std::vector<std::string> turnURIs_;
2020-07-11 02:19:48 +03:00
QTimer turnServerTimer_;
QMediaPlayer player_;
template<typename T>
bool handleEvent_(const mtx::events::collections::TimelineEvents &event);
2020-08-01 21:31:10 +03:00
void handleEvent(const mtx::events::RoomEvent<mtx::events::msg::CallInvite> &);
void handleEvent(const mtx::events::RoomEvent<mtx::events::msg::CallCandidates> &);
void handleEvent(const mtx::events::RoomEvent<mtx::events::msg::CallAnswer> &);
void handleEvent(const mtx::events::RoomEvent<mtx::events::msg::CallHangUp> &);
2020-10-27 20:14:06 +03:00
void answerInvite(const mtx::events::msg::CallInvite &, bool isVideo);
2020-07-11 02:19:48 +03:00
void generateCallID();
2020-08-01 21:31:10 +03:00
void clear();
2020-07-11 02:19:48 +03:00
void endCall();
void playRingtone(const QUrl &ringtone, bool repeat);
2020-07-11 02:19:48 +03:00
void stopRingtone();
};