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
|
2019-03-23 16:29:26 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2013-06-06 04:57:06 +01:00
|
|
|
*/
|
|
|
|
|
2013-08-13 05:09:14 +01:00
|
|
|
#include "pausemusicplugin.h"
|
2013-06-06 04:57:06 +01:00
|
|
|
|
2014-09-22 01:37:10 +01:00
|
|
|
#include <KPluginFactory>
|
2019-04-28 20:31:39 +01:00
|
|
|
#include <PulseAudioQt/Context>
|
|
|
|
#include <PulseAudioQt/Sink>
|
2013-11-22 21:49:40 +00:00
|
|
|
|
2019-06-09 16:28:49 +01:00
|
|
|
#include <dbushelper.h>
|
2020-01-21 02:55:46 +00:00
|
|
|
#include "mprisplayer.h"
|
2019-06-09 16:28:49 +01:00
|
|
|
|
Build kdeconnect on sailfish and port some simple plugins
Summary:
Below is a lost of the commits, but, in summary
Port the build system for Sailfish, which means selectively building only the bits we need/can, and only against the KF5 libs that are available.
Allow to build on Qt 5.6
Switch from knotification to nemo notification (not complete!)
Add a very simple example sailfish app.
Note, there is still much missing functionality. Notifications dont work, pairing sort of works but not really, but when it is paired you can send a ping to the desktop client
Dont build kio for Sailfish
Port core build system
Port daemon buld system
Require CoreAddons on Sailfish
Port plugins build for sailfish and include the ping plugin for now
Final build changes for sailfish.
Disable tests and other not needed parts
Add includes for QCA
Fix build errors on sailfish
Get core/ to build on sailfish
Get interfaces/ to build on sailfish
Build daemon on sailfish
On sailfish, dont install the kcm file
Start port plugin to sailfish
Fixup installed files
Add sfos app
Hack declarative plugin to give a public interface
Build sfos app
Compile declarativeplugin into the sfos app for now
Redefine qAsConst for qt 5.6
Packaging fixes
Use official icon
Package .desktop
Reviewers: #kde_connect, apol, nicolasfella, albertvaka
Reviewed By: #kde_connect, apol, nicolasfella, albertvaka
Subscribers: kdeconnect, andyholmes, albertvaka, kossebau, mtijink, vonreth, apol, #kde_connect, nicolasfella
Tags: #kde_connect
Differential Revision: https://phabricator.kde.org/D10703
2018-08-02 20:10:59 +01:00
|
|
|
//In older Qt released, qAsConst isnt available
|
|
|
|
#include "qtcompat_p.h"
|
|
|
|
|
2019-06-12 21:16:54 +01:00
|
|
|
K_PLUGIN_CLASS_WITH_JSON(PauseMusicPlugin, "kdeconnect_pausemusic.json")
|
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)
|
2019-04-28 20:31:39 +01:00
|
|
|
, mutedSinks()
|
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";
|
2019-04-28 20:31:39 +01:00
|
|
|
const auto sinks = PulseAudioQt::Context::instance()->sinks();
|
|
|
|
for (const auto sink : sinks) {
|
|
|
|
if (!sink->isMuted()) {
|
|
|
|
sink->setMuted(true);
|
|
|
|
mutedSinks.insert(sink->name());
|
|
|
|
}
|
|
|
|
}
|
2014-09-17 15:41:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (pause) {
|
2014-01-23 20:08:23 +00:00
|
|
|
//Search for interfaces currently playing
|
2019-08-14 16:36:19 +01:00
|
|
|
const QStringList interfaces = DBusHelper::sessionBus().interface()->registeredServiceNames().value();
|
2017-07-20 15:14:07 +01:00
|
|
|
for (const QString& iface : interfaces) {
|
2016-11-26 14:38:08 +00:00
|
|
|
if (iface.startsWith(QLatin1String("org.mpris.MediaPlayer2"))) {
|
2020-01-21 02:55:46 +00:00
|
|
|
OrgMprisMediaPlayer2PlayerInterface mprisInterface(iface, QStringLiteral("/org/mpris/MediaPlayer2"), DBusHelper::sessionBus());
|
|
|
|
QString status = mprisInterface.playbackStatus();
|
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);
|
2020-01-21 02:55:46 +00:00
|
|
|
if (mprisInterface.canPause()) {
|
|
|
|
mprisInterface.Pause();
|
2014-06-05 23:14:41 +01:00
|
|
|
} else {
|
2020-01-21 02:55:46 +00:00
|
|
|
mprisInterface.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
|
|
|
|
2019-04-28 20:31:39 +01:00
|
|
|
if (mute) {
|
2017-09-23 09:41:30 +01:00
|
|
|
|
|
|
|
qCDebug(KDECONNECT_PLUGIN_PAUSEMUSIC) << "Unmuting system volume";
|
|
|
|
|
2019-04-28 20:31:39 +01:00
|
|
|
const auto sinks = PulseAudioQt::Context::instance()->sinks();
|
|
|
|
for (const auto sink : sinks) {
|
|
|
|
if (mutedSinks.contains(sink->name())) {
|
|
|
|
sink->setMuted(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mutedSinks.clear();
|
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)) {
|
2020-01-21 02:55:46 +00:00
|
|
|
OrgMprisMediaPlayer2PlayerInterface mprisInterface(iface, QStringLiteral("/org/mpris/MediaPlayer2"), DBusHelper::sessionBus());
|
|
|
|
mprisInterface.Play();
|
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"
|