2e67f95017
The rationale is explained in https://planet.kde.org/friedrich-kossebau-2023-06-28-include-also-moc-files-of-headers/ In case of KDEConnect, it impressively speeds up compilation. Before it took 390 seconds on a clean build and with this change it took 330 seconds. This is due to the mocs_compilation having to include the header files and thus all their headers. Due to the lots of small plugins we have, this means that the same headers must be compiled plenty of times. When we include the moc files directly in the C++ file, they are already available.
107 lines
3.4 KiB
C++
107 lines
3.4 KiB
C++
/**
|
|
* SPDX-FileCopyrightText: 2013 Albert Vaca <albertvaka@gmail.com>
|
|
* SPDX-FileCopyrightText: 2018 Simon Redman <simon@ergotech.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#include "telephonyplugin.h"
|
|
|
|
#include <KLocalizedString>
|
|
#include <QDBusReply>
|
|
#include <QDebug>
|
|
|
|
#include "plugin_telephony_debug.h"
|
|
#include <KNotification>
|
|
#include <KPluginFactory>
|
|
|
|
K_PLUGIN_CLASS_WITH_JSON(TelephonyPlugin, "kdeconnect_telephony.json")
|
|
|
|
TelephonyPlugin::TelephonyPlugin(QObject *parent, const QVariantList &args)
|
|
: KdeConnectPlugin(parent, args)
|
|
{
|
|
}
|
|
|
|
void TelephonyPlugin::createNotification(const NetworkPacket &np)
|
|
{
|
|
const QString event = np.get<QString>(QStringLiteral("event"));
|
|
const QString phoneNumber = np.get<QString>(QStringLiteral("phoneNumber"), i18n("unknown number"));
|
|
const QString contactName = np.get<QString>(QStringLiteral("contactName"), phoneNumber);
|
|
const QByteArray phoneThumbnail = QByteArray::fromBase64(np.get<QByteArray>(QStringLiteral("phoneThumbnail"), ""));
|
|
|
|
QString content, type, icon;
|
|
|
|
if (event == QLatin1String("ringing")) {
|
|
type = QStringLiteral("callReceived");
|
|
icon = QStringLiteral("call-start");
|
|
content = i18n("Incoming call from %1", contactName);
|
|
} else if (event == QLatin1String("missedCall")) {
|
|
type = QStringLiteral("missedCall");
|
|
icon = QStringLiteral("call-start");
|
|
content = i18n("Missed call from %1", contactName);
|
|
} else if (event == QLatin1String("talking")) {
|
|
if (m_currentCallNotification) {
|
|
m_currentCallNotification->close();
|
|
}
|
|
return;
|
|
}
|
|
|
|
Q_EMIT callReceived(type, phoneNumber, contactName);
|
|
|
|
qCDebug(KDECONNECT_PLUGIN_TELEPHONY) << "Creating notification with type:" << type;
|
|
|
|
if (!m_currentCallNotification) {
|
|
m_currentCallNotification = new KNotification(type, KNotification::Persistent);
|
|
}
|
|
|
|
if (!phoneThumbnail.isEmpty()) {
|
|
QPixmap photo;
|
|
photo.loadFromData(phoneThumbnail, "JPEG");
|
|
m_currentCallNotification->setPixmap(photo);
|
|
} else {
|
|
m_currentCallNotification->setIconName(icon);
|
|
}
|
|
m_currentCallNotification->setComponentName(QStringLiteral("kdeconnect"));
|
|
m_currentCallNotification->setTitle(device()->name());
|
|
m_currentCallNotification->setText(content);
|
|
|
|
if (event == QLatin1String("ringing")) {
|
|
m_currentCallNotification->setActions(QStringList(i18n("Mute Call")));
|
|
connect(m_currentCallNotification, &KNotification::action1Activated, this, &TelephonyPlugin::sendMutePacket);
|
|
}
|
|
|
|
m_currentCallNotification->sendEvent();
|
|
}
|
|
|
|
bool TelephonyPlugin::receivePacket(const NetworkPacket &np)
|
|
{
|
|
if (np.get<bool>(QStringLiteral("isCancel"))) {
|
|
if (m_currentCallNotification) {
|
|
m_currentCallNotification->close();
|
|
}
|
|
return true;
|
|
}
|
|
|
|
// ignore old style sms packet
|
|
if (np.get<QString>(QStringLiteral("event")) == QLatin1String("sms")) {
|
|
return false;
|
|
}
|
|
|
|
createNotification(np);
|
|
|
|
return true;
|
|
}
|
|
|
|
void TelephonyPlugin::sendMutePacket()
|
|
{
|
|
NetworkPacket packet(PACKET_TYPE_TELEPHONY_REQUEST_MUTE, {{QStringLiteral("action"), QStringLiteral("mute")}});
|
|
sendPacket(packet);
|
|
}
|
|
|
|
QString TelephonyPlugin::dbusPath() const
|
|
{
|
|
return QStringLiteral("/modules/kdeconnect/devices/") + device()->id() + QStringLiteral("/telephony");
|
|
}
|
|
|
|
#include "moc_telephonyplugin.cpp"
|
|
#include "telephonyplugin.moc"
|