-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use libsecret #2
Comments
On 2014-01-05, snaggen [email protected] wrote:
Furthermore libgnome-keyring has been deprecated: |
I'm working on getting the libsecret DBus API working with keepassx as well, so if this were added, users could use it as well. |
I'm going to look into it. |
Thanks! |
I have a WIP prototype at https://github.com/fcrozat/moz-gnome-keyring-integration/tree/libsecret It is NOT functionnal (still fighting with type conversion between JS and C) but it doesn't crash firefox anymore. Feel free to look at it. I did a big replace in gnome-keyring.js, a saner approach (once libsecret works) would be to move the code to libsecret.js and loads this code and fallback to gnome-keyring.js if libsecret is not found. |
I thought both gnome-keyring and libsecret already have JS APIs? Why is it necessary to redeclare them in js-ctypes? |
The API from gnome-keyring and libsecret are for use in gnome-shell and gjs (and are autogenerated by gobject-introspection). They aren't available in Firefox AFAIK |
The JS bindings for gobject are indeed only useable in gjs, which means that the gobject introspection data is kinda useless for us. One could try to implement gobject bindings for firefox but that would be a bigger project (gjs has >10k LOC). That leaves us to either writing all the bindings by hand, which is really awkward and hard, or to write a c wrapper. I'd honestly prefer to use ctypes just to bind to a library which does all the heavy lifting. The disadvantage is that the addon would contain a binary which is platform specific. If that's the route we're going to take, I'd like to make this a new project and break with the current storage format, implementing the password meta data and maybe even get compatibility with either chrome or gnome-web. |
Is there some way to just talk over DBus directly? I think Firefox already talks to DBus, so maybe there's some API available? |
libsecret is a wrapper around Secret DBus api.. |
@mathstuf Firefox uses dbus internally, there is no way to use it from JS. |
Any news on that? I love this extension for thunderbird! |
Sorry, no news. libsecret in flatpak saves passwords locally and not to the global keyring now anyways so I don't see any value in this addon anymore at all. |
Thx @swick for the fast reply. Bad news though. There is no alternative!? |
Even if I would support libsecret the addon would only work in non-flatpak thunderbird so I won't do it. It can obviously be done but I won't be the one doing it. |
As infinity0 writes ( in https://github.com/infinity0/mozilla-gnome-keyring/issues/43 ):
could you use libsecret instead of libgnome-keyring? That would work for KDE keyring too, I believe. There is more information about it in #23 and https://bugzilla.gnome.org/show_bug.cgi?id=672356.
The text was updated successfully, but these errors were encountered: