/* extension.js * * 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) any later version. * * 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 . * * SPDX-License-Identifier: GPL-2.0-or-later */ /* exported init */ 'use strict'; import Gio from 'gi://Gio' import GLib from 'gi://GLib' import Meta from 'gi://Meta' import * as Main from 'resource:///org/gnome/shell/ui/main.js' import { Extension } from 'resource:///org/gnome/shell/extensions/extension.js' const EvalGjsIface = '' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ''; export default class EvalGjs extends Extension { constructor(metadata) { super(metadata) this._dbusImpl = Gio.DBusExportedObject.wrapJSObject(EvalGjsIface, this); } /** * Eval: * @param {string} code: A string containing JavaScript code * @returns {Array} * * This function executes arbitrary code in the main * loop, and returns a boolean success and * JSON representation of the object as a string. * * If evaluation completes without throwing an exception, * then the return value will be [true, JSON.stringify(result)]. * If evaluation fails, then the return value will be * [false, JSON.stringify(exception)]; * */ Eval(code) { let returnValue; let success; try { returnValue = JSON.stringify(eval(code)); // A hack; DBus doesn't have null/undefined if (returnValue == undefined) returnValue = ''; success = true; } catch (e) { returnValue = `${e}`; success = false; } return [success, returnValue]; } enable() { this._dbusImpl.export(Gio.DBus.session, '/dev/ramottamado/EvalGjs'); } disable() { if (this._dbusImpl) this._dbusImpl.unexport(); } }