2013-07-29 17:43:13 +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:35:58 +01:00
|
|
|
#include "mpriscontrolplugin.h"
|
2013-07-29 17:43:13 +01:00
|
|
|
|
2013-09-03 01:14:27 +01:00
|
|
|
#include <QDBusArgument>
|
2013-07-29 17:43:13 +01:00
|
|
|
#include <QDBusConnection>
|
|
|
|
#include <QDBusInterface>
|
|
|
|
#include <qdbusconnectioninterface.h>
|
|
|
|
#include <QDBusReply>
|
|
|
|
#include <QDBusMessage>
|
2015-05-05 00:40:04 +01:00
|
|
|
#include <QDBusServiceWatcher>
|
2013-07-29 17:43:13 +01:00
|
|
|
|
2016-06-16 09:19:38 +01:00
|
|
|
#include <QImage>
|
|
|
|
#include <QBuffer>
|
|
|
|
#include <QByteArray>
|
|
|
|
|
2014-09-22 01:37:10 +01:00
|
|
|
#include <KPluginFactory>
|
|
|
|
|
2014-06-14 15:34:00 +01:00
|
|
|
#include <core/device.h>
|
2013-11-06 21:16:55 +00:00
|
|
|
#include "mprisdbusinterface.h"
|
|
|
|
#include "propertiesdbusinterface.h"
|
|
|
|
|
2015-03-19 15:36:53 +00:00
|
|
|
K_PLUGIN_FACTORY_WITH_JSON( KdeConnectPluginFactory, "kdeconnect_mpriscontrol.json", registerPlugin< MprisControlPlugin >(); )
|
2013-08-13 05:35:58 +01:00
|
|
|
|
2014-09-21 23:44:47 +01:00
|
|
|
Q_LOGGING_CATEGORY(KDECONNECT_PLUGIN_MPRIS, "kdeconnect.plugin.mpris")
|
|
|
|
|
2013-08-13 05:35:58 +01:00
|
|
|
MprisControlPlugin::MprisControlPlugin(QObject* parent, const QVariantList& args)
|
|
|
|
: KdeConnectPlugin(parent, args)
|
2015-05-05 00:40:04 +01:00
|
|
|
, prevVolume(-1)
|
2013-07-29 17:43:13 +01:00
|
|
|
{
|
2015-09-11 10:27:18 +01:00
|
|
|
m_watcher = new QDBusServiceWatcher(QString(), QDBusConnection::sessionBus(), QDBusServiceWatcher::WatchForOwnerChange, this);
|
2013-07-30 19:21:06 +01:00
|
|
|
|
2016-04-08 00:12:10 +01:00
|
|
|
// TODO: QDBusConnectionInterface::serviceOwnerChanged is deprecated, maybe query org.freedesktop.DBus directly?
|
|
|
|
connect(QDBusConnection::sessionBus().interface(), &QDBusConnectionInterface::serviceOwnerChanged, this, &MprisControlPlugin::serviceOwnerChanged);
|
2013-07-30 19:21:06 +01:00
|
|
|
|
|
|
|
//Add existing interfaces
|
2015-09-11 10:27:18 +01:00
|
|
|
QStringList services = QDBusConnection::sessionBus().interface()->registeredServiceNames().value();
|
|
|
|
Q_FOREACH (const QString& service, services) {
|
2016-04-08 00:12:10 +01:00
|
|
|
// The string doesn't matter, it just needs to be empty/non-empty
|
|
|
|
serviceOwnerChanged(service, QLatin1String(""), QLatin1String("1"));
|
2013-07-30 19:21:06 +01:00
|
|
|
}
|
2015-09-11 10:27:18 +01:00
|
|
|
}
|
|
|
|
|
2016-04-08 00:12:10 +01:00
|
|
|
// Copied from the mpris2 dataengine in the plasma-workspace repository
|
|
|
|
void MprisControlPlugin::serviceOwnerChanged(const QString& serviceName, const QString& oldOwner, const QString& newOwner)
|
2015-09-11 10:27:18 +01:00
|
|
|
{
|
2016-04-08 00:12:10 +01:00
|
|
|
if (!serviceName.startsWith(QLatin1String("org.mpris.MediaPlayer2.")))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!oldOwner.isEmpty()) {
|
|
|
|
qCDebug(KDECONNECT_PLUGIN_MPRIS) << "MPRIS service" << serviceName << "just went offline";
|
|
|
|
removePlayer(serviceName);
|
2015-09-11 10:27:18 +01:00
|
|
|
}
|
2013-07-30 19:21:06 +01:00
|
|
|
|
2016-04-08 00:12:10 +01:00
|
|
|
if (!newOwner.isEmpty()) {
|
|
|
|
qCDebug(KDECONNECT_PLUGIN_MPRIS) << "MPRIS service" << serviceName << "just came online";
|
|
|
|
addPlayer(serviceName);
|
2015-09-11 10:27:18 +01:00
|
|
|
}
|
2013-07-30 19:21:06 +01:00
|
|
|
}
|
|
|
|
|
2015-09-11 10:27:18 +01:00
|
|
|
|
2013-08-13 05:35:58 +01:00
|
|
|
void MprisControlPlugin::addPlayer(const QString& service)
|
2013-07-30 19:21:06 +01:00
|
|
|
{
|
2013-08-10 04:21:55 +01:00
|
|
|
QDBusInterface mprisInterface(service, "/org/mpris/MediaPlayer2", "org.mpris.MediaPlayer2");
|
2013-09-03 01:35:08 +01:00
|
|
|
//FIXME: This call hangs and returns an empty string if KDED is still starting!
|
2015-11-11 19:00:59 +00:00
|
|
|
QString identity = mprisInterface.property("Identity").toString();
|
|
|
|
if (identity.isEmpty()) {
|
|
|
|
identity = service.mid(sizeof("org.mpris.MediaPlayer2"));
|
|
|
|
}
|
2013-08-10 04:21:55 +01:00
|
|
|
playerList[identity] = service;
|
2014-09-21 23:44:47 +01:00
|
|
|
qCDebug(KDECONNECT_PLUGIN_MPRIS) << "Mpris addPlayer" << service << "->" << identity;
|
2013-07-30 19:21:06 +01:00
|
|
|
sendPlayerList();
|
2013-08-10 04:21:55 +01:00
|
|
|
|
|
|
|
OrgFreedesktopDBusPropertiesInterface* freedesktopInterface = new OrgFreedesktopDBusPropertiesInterface(service, "/org/mpris/MediaPlayer2", QDBusConnection::sessionBus(), this);
|
2015-08-21 17:38:54 +01:00
|
|
|
connect(freedesktopInterface, SIGNAL(PropertiesChanged(QString,QVariantMap,QStringList)), this, SLOT(propertiesChanged(QString,QVariantMap)));
|
2013-08-10 04:21:55 +01:00
|
|
|
|
2014-12-13 22:41:53 +00:00
|
|
|
OrgMprisMediaPlayer2PlayerInterface* mprisInterface0 = new OrgMprisMediaPlayer2PlayerInterface(service, "/org/mpris/MediaPlayer2", QDBusConnection::sessionBus());
|
|
|
|
connect(mprisInterface0, SIGNAL(Seeked(qlonglong)), this, SLOT(seeked(qlonglong)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void MprisControlPlugin::seeked(qlonglong position){
|
2015-04-22 08:16:14 +01:00
|
|
|
//qCDebug(KDECONNECT_PLUGIN_MPRIS) << "Seeked in player";
|
2014-12-13 22:41:53 +00:00
|
|
|
OrgFreedesktopDBusPropertiesInterface* interface = (OrgFreedesktopDBusPropertiesInterface*)sender();
|
|
|
|
const QString& service = interface->service();
|
|
|
|
const QString& player = playerList.key(service);
|
2016-06-21 19:07:12 +01:00
|
|
|
|
|
|
|
NetworkPackage np(PACKAGE_TYPE_MPRIS, {
|
|
|
|
{"pos", position/1000}, //Send milis instead of nanos
|
|
|
|
{"player", player}
|
|
|
|
});
|
2014-12-13 22:41:53 +00:00
|
|
|
sendPackage(np);
|
2013-07-30 19:21:06 +01:00
|
|
|
}
|
|
|
|
|
2013-08-13 05:35:58 +01:00
|
|
|
void MprisControlPlugin::propertiesChanged(const QString& propertyInterface, const QVariantMap& properties)
|
2013-07-30 19:21:06 +01:00
|
|
|
{
|
2013-08-13 22:26:42 +01:00
|
|
|
Q_UNUSED(propertyInterface);
|
2014-07-01 22:59:38 +01:00
|
|
|
|
2013-08-10 04:21:55 +01:00
|
|
|
NetworkPackage np(PACKAGE_TYPE_MPRIS);
|
|
|
|
bool somethingToSend = false;
|
|
|
|
if (properties.contains("Volume")) {
|
|
|
|
int volume = (int) (properties["Volume"].toDouble()*100);
|
|
|
|
if (volume != prevVolume) {
|
|
|
|
np.set("volume",volume);
|
|
|
|
prevVolume = volume;
|
|
|
|
somethingToSend = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (properties.contains("Metadata")) {
|
|
|
|
QDBusArgument bullshit = qvariant_cast<QDBusArgument>(properties["Metadata"]);
|
|
|
|
QVariantMap nowPlayingMap;
|
|
|
|
bullshit >> nowPlayingMap;
|
|
|
|
if (nowPlayingMap.contains("xesam:title")) {
|
|
|
|
QString nowPlaying = nowPlayingMap["xesam:title"].toString();
|
|
|
|
if (nowPlayingMap.contains("xesam:artist")) {
|
|
|
|
nowPlaying = nowPlayingMap["xesam:artist"].toString() + " - " + nowPlaying;
|
|
|
|
}
|
|
|
|
np.set("nowPlaying",nowPlaying);
|
|
|
|
somethingToSend = true;
|
|
|
|
}
|
2014-12-13 22:41:53 +00:00
|
|
|
if (nowPlayingMap.contains("mpris:length")) {
|
|
|
|
if (nowPlayingMap.contains("mpris:length")) {
|
2014-12-14 02:44:20 +00:00
|
|
|
long long length = nowPlayingMap["mpris:length"].toLongLong();
|
|
|
|
np.set("length",length/1000); //milis to nanos
|
2014-12-13 22:41:53 +00:00
|
|
|
}
|
|
|
|
somethingToSend = true;
|
|
|
|
}
|
2016-06-16 09:19:38 +01:00
|
|
|
if (nowPlayingMap.contains("mpris:artUrl")) {
|
|
|
|
const QUrl artUrl(nowPlayingMap["mpris:artUrl"].toString());
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We only handle images stored locally right now but it should be easy
|
|
|
|
* enough to download remote images and send them.
|
|
|
|
*/
|
|
|
|
const int artMaxWidth = 512;
|
|
|
|
const int artMaxHeight = 512;
|
|
|
|
if (artUrl.isLocalFile()) {
|
|
|
|
QImage artImage(artUrl.path());
|
|
|
|
|
|
|
|
// Scale the image to a sane size
|
|
|
|
artImage = artImage.scaled({artMaxWidth, artMaxHeight}, Qt::KeepAspectRatio, Qt::SmoothTransformation);
|
|
|
|
|
|
|
|
QByteArray imageBufferArray;
|
|
|
|
QBuffer imageBuffer(&imageBufferArray);
|
|
|
|
imageBuffer.open(QIODevice::WriteOnly);
|
|
|
|
artImage.save(&imageBuffer, "PNG");
|
|
|
|
|
|
|
|
const QString base64Image = QString::fromLatin1(imageBufferArray.toBase64());
|
|
|
|
np.set("artImage", base64Image);
|
|
|
|
somethingToSend = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2013-08-10 04:21:55 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
if (properties.contains("PlaybackStatus")) {
|
|
|
|
bool playing = (properties["PlaybackStatus"].toString() == "Playing");
|
|
|
|
np.set("isPlaying", playing);
|
|
|
|
somethingToSend = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (somethingToSend) {
|
|
|
|
OrgFreedesktopDBusPropertiesInterface* interface = (OrgFreedesktopDBusPropertiesInterface*)sender();
|
|
|
|
const QString& service = interface->service();
|
|
|
|
const QString& player = playerList.key(service);
|
|
|
|
np.set("player", player);
|
2014-12-13 22:41:53 +00:00
|
|
|
// Always also update the position
|
2015-06-18 03:01:01 +01:00
|
|
|
OrgMprisMediaPlayer2PlayerInterface mprisInterface(service, "/org/mpris/MediaPlayer2", QDBusConnection::sessionBus());
|
2014-12-14 02:44:20 +00:00
|
|
|
if (mprisInterface.canSeek()) {
|
|
|
|
long long pos = mprisInterface.position();
|
|
|
|
np.set("pos", pos/1000); //Send milis instead of nanos
|
|
|
|
}
|
2014-06-14 19:35:00 +01:00
|
|
|
sendPackage(np);
|
2013-08-10 04:21:55 +01:00
|
|
|
}
|
2013-07-30 19:21:06 +01:00
|
|
|
}
|
|
|
|
|
2013-08-13 05:35:58 +01:00
|
|
|
void MprisControlPlugin::removePlayer(const QString& ifaceName)
|
2013-07-30 19:21:06 +01:00
|
|
|
{
|
2014-02-28 17:50:06 +00:00
|
|
|
const QString identity = playerList.key(ifaceName);
|
2014-09-21 23:44:47 +01:00
|
|
|
qCDebug(KDECONNECT_PLUGIN_MPRIS) << "Mpris removePlayer" << ifaceName << "->" << identity;
|
2013-09-03 01:35:08 +01:00
|
|
|
playerList.remove(identity);
|
2013-08-10 04:21:55 +01:00
|
|
|
sendPlayerList();
|
2013-07-29 17:43:13 +01:00
|
|
|
}
|
|
|
|
|
2013-08-13 05:35:58 +01:00
|
|
|
bool MprisControlPlugin::receivePackage (const NetworkPackage& np)
|
2013-07-29 17:43:13 +01:00
|
|
|
{
|
2013-09-03 01:06:56 +01:00
|
|
|
if (np.has("playerList")) {
|
|
|
|
return false; //Whoever sent this is an mpris client and not an mpris control!
|
|
|
|
}
|
2013-07-29 17:43:13 +01:00
|
|
|
|
2013-08-10 04:21:55 +01:00
|
|
|
//Send the player list
|
2014-02-28 17:50:06 +00:00
|
|
|
const QString player = np.get<QString>("player");
|
2013-08-10 04:21:55 +01:00
|
|
|
bool valid_player = playerList.contains(player);
|
|
|
|
if (!valid_player || np.get<bool>("requestPlayerList")) {
|
2013-08-13 05:35:58 +01:00
|
|
|
sendPlayerList();
|
2013-08-10 04:21:55 +01:00
|
|
|
if (!valid_player) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2013-07-29 17:43:13 +01:00
|
|
|
|
2013-08-10 04:21:55 +01:00
|
|
|
//Do something to the mpris interface
|
|
|
|
OrgMprisMediaPlayer2PlayerInterface mprisInterface(playerList[player], "/org/mpris/MediaPlayer2", QDBusConnection::sessionBus());
|
2015-11-11 19:02:08 +00:00
|
|
|
mprisInterface.setTimeout(500);
|
2013-08-10 04:21:55 +01:00
|
|
|
if (np.has("action")) {
|
|
|
|
const QString& action = np.get<QString>("action");
|
2015-04-22 08:16:14 +01:00
|
|
|
//qCDebug(KDECONNECT_PLUGIN_MPRIS) << "Calling action" << action << "in" << playerList[player];
|
2014-10-10 19:47:35 +01:00
|
|
|
//TODO: Check for valid actions, currently we trust anything the other end sends us
|
2013-08-10 04:21:55 +01:00
|
|
|
mprisInterface.call(action);
|
2013-07-30 19:21:06 +01:00
|
|
|
}
|
2013-08-10 04:21:55 +01:00
|
|
|
if (np.has("setVolume")) {
|
|
|
|
double volume = np.get<int>("setVolume")/100.f;
|
2014-09-21 23:44:47 +01:00
|
|
|
qCDebug(KDECONNECT_PLUGIN_MPRIS) << "Setting volume" << volume << "to" << playerList[player];
|
2013-08-10 04:21:55 +01:00
|
|
|
mprisInterface.setVolume(volume);
|
|
|
|
}
|
2013-10-29 19:17:42 +00:00
|
|
|
if (np.has("Seek")) {
|
|
|
|
int offset = np.get<int>("Seek");
|
2015-04-22 08:16:14 +01:00
|
|
|
//qCDebug(KDECONNECT_PLUGIN_MPRIS) << "Seeking" << offset << "to" << playerList[player];
|
2013-10-29 19:17:42 +00:00
|
|
|
mprisInterface.Seek(offset);
|
|
|
|
}
|
2013-08-10 04:21:55 +01:00
|
|
|
|
2014-12-13 22:41:53 +00:00
|
|
|
if (np.has("SetPosition")){
|
2014-12-14 02:44:20 +00:00
|
|
|
qlonglong position = np.get<qlonglong>("SetPosition",0)*1000;
|
|
|
|
qlonglong seek = position - mprisInterface.position();
|
2015-04-22 08:16:14 +01:00
|
|
|
//qCDebug(KDECONNECT_PLUGIN_MPRIS) << "Setting position by seeking" << seek << "to" << playerList[player];
|
2014-12-14 02:44:20 +00:00
|
|
|
mprisInterface.Seek(seek);
|
2014-12-13 22:41:53 +00:00
|
|
|
}
|
|
|
|
|
2013-08-10 04:21:55 +01:00
|
|
|
//Send something read from the mpris interface
|
|
|
|
NetworkPackage answer(PACKAGE_TYPE_MPRIS);
|
|
|
|
bool somethingToSend = false;
|
|
|
|
if (np.get<bool>("requestNowPlaying")) {
|
|
|
|
|
|
|
|
QVariantMap nowPlayingMap = mprisInterface.metadata();
|
|
|
|
QString nowPlaying = nowPlayingMap["xesam:title"].toString();
|
|
|
|
if (nowPlayingMap.contains("xesam:artist")) {
|
|
|
|
nowPlaying = nowPlayingMap["xesam:artist"].toString() + " - " + nowPlaying;
|
2015-11-11 19:03:00 +00:00
|
|
|
}
|
|
|
|
answer.set("nowPlaying",nowPlaying);
|
|
|
|
|
|
|
|
if (nowPlayingMap.contains("mpris:length")) {
|
2014-12-14 02:44:20 +00:00
|
|
|
qlonglong length = nowPlayingMap["mpris:length"].toLongLong();
|
|
|
|
answer.set("length",length/1000);
|
2013-08-10 04:21:55 +01:00
|
|
|
}
|
2014-12-14 02:44:20 +00:00
|
|
|
qlonglong pos = mprisInterface.position();
|
|
|
|
answer.set("pos", pos/1000);
|
2013-08-10 04:21:55 +01:00
|
|
|
|
|
|
|
bool playing = (mprisInterface.playbackStatus() == QLatin1String("Playing"));
|
|
|
|
answer.set("isPlaying", playing);
|
|
|
|
|
|
|
|
somethingToSend = true;
|
2013-07-30 19:21:06 +01:00
|
|
|
}
|
2013-08-10 04:21:55 +01:00
|
|
|
if (np.get<bool>("requestVolume")) {
|
|
|
|
int volume = (int)(mprisInterface.volume() * 100);
|
|
|
|
answer.set("volume",volume);
|
|
|
|
somethingToSend = true;
|
|
|
|
}
|
|
|
|
if (somethingToSend) {
|
|
|
|
answer.set("player", player);
|
2014-06-14 19:35:00 +01:00
|
|
|
sendPackage(answer);
|
2013-07-29 17:43:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2013-07-30 19:21:06 +01:00
|
|
|
|
2013-08-13 05:35:58 +01:00
|
|
|
void MprisControlPlugin::sendPlayerList()
|
2013-07-30 19:21:06 +01:00
|
|
|
{
|
2016-06-26 16:11:08 +01:00
|
|
|
NetworkPackage np(PACKAGE_TYPE_MPRIS);
|
|
|
|
np.set("playerList",playerList.keys());
|
2014-06-14 19:35:00 +01:00
|
|
|
sendPackage(np);
|
2013-07-30 19:21:06 +01:00
|
|
|
}
|
2014-06-16 19:02:07 +01:00
|
|
|
|
|
|
|
#include "mpriscontrolplugin.moc"
|