2019-01-31 09:07:06 -05:00
|
|
|
/* exported MediaSection */
|
2023-06-08 00:52:46 -04:00
|
|
|
const Gio = imports.gi.Gio;
|
|
|
|
const GObject = imports.gi.GObject;
|
|
|
|
const Shell = imports.gi.Shell;
|
|
|
|
const St = imports.gi.St;
|
2022-07-04 18:30:44 -04:00
|
|
|
const Signals = imports.misc.signals;
|
2016-02-15 06:13:22 -05:00
|
|
|
|
|
|
|
const Main = imports.ui.main;
|
|
|
|
const MessageList = imports.ui.messageList;
|
|
|
|
|
2018-09-05 20:55:20 -04:00
|
|
|
const { loadInterfaceXML } = imports.misc.fileUtils;
|
|
|
|
|
|
|
|
const DBusIface = loadInterfaceXML('org.freedesktop.DBus');
|
2016-02-15 06:13:22 -05:00
|
|
|
const DBusProxy = Gio.DBusProxy.makeProxyWrapper(DBusIface);
|
|
|
|
|
2018-09-05 20:55:20 -04:00
|
|
|
const MprisIface = loadInterfaceXML('org.mpris.MediaPlayer2');
|
2016-02-15 06:13:22 -05:00
|
|
|
const MprisProxy = Gio.DBusProxy.makeProxyWrapper(MprisIface);
|
|
|
|
|
2018-09-05 20:55:20 -04:00
|
|
|
const MprisPlayerIface = loadInterfaceXML('org.mpris.MediaPlayer2.Player');
|
2016-02-15 06:13:22 -05:00
|
|
|
const MprisPlayerProxy = Gio.DBusProxy.makeProxyWrapper(MprisPlayerIface);
|
|
|
|
|
|
|
|
const MPRIS_PLAYER_PREFIX = 'org.mpris.MediaPlayer2.';
|
|
|
|
|
2019-07-16 05:24:13 -04:00
|
|
|
var MediaMessage = GObject.registerClass(
|
|
|
|
class MediaMessage extends MessageList.Message {
|
|
|
|
_init(player) {
|
|
|
|
super._init('', '');
|
2016-02-15 06:13:22 -05:00
|
|
|
|
|
|
|
this._player = player;
|
|
|
|
|
|
|
|
this._icon = new St.Icon({ style_class: 'media-message-cover-icon' });
|
|
|
|
this.setIcon(this._icon);
|
|
|
|
|
2021-02-03 20:17:08 -05:00
|
|
|
// reclaim space used by unused elements
|
|
|
|
this._secondaryBin.hide();
|
|
|
|
this._closeButton.hide();
|
|
|
|
|
2016-11-03 13:11:54 -04:00
|
|
|
this._prevButton = this.addMediaControl('media-skip-backward-symbolic',
|
2017-10-30 20:38:18 -04:00
|
|
|
() => {
|
2016-02-15 06:13:22 -05:00
|
|
|
this._player.previous();
|
2017-10-30 20:38:18 -04:00
|
|
|
});
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2022-03-21 11:44:24 -04:00
|
|
|
this._playPauseButton = this.addMediaControl('',
|
2017-10-30 20:38:18 -04:00
|
|
|
() => {
|
2016-02-15 06:13:22 -05:00
|
|
|
this._player.playPause();
|
2017-10-30 20:38:18 -04:00
|
|
|
});
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2016-11-03 13:11:54 -04:00
|
|
|
this._nextButton = this.addMediaControl('media-skip-forward-symbolic',
|
2017-10-30 20:38:18 -04:00
|
|
|
() => {
|
2016-02-15 06:13:22 -05:00
|
|
|
this._player.next();
|
2017-10-30 20:38:18 -04:00
|
|
|
});
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2021-08-15 18:36:59 -04:00
|
|
|
this._player.connectObject(
|
|
|
|
'changed', this._update.bind(this),
|
|
|
|
'closed', this.close.bind(this), this);
|
2016-02-15 06:13:22 -05:00
|
|
|
this._update();
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2019-09-10 01:42:48 -04:00
|
|
|
vfunc_clicked() {
|
2016-02-15 06:13:22 -05:00
|
|
|
this._player.raise();
|
|
|
|
Main.panel.closeCalendar();
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_updateNavButton(button, sensitive) {
|
2016-11-03 13:11:54 -04:00
|
|
|
button.reactive = sensitive;
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-11-03 13:11:54 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_update() {
|
2020-10-24 11:07:10 -04:00
|
|
|
this.setTitle(this._player.trackTitle);
|
|
|
|
this.setBody(this._player.trackArtists.join(', '));
|
2016-02-15 06:13:22 -05:00
|
|
|
|
|
|
|
if (this._player.trackCoverUrl) {
|
|
|
|
let file = Gio.File.new_for_uri(this._player.trackCoverUrl);
|
2023-06-08 00:53:07 -04:00
|
|
|
this._icon.gicon = new Gio.FileIcon({file});
|
2016-02-15 06:13:22 -05:00
|
|
|
this._icon.remove_style_class_name('fallback');
|
2023-04-19 06:54:17 -04:00
|
|
|
} else if (this._player.app) {
|
|
|
|
this._icon.gicon = this._player.app.icon;
|
|
|
|
this._icon.add_style_class_name('fallback');
|
2016-02-15 06:13:22 -05:00
|
|
|
} else {
|
|
|
|
this._icon.icon_name = 'audio-x-generic-symbolic';
|
|
|
|
this._icon.add_style_class_name('fallback');
|
|
|
|
}
|
|
|
|
|
|
|
|
let isPlaying = this._player.status == 'Playing';
|
2019-08-19 15:33:15 -04:00
|
|
|
let iconName = isPlaying
|
|
|
|
? 'media-playback-pause-symbolic'
|
|
|
|
: 'media-playback-start-symbolic';
|
2016-02-15 06:13:22 -05:00
|
|
|
this._playPauseButton.child.icon_name = iconName;
|
2016-11-03 13:11:54 -04:00
|
|
|
|
|
|
|
this._updateNavButton(this._prevButton, this._player.canGoPrevious);
|
|
|
|
this._updateNavButton(this._nextButton, this._player.canGoNext);
|
2016-02-15 06:13:22 -05:00
|
|
|
}
|
2019-07-16 05:24:13 -04:00
|
|
|
});
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2022-07-04 18:30:44 -04:00
|
|
|
var MprisPlayer = class MprisPlayer extends Signals.EventEmitter {
|
2017-10-30 21:19:44 -04:00
|
|
|
constructor(busName) {
|
2022-07-04 18:30:44 -04:00
|
|
|
super();
|
|
|
|
|
2016-02-15 06:13:22 -05:00
|
|
|
this._mprisProxy = new MprisProxy(Gio.DBus.session, busName,
|
2022-07-04 18:30:44 -04:00
|
|
|
'/org/mpris/MediaPlayer2',
|
|
|
|
this._onMprisProxyReady.bind(this));
|
2016-02-15 06:13:22 -05:00
|
|
|
this._playerProxy = new MprisPlayerProxy(Gio.DBus.session, busName,
|
2022-07-04 18:30:44 -04:00
|
|
|
'/org/mpris/MediaPlayer2',
|
|
|
|
this._onPlayerProxyReady.bind(this));
|
2016-02-15 06:13:22 -05:00
|
|
|
|
|
|
|
this._visible = false;
|
|
|
|
this._trackArtists = [];
|
|
|
|
this._trackTitle = '';
|
|
|
|
this._trackCoverUrl = '';
|
2019-10-28 20:06:40 -04:00
|
|
|
this._busName = busName;
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-02-15 06:13:22 -05:00
|
|
|
|
|
|
|
get status() {
|
|
|
|
return this._playerProxy.PlaybackStatus;
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-02-15 06:13:22 -05:00
|
|
|
|
|
|
|
get trackArtists() {
|
|
|
|
return this._trackArtists;
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-02-15 06:13:22 -05:00
|
|
|
|
|
|
|
get trackTitle() {
|
|
|
|
return this._trackTitle;
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-02-15 06:13:22 -05:00
|
|
|
|
|
|
|
get trackCoverUrl() {
|
|
|
|
return this._trackCoverUrl;
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2023-04-19 06:51:14 -04:00
|
|
|
get app() {
|
|
|
|
return this._app;
|
|
|
|
}
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
playPause() {
|
2022-06-23 08:53:29 -04:00
|
|
|
this._playerProxy.PlayPauseAsync().catch(logError);
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2016-11-03 13:11:54 -04:00
|
|
|
get canGoNext() {
|
|
|
|
return this._playerProxy.CanGoNext;
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-11-03 13:11:54 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
next() {
|
2022-06-23 08:53:29 -04:00
|
|
|
this._playerProxy.NextAsync().catch(logError);
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2016-11-03 13:11:54 -04:00
|
|
|
get canGoPrevious() {
|
|
|
|
return this._playerProxy.CanGoPrevious;
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-11-03 13:11:54 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
previous() {
|
2022-06-23 08:53:29 -04:00
|
|
|
this._playerProxy.PreviousAsync().catch(logError);
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
raise() {
|
2016-02-15 06:13:22 -05:00
|
|
|
// The remote Raise() method may run into focus stealing prevention,
|
|
|
|
// so prefer activating the app via .desktop file if possible
|
2023-04-19 06:51:14 -04:00
|
|
|
if (this._app)
|
|
|
|
this._app.activate();
|
2016-02-15 06:13:22 -05:00
|
|
|
else if (this._mprisProxy.CanRaise)
|
2022-06-23 08:53:29 -04:00
|
|
|
this._mprisProxy.RaiseAsync().catch(logError);
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_close() {
|
2021-08-15 18:36:59 -04:00
|
|
|
this._mprisProxy.disconnectObject(this);
|
2016-02-15 06:13:22 -05:00
|
|
|
this._mprisProxy = null;
|
|
|
|
|
2021-08-15 18:36:59 -04:00
|
|
|
this._playerProxy.disconnectObject(this);
|
2016-02-15 06:13:22 -05:00
|
|
|
this._playerProxy = null;
|
|
|
|
|
|
|
|
this.emit('closed');
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onMprisProxyReady() {
|
2021-08-15 18:36:59 -04:00
|
|
|
this._mprisProxy.connectObject('notify::g-name-owner',
|
2017-10-30 20:38:18 -04:00
|
|
|
() => {
|
2016-02-15 06:13:22 -05:00
|
|
|
if (!this._mprisProxy.g_name_owner)
|
|
|
|
this._close();
|
2021-08-15 18:36:59 -04:00
|
|
|
}, this);
|
2020-05-13 01:38:01 -04:00
|
|
|
// It is possible for the bus to disappear before the previous signal
|
|
|
|
// is connected, so we must ensure that the bus still exists at this
|
|
|
|
// point.
|
|
|
|
if (!this._mprisProxy.g_name_owner)
|
|
|
|
this._close();
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onPlayerProxyReady() {
|
2021-08-15 18:36:59 -04:00
|
|
|
this._playerProxy.connectObject(
|
|
|
|
'g-properties-changed', () => this._updateState(), this);
|
2016-02-15 06:13:22 -05:00
|
|
|
this._updateState();
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_updateState() {
|
2016-02-15 06:13:22 -05:00
|
|
|
let metadata = {};
|
|
|
|
for (let prop in this._playerProxy.Metadata)
|
2022-08-10 05:56:14 -04:00
|
|
|
metadata[prop] = this._playerProxy.Metadata[prop].deepUnpack();
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2019-10-28 20:06:40 -04:00
|
|
|
// Validate according to the spec; some clients send buggy metadata:
|
|
|
|
// https://www.freedesktop.org/wiki/Specifications/mpris-spec/metadata
|
|
|
|
this._trackArtists = metadata['xesam:artist'];
|
|
|
|
if (!Array.isArray(this._trackArtists) ||
|
|
|
|
!this._trackArtists.every(artist => typeof artist === 'string')) {
|
2019-08-19 20:51:42 -04:00
|
|
|
if (typeof this._trackArtists !== 'undefined') {
|
2022-02-07 09:14:06 -05:00
|
|
|
log(`Received faulty track artist metadata from ${
|
|
|
|
this._busName}; expected an array of strings, got ${
|
|
|
|
this._trackArtists} (${typeof this._trackArtists})`);
|
2019-08-19 20:51:42 -04:00
|
|
|
}
|
2019-10-28 20:06:40 -04:00
|
|
|
this._trackArtists = [_("Unknown artist")];
|
|
|
|
}
|
|
|
|
|
|
|
|
this._trackTitle = metadata['xesam:title'];
|
|
|
|
if (typeof this._trackTitle !== 'string') {
|
2019-08-19 20:51:42 -04:00
|
|
|
if (typeof this._trackTitle !== 'undefined') {
|
2022-02-07 09:14:06 -05:00
|
|
|
log(`Received faulty track title metadata from ${
|
|
|
|
this._busName}; expected a string, got ${
|
|
|
|
this._trackTitle} (${typeof this._trackTitle})`);
|
2019-08-19 20:51:42 -04:00
|
|
|
}
|
2019-10-28 20:06:40 -04:00
|
|
|
this._trackTitle = _("Unknown title");
|
|
|
|
}
|
|
|
|
|
|
|
|
this._trackCoverUrl = metadata['mpris:artUrl'];
|
|
|
|
if (typeof this._trackCoverUrl !== 'string') {
|
2019-08-19 20:51:42 -04:00
|
|
|
if (typeof this._trackCoverUrl !== 'undefined') {
|
2022-02-07 09:14:06 -05:00
|
|
|
log(`Received faulty track cover art metadata from ${
|
|
|
|
this._busName}; expected a string, got ${
|
|
|
|
this._trackCoverUrl} (${typeof this._trackCoverUrl})`);
|
2019-08-19 20:51:42 -04:00
|
|
|
}
|
2019-10-28 20:06:40 -04:00
|
|
|
this._trackCoverUrl = '';
|
|
|
|
}
|
|
|
|
|
2023-04-19 06:51:14 -04:00
|
|
|
if (this._mprisProxy.DesktopEntry) {
|
|
|
|
const desktopId = `${this._mprisProxy.DesktopEntry}.desktop`;
|
|
|
|
this._app = Shell.AppSystem.get_default().lookup_app(desktopId);
|
|
|
|
} else {
|
|
|
|
this._app = null;
|
|
|
|
}
|
|
|
|
|
2016-02-15 06:13:22 -05:00
|
|
|
this.emit('changed');
|
|
|
|
|
|
|
|
let visible = this._playerProxy.CanPlay;
|
|
|
|
|
|
|
|
if (this._visible != visible) {
|
|
|
|
this._visible = visible;
|
|
|
|
if (visible)
|
|
|
|
this.emit('show');
|
|
|
|
else
|
2019-10-28 20:11:40 -04:00
|
|
|
this.emit('hide');
|
2016-02-15 06:13:22 -05:00
|
|
|
}
|
|
|
|
}
|
2017-10-30 21:19:44 -04:00
|
|
|
};
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2019-07-16 05:24:13 -04:00
|
|
|
var MediaSection = GObject.registerClass(
|
|
|
|
class MediaSection extends MessageList.MessageListSection {
|
|
|
|
_init() {
|
|
|
|
super._init();
|
2016-02-15 06:13:22 -05:00
|
|
|
|
|
|
|
this._players = new Map();
|
|
|
|
|
|
|
|
this._proxy = new DBusProxy(Gio.DBus.session,
|
|
|
|
'org.freedesktop.DBus',
|
|
|
|
'/org/freedesktop/DBus',
|
2017-12-01 19:27:35 -05:00
|
|
|
this._onProxyReady.bind(this));
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2020-02-20 10:40:04 -05:00
|
|
|
get allowed() {
|
|
|
|
return !Main.sessionMode.isGreeter;
|
|
|
|
}
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_addPlayer(busName) {
|
2016-02-15 06:13:22 -05:00
|
|
|
if (this._players.get(busName))
|
|
|
|
return;
|
|
|
|
|
|
|
|
let player = new MprisPlayer(busName);
|
2019-11-17 10:24:52 -05:00
|
|
|
let message = null;
|
2017-10-30 20:38:18 -04:00
|
|
|
player.connect('closed',
|
|
|
|
() => {
|
2016-02-15 06:13:22 -05:00
|
|
|
this._players.delete(busName);
|
2017-10-30 20:38:18 -04:00
|
|
|
});
|
2019-10-28 20:11:40 -04:00
|
|
|
player.connect('show', () => {
|
2019-11-17 10:24:52 -05:00
|
|
|
message = new MediaMessage(player);
|
|
|
|
this.addMessage(message, true);
|
2019-10-28 20:11:40 -04:00
|
|
|
});
|
|
|
|
player.connect('hide', () => {
|
2019-11-17 10:24:52 -05:00
|
|
|
this.removeMessage(message, true);
|
|
|
|
message = null;
|
2019-10-28 20:11:40 -04:00
|
|
|
});
|
2019-11-17 10:24:52 -05:00
|
|
|
|
2016-02-15 06:13:22 -05:00
|
|
|
this._players.set(busName, player);
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2022-06-23 08:53:29 -04:00
|
|
|
async _onProxyReady() {
|
|
|
|
const [names] = await this._proxy.ListNamesAsync();
|
|
|
|
names.forEach(name => {
|
|
|
|
if (!name.startsWith(MPRIS_PLAYER_PREFIX))
|
|
|
|
return;
|
2017-10-30 20:38:18 -04:00
|
|
|
|
2022-06-23 08:53:29 -04:00
|
|
|
this._addPlayer(name);
|
2017-10-30 20:38:18 -04:00
|
|
|
});
|
2016-02-15 06:13:22 -05:00
|
|
|
this._proxy.connectSignal('NameOwnerChanged',
|
2017-12-01 19:27:35 -05:00
|
|
|
this._onNameOwnerChanged.bind(this));
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2016-02-15 06:13:22 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onNameOwnerChanged(proxy, sender, [name, oldOwner, newOwner]) {
|
2016-02-15 06:13:22 -05:00
|
|
|
if (!name.startsWith(MPRIS_PLAYER_PREFIX))
|
|
|
|
return;
|
|
|
|
|
2019-11-17 10:24:52 -05:00
|
|
|
if (newOwner && !oldOwner)
|
2016-02-15 06:13:22 -05:00
|
|
|
this._addPlayer(name);
|
|
|
|
}
|
2019-07-16 05:24:13 -04:00
|
|
|
});
|