Files
dash-to-panel/update.js
2019-08-28 22:07:02 -04:00

175 lines
5.3 KiB
JavaScript

/*
* This file is part of the Dash-To-Panel extension for Gnome 3
*
* 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 <http://www.gnu.org/licenses/>.
*/
const GLib = imports.gi.GLib;
const Gio = imports.gi.Gio;
const Soup = imports.gi.Soup;
const FileUtils = imports.misc.fileUtils;
const Me = imports.misc.extensionUtils.getCurrentExtension();
const Gettext = imports.gettext.domain(Me.metadata['gettext-domain']);
const _ = Gettext.gettext;
const releaseApiUrl = 'https://api.github.com/repos/home-sweet-gnome/dash-to-panel/releases/';
let httpSession;
function getLatestReleaseInfo(cb) {
getReleaseInfo('latest', cb);
}
function getTaggedReleaseInfo(releaseTag, cb) {
getReleaseInfo('tags/' + releaseTag, cb);
}
function getReleaseInfo(suffix, cb) {
let message = Soup.form_request_new_from_hash('GET', releaseApiUrl + suffix, {});
getHttpMessageResponseBody(message, (err, body) => {
if (err) {
return cb(err);
}
try {
let release = JSON.parse(body.data);
let releaseInfo = {
name: release.name,
tag: release.tag_name,
zipUrl: (release.assets.length ? release.assets[0].browser_download_url : ''),
};
cb(null, releaseInfo);
} catch (e) {
cb(e.message);
}
});
}
function installRelease(releaseAssetUrl) {
getHttpMessageResponseBody(Soup.form_request_new_from_hash('GET', releaseAssetUrl, {}), (err, body) => {
if (err) {
return notifyInstallResult(err);
}
let name = 'dtp_install';
let zipFile = createTmp(name + '.zip');
let stream = zipFile.replace(null, false, Gio.FileCreateFlags.NONE, null);
let extDir = Gio.file_new_for_path(Me.path);
let tmpDir = createTmp(name, true);
let bckDir = createTmp(Me.uuid, true);
stream.write_bytes(body.flatten().get_as_bytes(), null);
stream.close(null);
unzipFile(zipFile, tmpDir, err => {
if (err) {
return notifyInstallResult(err);
}
try {
let [success, out, err, exitCode] = GLib.spawn_command_line_sync('pidof "gnome-shell-extension-prefs"');
FileUtils.recursivelyMoveDir(extDir, bckDir);
FileUtils.recursivelyMoveDir(tmpDir, extDir);
if (success && !exitCode) {
GLib.spawn_command_line_sync('kill -9 ' + imports.byteArray.toString(out));
}
} catch (e) {
FileUtils.recursivelyDeleteDir(extDir, false);
FileUtils.recursivelyMoveDir(bckDir, extDir);
return notifyInstallResult(e.message);
}
notifyInstallResult(null);
});
});
}
function notifyInstallResult(err) {
let Meta = imports.gi.Meta;
let icon = 'information';
let action = 0;
if (err) {
var msg = _('Error: ') + err;
icon = 'error';
} else if (Meta.is_wayland_compositor()) {
msg = _('Update successful, please log out/in');
action = { text: _('Log out'), func: () => new imports.misc.systemActions.getDefault().activateLogout() };
} else {
msg = _('Update successful, please restart GNOME Shell');
action = { text: _('Restart GNOME Shell'), func: () => Meta.restart(_("Restarting GNOME Shell…")) };
}
Me.imports.utils.notify('Dash to Panel', msg, 'dialog-' + icon, action);
}
function createTmp(name, isDir) {
let tmp = Gio.file_new_for_path('/tmp/' + name);
if (isDir && tmp.query_exists(null)) {
FileUtils.recursivelyDeleteDir(tmp, false);
}
return tmp;
}
function unzipFile(zipFile, destDir, cb) {
let [success, pid] = GLib.spawn_async(
null,
['unzip', '-uod', destDir.get_path(), '--', zipFile.get_path()],
null,
GLib.SpawnFlags.SEARCH_PATH | GLib.SpawnFlags.DO_NOT_REAP_CHILD | GLib.SpawnFlags.STDOUT_TO_DEV_NULL,
null
);
if (!success) {
return cb('unzip spawn error');
}
GLib.child_watch_add(GLib.PRIORITY_DEFAULT, pid, (pid, status) => {
GLib.spawn_close_pid(pid);
if (status != 0) {
return cb('extraction error')
}
return cb(null);
});
}
function getHttpMessageResponseBody(message, cb) {
if (!httpSession) {
httpSession = new Soup.Session();
httpSession.user_agent = Me.metadata.uuid;
}
httpSession.queue_message(message, (httpSession, message) => {
try {
if (!message.response_body || !message.response_body.data) {
return cb('No data received');
}
return cb(null, message.response_body);
} catch (e) {
return cb(e.message);
}
});
}