2013-06-06 04:57:06 +01:00
|
|
|
/**
|
|
|
|
* Copyright 2013 Albert Vaca <albertvaka@gmail.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) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of version 3 of the license.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2013-08-13 05:09:14 +01:00
|
|
|
#include "pausemusicplugin.h"
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2013-07-24 22:51:06 +01:00
|
|
|
#include <QDBusConnection>
|
|
|
|
#include <QDBusInterface>
|
2013-09-26 16:49:40 +01:00
|
|
|
#include <QDBusConnectionInterface>
|
2013-07-24 22:51:06 +01:00
|
|
|
#include <QDBusMessage>
|
2015-03-14 04:19:39 +00:00
|
|
|
#include <QDBusReply>
|
|
|
|
#include <QDebug>
|
2017-09-23 09:41:30 +01:00
|
|
|
#include <QProcess>
|
2013-07-04 18:17:22 +01:00
|
|
|
|
2014-09-22 01:37:10 +01:00
|
|
|
#include <KPluginFactory>
|
2013-11-22 21:49:40 +00:00
|
|
|
|
2015-03-19 15:36:53 +00:00
|
|
|
K_PLUGIN_FACTORY_WITH_JSON( KdeConnectPluginFactory, "kdeconnect_pausemusic.json", registerPlugin< PauseMusicPlugin >(); )
|
2013-08-13 05:09:14 +01:00
|
|
|
|
2017-09-23 09:41:30 +01:00
|
|
|
Q_LOGGING_CATEGORY(KDECONNECT_PLUGIN_PAUSEMUSIC, "kdeconnect.plugin.pausemusic")
|
2014-01-23 20:08:23 +00:00
|
|
|
|
2013-08-13 05:09:14 +01:00
|
|
|
PauseMusicPlugin::PauseMusicPlugin(QObject* parent, const QVariantList& args)
|
|
|
|
: KdeConnectPlugin(parent, args)
|
2014-09-17 15:41:48 +01:00
|
|
|
, muted(false)
|
2017-09-23 09:41:30 +01:00
|
|
|
{}
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2018-03-04 19:48:51 +00:00
|
|
|
bool PauseMusicPlugin::receivePacket(const NetworkPacket& np)
|
2013-06-06 04:57:06 +01:00
|
|
|
{
|
2016-11-26 14:38:08 +00:00
|
|
|
bool pauseOnlyWhenTalking = config()->get(QStringLiteral("conditionTalking"), false);
|
2013-11-22 21:49:40 +00:00
|
|
|
|
|
|
|
if (pauseOnlyWhenTalking) {
|
2016-11-26 14:38:08 +00:00
|
|
|
if (np.get<QString>(QStringLiteral("event")) != QLatin1String("talking")) {
|
2013-11-22 21:49:40 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else { //Pause as soon as it rings
|
2016-11-26 14:38:08 +00:00
|
|
|
if (np.get<QString>(QStringLiteral("event")) != QLatin1String("ringing") && np.get<QString>(QStringLiteral("event")) != QLatin1String("talking")) {
|
2013-10-29 16:29:31 +00:00
|
|
|
return true;
|
2013-11-22 21:49:40 +00:00
|
|
|
}
|
2013-07-04 18:17:22 +01:00
|
|
|
}
|
|
|
|
|
2016-11-26 14:38:08 +00:00
|
|
|
bool pauseConditionFulfilled = !np.get<bool>(QStringLiteral("isCancel"));
|
2014-09-17 15:41:48 +01:00
|
|
|
|
2016-11-26 14:38:08 +00:00
|
|
|
bool pause = config()->get(QStringLiteral("actionPause"), true);
|
|
|
|
bool mute = config()->get(QStringLiteral("actionMute"), false);
|
2013-08-14 05:46:24 +01:00
|
|
|
|
2013-07-24 22:51:06 +01:00
|
|
|
if (pauseConditionFulfilled) {
|
2014-09-17 15:41:48 +01:00
|
|
|
|
|
|
|
if (mute) {
|
2017-09-23 09:41:30 +01:00
|
|
|
qCDebug(KDECONNECT_PLUGIN_PAUSEMUSIC) << "Muting system volume";
|
|
|
|
QProcess::startDetached("pactl set-sink-mute @DEFAULT_SINK@ 1");
|
|
|
|
muted = true;
|
2014-09-17 15:41:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (pause) {
|
2014-01-23 20:08:23 +00:00
|
|
|
//Search for interfaces currently playing
|
2017-07-20 15:14:07 +01:00
|
|
|
const QStringList interfaces = QDBusConnection::sessionBus().interface()->registeredServiceNames().value();
|
|
|
|
for (const QString& iface : interfaces) {
|
2016-11-26 14:38:08 +00:00
|
|
|
if (iface.startsWith(QLatin1String("org.mpris.MediaPlayer2"))) {
|
|
|
|
QDBusInterface mprisInterface(iface, QStringLiteral("/org/mpris/MediaPlayer2"), QStringLiteral("org.mpris.MediaPlayer2.Player"));
|
2014-01-23 20:08:23 +00:00
|
|
|
QString status = mprisInterface.property("PlaybackStatus").toString();
|
2016-11-26 14:38:08 +00:00
|
|
|
if (status == QLatin1String("Playing")) {
|
2014-01-23 20:08:23 +00:00
|
|
|
if (!pausedSources.contains(iface)) {
|
|
|
|
pausedSources.insert(iface);
|
2014-06-05 23:14:41 +01:00
|
|
|
if (mprisInterface.property("CanPause").toBool()) {
|
2016-11-26 14:38:08 +00:00
|
|
|
mprisInterface.asyncCall(QStringLiteral("Pause"));
|
2014-06-05 23:14:41 +01:00
|
|
|
} else {
|
2016-11-26 14:38:08 +00:00
|
|
|
mprisInterface.asyncCall(QStringLiteral("Stop"));
|
2014-06-05 23:14:41 +01:00
|
|
|
}
|
2014-01-23 20:08:23 +00:00
|
|
|
}
|
2013-07-24 22:51:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-09-17 15:41:48 +01:00
|
|
|
|
2013-08-14 05:46:24 +01:00
|
|
|
} else {
|
2014-09-17 15:41:48 +01:00
|
|
|
|
|
|
|
if (mute && muted) {
|
2017-09-23 09:41:30 +01:00
|
|
|
|
|
|
|
qCDebug(KDECONNECT_PLUGIN_PAUSEMUSIC) << "Unmuting system volume";
|
|
|
|
QProcess::startDetached("pactl set-sink-mute @DEFAULT_SINK@ 0");
|
|
|
|
|
|
|
|
muted = false;
|
2014-09-17 15:41:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (pause && !pausedSources.empty()) {
|
2017-07-20 15:14:07 +01:00
|
|
|
for (const QString& iface : qAsConst(pausedSources)) {
|
2016-11-26 14:38:08 +00:00
|
|
|
QDBusInterface mprisInterface(iface, QStringLiteral("/org/mpris/MediaPlayer2"), QStringLiteral("org.mpris.MediaPlayer2.Player"));
|
|
|
|
mprisInterface.asyncCall(QStringLiteral("PlayPause"));
|
2014-01-23 20:08:23 +00:00
|
|
|
}
|
2014-09-17 15:41:48 +01:00
|
|
|
pausedSources.clear();
|
2013-07-24 22:51:06 +01:00
|
|
|
}
|
2014-01-23 20:08:23 +00:00
|
|
|
|
2013-07-24 22:51:06 +01:00
|
|
|
}
|
2013-07-04 18:17:22 +01:00
|
|
|
|
2013-06-06 04:57:06 +01:00
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
2014-06-16 19:02:07 +01:00
|
|
|
|
|
|
|
#include "pausemusicplugin.moc"
|