90 lines
1.8 KiB
Go
90 lines
1.8 KiB
Go
|
package libsecret
|
||
|
|
||
|
import (
|
||
|
`github.com/godbus/dbus`
|
||
|
)
|
||
|
|
||
|
// NewItem returns a pointer to a new Item based on a Dbus connection and a Dbus path.
|
||
|
func NewItem(conn *dbus.Conn, path dbus.ObjectPath) (item *Item) {
|
||
|
|
||
|
item = &Item{
|
||
|
Conn: conn,
|
||
|
Dbus: conn.Object(DBusServiceName, path),
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Path returns the path of the underlying Dbus connection.
|
||
|
func (i Item) Path() (path dbus.ObjectPath) {
|
||
|
|
||
|
// Remove this method in V1. It's bloat since we now have an exported Dbus.
|
||
|
path = i.Dbus.Path()
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Label returns the label ("name") of an Item.
|
||
|
func (i *Item) Label() (label string, err error) {
|
||
|
|
||
|
var variant dbus.Variant
|
||
|
|
||
|
if variant, err = i.Dbus.GetProperty("org.freedesktop.Secret.Item.Label"); err != nil {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
label = variant.Value().(string)
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Locked indicates that an Item is locked (true) or unlocked (false).
|
||
|
func (i *Item) Locked() (isLocked bool, err error) {
|
||
|
|
||
|
var variant dbus.Variant
|
||
|
|
||
|
if variant, err = i.Dbus.GetProperty("org.freedesktop.Secret.Item.Locked"); err != nil {
|
||
|
isLocked = true
|
||
|
return
|
||
|
}
|
||
|
|
||
|
isLocked = variant.Value().(bool)
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// GetSecret returns the Secret in an Item using a Session.
|
||
|
func (i *Item) GetSecret(session *Session) (secret *Secret, err error) {
|
||
|
|
||
|
secret = new(Secret)
|
||
|
|
||
|
if err = i.Dbus.Call(
|
||
|
"org.freedesktop.Secret.Item.GetSecret", 0, session.Path(),
|
||
|
).Store(&secret); err != nil {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Delete removes an Item from a Collection.
|
||
|
func (i *Item) Delete() (err error) {
|
||
|
|
||
|
var prompt *Prompt
|
||
|
var promptPath dbus.ObjectPath
|
||
|
|
||
|
if err = i.Dbus.Call("org.freedesktop.Secret.Item.Delete", 0).Store(&promptPath); err != nil {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
if isPrompt(promptPath) {
|
||
|
prompt = NewPrompt(i.Conn, promptPath)
|
||
|
|
||
|
if _, err = prompt.Prompt(); err != nil {
|
||
|
return
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return
|
||
|
}
|