mirror of
https://github.com/gopasspw/gopass.git
synced 2025-12-08 19:24:54 +00:00
38 lines
930 B
Go
38 lines
930 B
Go
//go:build linux
|
|
|
|
package notify
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
|
|
"github.com/godbus/dbus/v5"
|
|
"github.com/gopasspw/gopass/internal/config"
|
|
"github.com/gopasspw/gopass/pkg/debug"
|
|
)
|
|
|
|
// Notify displays a desktop notification with dbus.
|
|
func Notify(ctx context.Context, subj, msg string) error {
|
|
if os.Getenv("GOPASS_NO_NOTIFY") != "" || !config.Bool(ctx, "core.notifications") {
|
|
debug.Log("Notifications disabled")
|
|
|
|
return nil
|
|
}
|
|
conn, err := dbus.SessionBus()
|
|
if err != nil {
|
|
debug.Log("DBus failure: %s", err)
|
|
|
|
return err
|
|
}
|
|
|
|
obj := conn.Object("org.freedesktop.Notifications", "/org/freedesktop/Notifications")
|
|
call := obj.Call("org.freedesktop.Notifications.Notify", 0, "gopass", uint32(0), iconURI(ctx), subj, msg, []string{}, map[string]dbus.Variant{"transient": dbus.MakeVariant(true)}, int32(3000))
|
|
if call.Err != nil {
|
|
debug.Log("DBus notification failure: %s", call.Err)
|
|
|
|
return call.Err
|
|
}
|
|
|
|
return nil
|
|
}
|