2013-05-06 12:50:31 -04:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
2019-02-08 22:21:36 -05:00
|
|
|
const { Gio, GLib, Shell } = imports.gi;
|
2013-07-17 15:26:06 -04:00
|
|
|
const Signals = imports.signals;
|
2013-05-06 12:50:31 -04:00
|
|
|
|
|
|
|
const Main = imports.ui.main;
|
|
|
|
|
2018-09-05 20:55:20 -04:00
|
|
|
const { loadInterfaceXML } = imports.misc.fileUtils;
|
|
|
|
|
|
|
|
const ScreencastIface = loadInterfaceXML('org.gnome.Shell.Screencast');
|
2013-05-06 12:50:31 -04:00
|
|
|
|
2017-10-30 21:19:44 -04:00
|
|
|
var ScreencastService = class {
|
|
|
|
constructor() {
|
2013-05-06 12:50:31 -04:00
|
|
|
this._dbusImpl = Gio.DBusExportedObject.wrapJSObject(ScreencastIface, this);
|
|
|
|
this._dbusImpl.export(Gio.DBus.session, '/org/gnome/Shell/Screencast');
|
|
|
|
|
|
|
|
Gio.DBus.session.own_name('org.gnome.Shell.Screencast', Gio.BusNameOwnerFlags.REPLACE, null, null);
|
|
|
|
|
2014-01-14 17:49:47 -05:00
|
|
|
this._recorders = new Map();
|
2013-05-06 12:50:31 -04:00
|
|
|
|
2014-10-03 10:40:49 -04:00
|
|
|
this._lockdownSettings = new Gio.Settings({ schema_id: 'org.gnome.desktop.lockdown' });
|
|
|
|
|
2017-12-01 19:27:35 -05:00
|
|
|
Main.sessionMode.connect('updated', this._sessionUpdated.bind(this));
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2013-05-06 12:50:31 -04:00
|
|
|
|
2013-07-17 15:26:06 -04:00
|
|
|
get isRecording() {
|
2014-01-14 17:49:47 -05:00
|
|
|
return this._recorders.size > 0;
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2013-07-17 15:26:06 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_ensureRecorderForSender(sender) {
|
2013-05-06 12:50:31 -04:00
|
|
|
let recorder = this._recorders.get(sender);
|
|
|
|
if (!recorder) {
|
2013-08-14 04:34:58 -04:00
|
|
|
recorder = new Shell.Recorder({ stage: global.stage,
|
2018-01-03 02:55:38 -05:00
|
|
|
display: global.display });
|
2013-05-06 12:50:31 -04:00
|
|
|
recorder._watchNameId =
|
|
|
|
Gio.bus_watch_name(Gio.BusType.SESSION, sender, 0, null,
|
2017-12-01 19:27:35 -05:00
|
|
|
this._onNameVanished.bind(this));
|
2013-05-06 12:50:31 -04:00
|
|
|
this._recorders.set(sender, recorder);
|
2013-07-17 15:26:06 -04:00
|
|
|
this.emit('updated');
|
2013-05-06 12:50:31 -04:00
|
|
|
}
|
|
|
|
return recorder;
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2013-05-06 12:50:31 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_sessionUpdated() {
|
2013-05-06 12:50:31 -04:00
|
|
|
if (Main.sessionMode.allowScreencast)
|
|
|
|
return;
|
|
|
|
|
2014-10-03 08:46:36 -04:00
|
|
|
for (let sender of this._recorders.keys())
|
|
|
|
this._stopRecordingForSender(sender);
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2013-05-06 12:50:31 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onNameVanished(connection, name) {
|
2013-05-06 12:50:31 -04:00
|
|
|
this._stopRecordingForSender(name);
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2013-05-06 12:50:31 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_stopRecordingForSender(sender) {
|
2013-05-06 12:50:31 -04:00
|
|
|
let recorder = this._recorders.get(sender);
|
|
|
|
if (!recorder)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
Gio.bus_unwatch_name(recorder._watchNameId);
|
|
|
|
recorder.close();
|
|
|
|
this._recorders.delete(sender);
|
2013-07-17 15:26:06 -04:00
|
|
|
this.emit('updated');
|
2013-05-06 12:50:31 -04:00
|
|
|
|
|
|
|
return true;
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2013-05-06 12:50:31 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_applyOptionalParameters(recorder, options) {
|
2013-05-06 12:50:31 -04:00
|
|
|
for (let option in options)
|
|
|
|
options[option] = options[option].deep_unpack();
|
|
|
|
|
|
|
|
if (options['pipeline'])
|
|
|
|
recorder.set_pipeline(options['pipeline']);
|
|
|
|
if (options['framerate'])
|
|
|
|
recorder.set_framerate(options['framerate']);
|
2015-02-16 10:56:05 -05:00
|
|
|
if ('draw-cursor' in options)
|
2013-05-06 12:50:31 -04:00
|
|
|
recorder.set_draw_cursor(options['draw-cursor']);
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2013-05-06 12:50:31 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
ScreencastAsync(params, invocation) {
|
2013-05-06 12:50:31 -04:00
|
|
|
let returnValue = [false, ''];
|
2014-10-03 10:40:49 -04:00
|
|
|
if (!Main.sessionMode.allowScreencast ||
|
|
|
|
this._lockdownSettings.get_boolean('disable-save-to-disk')) {
|
2013-05-06 12:50:31 -04:00
|
|
|
invocation.return_value(GLib.Variant.new('(bs)', returnValue));
|
2013-11-04 08:06:33 -05:00
|
|
|
return;
|
|
|
|
}
|
2013-05-06 12:50:31 -04:00
|
|
|
|
|
|
|
let sender = invocation.get_sender();
|
|
|
|
let recorder = this._ensureRecorderForSender(sender);
|
|
|
|
if (!recorder.is_recording()) {
|
|
|
|
let [fileTemplate, options] = params;
|
|
|
|
|
|
|
|
recorder.set_file_template(fileTemplate);
|
|
|
|
this._applyOptionalParameters(recorder, options);
|
2013-05-22 10:42:00 -04:00
|
|
|
let [success, fileName] = recorder.record();
|
|
|
|
returnValue = [success, fileName ? fileName : ''];
|
2014-10-03 10:49:21 -04:00
|
|
|
if (!success)
|
|
|
|
this._stopRecordingForSender(sender);
|
2013-05-06 12:50:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
invocation.return_value(GLib.Variant.new('(bs)', returnValue));
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2013-05-06 12:50:31 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
ScreencastAreaAsync(params, invocation) {
|
2013-05-06 12:50:31 -04:00
|
|
|
let returnValue = [false, ''];
|
2014-10-03 10:40:49 -04:00
|
|
|
if (!Main.sessionMode.allowScreencast ||
|
|
|
|
this._lockdownSettings.get_boolean('disable-save-to-disk')) {
|
2013-05-06 12:50:31 -04:00
|
|
|
invocation.return_value(GLib.Variant.new('(bs)', returnValue));
|
2013-11-04 08:06:33 -05:00
|
|
|
return;
|
|
|
|
}
|
2013-05-06 12:50:31 -04:00
|
|
|
|
|
|
|
let sender = invocation.get_sender();
|
|
|
|
let recorder = this._ensureRecorderForSender(sender);
|
|
|
|
|
|
|
|
if (!recorder.is_recording()) {
|
|
|
|
let [x, y, width, height, fileTemplate, options] = params;
|
|
|
|
|
2013-11-04 08:09:19 -05:00
|
|
|
if (x < 0 || y < 0 ||
|
|
|
|
width <= 0 || height <= 0 ||
|
|
|
|
x + width > global.screen_width ||
|
|
|
|
y + height > global.screen_height) {
|
|
|
|
invocation.return_error_literal(Gio.IOErrorEnum,
|
|
|
|
Gio.IOErrorEnum.CANCELLED,
|
|
|
|
"Invalid params");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-05-06 12:50:31 -04:00
|
|
|
recorder.set_file_template(fileTemplate);
|
|
|
|
recorder.set_area(x, y, width, height);
|
|
|
|
this._applyOptionalParameters(recorder, options);
|
2013-05-22 10:42:00 -04:00
|
|
|
let [success, fileName] = recorder.record();
|
|
|
|
returnValue = [success, fileName ? fileName : ''];
|
2014-10-03 10:49:21 -04:00
|
|
|
if (!success)
|
|
|
|
this._stopRecordingForSender(sender);
|
2013-05-06 12:50:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
invocation.return_value(GLib.Variant.new('(bs)', returnValue));
|
2017-10-30 21:19:44 -04:00
|
|
|
}
|
2013-05-06 12:50:31 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
StopScreencastAsync(params, invocation) {
|
2013-05-06 12:50:31 -04:00
|
|
|
let success = this._stopRecordingForSender(invocation.get_sender());
|
|
|
|
invocation.return_value(GLib.Variant.new('(b)', [success]));
|
|
|
|
}
|
2017-10-30 21:19:44 -04:00
|
|
|
};
|
2013-07-17 15:26:06 -04:00
|
|
|
Signals.addSignalMethods(ScreencastService.prototype);
|