2019-01-31 09:07:06 -05:00
|
|
|
/* exported IntrospectService */
|
2019-10-01 06:07:03 -04:00
|
|
|
const { Gio, GLib, Meta, Shell, St } = imports.gi;
|
2018-09-05 05:15:30 -04:00
|
|
|
|
|
|
|
const INTROSPECT_SCHEMA = 'org.gnome.shell';
|
|
|
|
const INTROSPECT_KEY = 'introspect';
|
2021-06-21 15:32:50 -04:00
|
|
|
const APP_ALLOWLIST = [
|
|
|
|
'org.freedesktop.impl.portal.desktop.gtk',
|
|
|
|
'org.freedesktop.impl.portal.desktop.gnome',
|
|
|
|
];
|
2018-09-05 05:15:30 -04:00
|
|
|
|
2020-07-22 12:38:22 -04:00
|
|
|
const INTROSPECT_DBUS_API_VERSION = 3;
|
2019-10-01 06:07:03 -04:00
|
|
|
|
2018-09-05 05:15:30 -04:00
|
|
|
const { loadInterfaceXML } = imports.misc.fileUtils;
|
|
|
|
|
|
|
|
const IntrospectDBusIface = loadInterfaceXML('org.gnome.Shell.Introspect');
|
|
|
|
|
2017-10-30 21:19:44 -04:00
|
|
|
var IntrospectService = class {
|
|
|
|
constructor() {
|
2018-09-05 05:15:30 -04:00
|
|
|
this._dbusImpl = Gio.DBusExportedObject.wrapJSObject(IntrospectDBusIface,
|
|
|
|
this);
|
|
|
|
this._dbusImpl.export(Gio.DBus.session, '/org/gnome/Shell/Introspect');
|
|
|
|
Gio.DBus.session.own_name('org.gnome.Shell.Introspect',
|
|
|
|
Gio.BusNameOwnerFlags.REPLACE,
|
|
|
|
null, null);
|
|
|
|
|
|
|
|
this._runningApplications = {};
|
|
|
|
this._runningApplicationsDirty = true;
|
|
|
|
this._activeApplication = null;
|
|
|
|
this._activeApplicationDirty = true;
|
2019-10-01 06:07:03 -04:00
|
|
|
this._animationsEnabled = true;
|
2018-09-05 05:15:30 -04:00
|
|
|
|
|
|
|
this._appSystem = Shell.AppSystem.get_default();
|
|
|
|
this._appSystem.connect('app-state-changed',
|
|
|
|
() => {
|
|
|
|
this._runningApplicationsDirty = true;
|
|
|
|
this._syncRunningApplications();
|
|
|
|
});
|
|
|
|
|
2019-10-01 06:06:13 -04:00
|
|
|
this._introspectSettings = new Gio.Settings({
|
|
|
|
schema_id: INTROSPECT_SCHEMA,
|
|
|
|
});
|
2018-09-05 05:15:30 -04:00
|
|
|
|
|
|
|
let tracker = Shell.WindowTracker.get_default();
|
|
|
|
tracker.connect('notify::focus-app',
|
|
|
|
() => {
|
|
|
|
this._activeApplicationDirty = true;
|
|
|
|
this._syncRunningApplications();
|
|
|
|
});
|
|
|
|
|
|
|
|
this._syncRunningApplications();
|
2019-11-25 13:44:10 -05:00
|
|
|
|
2020-08-04 04:39:29 -04:00
|
|
|
this._allowlistMap = new Map();
|
|
|
|
APP_ALLOWLIST.forEach(appName => {
|
2019-11-25 13:44:10 -05:00
|
|
|
Gio.DBus.watch_name(Gio.BusType.SESSION,
|
|
|
|
appName,
|
|
|
|
Gio.BusNameWatcherFlags.NONE,
|
2020-08-04 04:39:29 -04:00
|
|
|
(conn, name, owner) => this._allowlistMap.set(name, owner),
|
|
|
|
(conn, name) => this._allowlistMap.delete(name));
|
2019-11-25 13:44:10 -05:00
|
|
|
});
|
2019-10-01 06:07:03 -04:00
|
|
|
|
|
|
|
this._settings = St.Settings.get();
|
|
|
|
this._settings.connect('notify::enable-animations',
|
|
|
|
this._syncAnimationsEnabled.bind(this));
|
|
|
|
this._syncAnimationsEnabled();
|
2020-07-22 12:38:22 -04:00
|
|
|
|
|
|
|
const monitorManager = Meta.MonitorManager.get();
|
|
|
|
monitorManager.connect('monitors-changed',
|
|
|
|
this._syncScreenSize.bind(this));
|
|
|
|
this._syncScreenSize();
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2018-09-05 05:15:30 -04:00
|
|
|
|
|
|
|
_isStandaloneApp(app) {
|
|
|
|
return app.get_windows().some(w => w.transient_for == null);
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2018-09-05 05:15:30 -04:00
|
|
|
|
|
|
|
_isIntrospectEnabled() {
|
2019-10-01 06:06:13 -04:00
|
|
|
return this._introspectSettings.get_boolean(INTROSPECT_KEY);
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2018-09-05 05:15:30 -04:00
|
|
|
|
2020-08-04 04:39:29 -04:00
|
|
|
_isSenderAllowed(sender) {
|
|
|
|
return [...this._allowlistMap.values()].includes(sender);
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2018-09-05 05:15:30 -04:00
|
|
|
|
2019-05-15 18:57:27 -04:00
|
|
|
_getSandboxedAppId(app) {
|
|
|
|
let ids = app.get_windows().map(w => w.get_sandboxed_app_id());
|
|
|
|
return ids.find(id => id != null);
|
|
|
|
}
|
|
|
|
|
2018-09-05 05:15:30 -04:00
|
|
|
_syncRunningApplications() {
|
|
|
|
let tracker = Shell.WindowTracker.get_default();
|
|
|
|
let apps = this._appSystem.get_running();
|
|
|
|
let seatName = "seat0";
|
|
|
|
let newRunningApplications = {};
|
|
|
|
|
|
|
|
let newActiveApplication = null;
|
|
|
|
let focusedApp = tracker.focus_app;
|
|
|
|
|
|
|
|
for (let app of apps) {
|
|
|
|
let appInfo = {};
|
2019-08-19 15:38:51 -04:00
|
|
|
let isAppActive = focusedApp == app;
|
2018-09-05 05:15:30 -04:00
|
|
|
|
|
|
|
if (!this._isStandaloneApp(app))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (isAppActive) {
|
|
|
|
appInfo['active-on-seats'] = new GLib.Variant('as', [seatName]);
|
|
|
|
newActiveApplication = app.get_id();
|
|
|
|
}
|
|
|
|
|
2019-05-15 18:57:27 -04:00
|
|
|
let sandboxedAppId = this._getSandboxedAppId(app);
|
|
|
|
if (sandboxedAppId)
|
|
|
|
appInfo['sandboxed-app-id'] = new GLib.Variant('s', sandboxedAppId);
|
|
|
|
|
2018-09-05 05:15:30 -04:00
|
|
|
newRunningApplications[app.get_id()] = appInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._runningApplicationsDirty ||
|
|
|
|
(this._activeApplicationDirty &&
|
|
|
|
this._activeApplication != newActiveApplication)) {
|
|
|
|
this._runningApplications = newRunningApplications;
|
|
|
|
this._activeApplication = newActiveApplication;
|
|
|
|
|
|
|
|
this._dbusImpl.emit_signal('RunningApplicationsChanged', null);
|
|
|
|
}
|
|
|
|
this._runningApplicationsDirty = false;
|
|
|
|
this._activeApplicationDirty = false;
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2018-09-05 05:15:30 -04:00
|
|
|
|
2018-12-12 10:02:29 -05:00
|
|
|
_isEligibleWindow(window) {
|
|
|
|
if (window.is_override_redirect())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
let type = window.get_window_type();
|
2019-08-19 15:38:51 -04:00
|
|
|
return type == Meta.WindowType.NORMAL ||
|
2018-12-12 10:02:29 -05:00
|
|
|
type == Meta.WindowType.DIALOG ||
|
|
|
|
type == Meta.WindowType.MODAL_DIALOG ||
|
2019-08-19 15:38:51 -04:00
|
|
|
type == Meta.WindowType.UTILITY;
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2018-12-12 10:02:29 -05:00
|
|
|
|
2019-09-25 14:36:28 -04:00
|
|
|
_isInvocationAllowed(invocation) {
|
|
|
|
if (this._isIntrospectEnabled())
|
|
|
|
return true;
|
|
|
|
|
2020-08-04 04:39:29 -04:00
|
|
|
if (this._isSenderAllowed(invocation.get_sender()))
|
2019-09-25 14:36:28 -04:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-09-05 05:15:30 -04:00
|
|
|
GetRunningApplicationsAsync(params, invocation) {
|
2019-09-25 14:36:28 -04:00
|
|
|
if (!this._isInvocationAllowed(invocation)) {
|
2018-09-05 05:15:30 -04:00
|
|
|
invocation.return_error_literal(Gio.DBusError,
|
|
|
|
Gio.DBusError.ACCESS_DENIED,
|
|
|
|
'App introspection not allowed');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
invocation.return_value(new GLib.Variant('(a{sa{sv}})', [this._runningApplications]));
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2018-12-12 10:02:29 -05:00
|
|
|
|
|
|
|
GetWindowsAsync(params, invocation) {
|
|
|
|
let focusWindow = global.display.get_focus_window();
|
|
|
|
let apps = this._appSystem.get_running();
|
|
|
|
let windowsList = {};
|
|
|
|
|
2019-09-25 14:36:28 -04:00
|
|
|
if (!this._isInvocationAllowed(invocation)) {
|
2018-12-12 10:02:29 -05:00
|
|
|
invocation.return_error_literal(Gio.DBusError,
|
|
|
|
Gio.DBusError.ACCESS_DENIED,
|
|
|
|
'App introspection not allowed');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let app of apps) {
|
|
|
|
let windows = app.get_windows();
|
|
|
|
for (let window of windows) {
|
|
|
|
if (!this._isEligibleWindow(window))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
let windowId = window.get_id();
|
|
|
|
let frameRect = window.get_frame_rect();
|
|
|
|
let title = window.get_title();
|
|
|
|
let wmClass = window.get_wm_class();
|
2019-05-15 18:57:27 -04:00
|
|
|
let sandboxedAppId = window.get_sandboxed_app_id();
|
2018-12-12 10:02:29 -05:00
|
|
|
|
|
|
|
windowsList[windowId] = {
|
|
|
|
'app-id': GLib.Variant.new('s', app.get_id()),
|
|
|
|
'client-type': GLib.Variant.new('u', window.get_client_type()),
|
|
|
|
'is-hidden': GLib.Variant.new('b', window.is_hidden()),
|
2019-08-19 15:38:51 -04:00
|
|
|
'has-focus': GLib.Variant.new('b', window == focusWindow),
|
2018-12-12 10:02:29 -05:00
|
|
|
'width': GLib.Variant.new('u', frameRect.width),
|
2019-08-20 17:43:54 -04:00
|
|
|
'height': GLib.Variant.new('u', frameRect.height),
|
2018-12-12 10:02:29 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
// These properties may not be available for all windows:
|
|
|
|
if (title != null)
|
|
|
|
windowsList[windowId]['title'] = GLib.Variant.new('s', title);
|
|
|
|
|
|
|
|
if (wmClass != null)
|
|
|
|
windowsList[windowId]['wm-class'] = GLib.Variant.new('s', wmClass);
|
2019-05-15 18:57:27 -04:00
|
|
|
|
2019-08-19 20:51:42 -04:00
|
|
|
if (sandboxedAppId != null) {
|
2019-05-15 18:57:27 -04:00
|
|
|
windowsList[windowId]['sandboxed-app-id'] =
|
|
|
|
GLib.Variant.new('s', sandboxedAppId);
|
2019-08-19 20:51:42 -04:00
|
|
|
}
|
2018-12-12 10:02:29 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
invocation.return_value(new GLib.Variant('(a{ta{sv}})', [windowsList]));
|
2018-09-05 05:15:30 -04:00
|
|
|
}
|
2019-10-01 06:07:03 -04:00
|
|
|
|
|
|
|
_syncAnimationsEnabled() {
|
|
|
|
let wasAnimationsEnabled = this._animationsEnabled;
|
|
|
|
this._animationsEnabled = this._settings.enable_animations;
|
|
|
|
if (wasAnimationsEnabled !== this._animationsEnabled) {
|
|
|
|
let variant = new GLib.Variant('b', this._animationsEnabled);
|
|
|
|
this._dbusImpl.emit_property_changed('AnimationsEnabled', variant);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-22 12:38:22 -04:00
|
|
|
_syncScreenSize() {
|
|
|
|
const oldScreenWidth = this._screenWidth;
|
|
|
|
const oldScreenHeight = this._screenHeight;
|
|
|
|
this._screenWidth = global.screen_width;
|
|
|
|
this._screenHeight = global.screen_height;
|
|
|
|
|
|
|
|
if (oldScreenWidth !== this._screenWidth ||
|
|
|
|
oldScreenHeight !== this._screenHeight) {
|
|
|
|
const variant = new GLib.Variant('(ii)',
|
|
|
|
[this._screenWidth, this._screenHeight]);
|
|
|
|
this._dbusImpl.emit_property_changed('ScreenSize', variant);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-01 06:07:03 -04:00
|
|
|
get AnimationsEnabled() {
|
|
|
|
return this._animationsEnabled;
|
|
|
|
}
|
|
|
|
|
2020-07-22 12:38:22 -04:00
|
|
|
get ScreenSize() {
|
|
|
|
return [this._screenWidth, this._screenHeight];
|
|
|
|
}
|
|
|
|
|
2019-10-01 06:07:03 -04:00
|
|
|
get version() {
|
|
|
|
return INTROSPECT_DBUS_API_VERSION;
|
|
|
|
}
|
2017-10-30 21:19:44 -04:00
|
|
|
};
|