2b45a01517
We have made good progress on object literals as well, although there are still a lot that use the old style, given how ubiquitous object literals are. But the needed reindentation isn't overly intrusive, as changes are limited to the object literals themselves (i.e. they don't affect surrounding code). And given that object literals account for quite a bit of the remaining differences between regular and legacy rules, doing the transition now is still worthwhile. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2200>
54 lines
1.6 KiB
JavaScript
54 lines
1.6 KiB
JavaScript
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
/* exported getOVirtCredentialsManager */
|
|
|
|
const Gio = imports.gi.Gio;
|
|
const Signals = imports.signals;
|
|
const Credential = imports.gdm.credentialManager;
|
|
|
|
var SERVICE_NAME = 'gdm-ovirtcred';
|
|
|
|
const OVirtCredentialsIface = `
|
|
<node>
|
|
<interface name="org.ovirt.vdsm.Credentials">
|
|
<signal name="UserAuthenticated">
|
|
<arg type="s" name="token"/>
|
|
</signal>
|
|
</interface>
|
|
</node>`;
|
|
|
|
const OVirtCredentialsInfo = Gio.DBusInterfaceInfo.new_for_xml(OVirtCredentialsIface);
|
|
|
|
let _oVirtCredentialsManager = null;
|
|
|
|
function OVirtCredentials() {
|
|
var self = new Gio.DBusProxy({
|
|
g_connection: Gio.DBus.system,
|
|
g_interface_name: OVirtCredentialsInfo.name,
|
|
g_interface_info: OVirtCredentialsInfo,
|
|
g_name: 'org.ovirt.vdsm.Credentials',
|
|
g_object_path: '/org/ovirt/vdsm/Credentials',
|
|
g_flags: Gio.DBusProxyFlags.DO_NOT_LOAD_PROPERTIES,
|
|
});
|
|
self.init(null);
|
|
return self;
|
|
}
|
|
|
|
var OVirtCredentialsManager = class OVirtCredentialsManager extends Credential.CredentialManager {
|
|
constructor() {
|
|
super(SERVICE_NAME);
|
|
this._credentials = new OVirtCredentials();
|
|
this._credentials.connectSignal('UserAuthenticated',
|
|
(proxy, sender, [token]) => {
|
|
this.token = token;
|
|
});
|
|
}
|
|
};
|
|
Signals.addSignalMethods(OVirtCredentialsManager.prototype);
|
|
|
|
function getOVirtCredentialsManager() {
|
|
if (!_oVirtCredentialsManager)
|
|
_oVirtCredentialsManager = new OVirtCredentialsManager();
|
|
|
|
return _oVirtCredentialsManager;
|
|
}
|