-
Notifications
You must be signed in to change notification settings - Fork 0
/
password_funcs.go
120 lines (88 loc) · 2.25 KB
/
password_funcs.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
package gokwallet
import (
"github.com/godbus/dbus/v5"
)
/*
NewPassword returns a Password. It requires a RecurseOpts
(you can use DefaultRecurseOpts, call NewRecurseOpts, or provide your own RecurseOpts struct).
It also requires a Folder.
*/
func NewPassword(f *Folder, keyName string, recursion *RecurseOpts) (password *Password, err error) {
if !f.isInit {
err = ErrInitFolder
return
}
password = &Password{
DbusObject: f.DbusObject,
Name: keyName,
// Value: "",
Recurse: recursion,
wm: f.wallet.wm,
wallet: f.wallet,
folder: f,
isInit: false,
}
password.isInit = true
if password.Recurse.AllWalletItems || password.Recurse.Passwords {
if err = password.Update(); err != nil {
return
}
}
password.isInit = true
return
}
// Delete will delete this Password from its parent Folder. You may want to run Folder.UpdatePasswords to update the existing map of Password items.
func (p *Password) Delete() (err error) {
if err = p.folder.RemoveEntry(p.Name); err != nil {
return
}
p = nil
return
}
// Exists returns true if this Password actually exists.
func (p *Password) Exists() (exists bool, err error) {
if exists, err = p.folder.HasEntry(p.Name); err != nil {
return
}
return
}
// Rename renames this Password (changes its key).
func (p *Password) Rename(newName string) (err error) {
if err = p.folder.RenameEntry(p.Name, newName); err != nil {
return
}
p.Name = newName
return
}
// SetValue will replace this Password's Password.Value.
func (p *Password) SetValue(newValue string) (err error) {
if _, err = p.folder.WritePassword(p.Name, newValue); err != nil {
return
}
p.Value = newValue
return
}
// Update fetches a Password's Password.Value.
func (p *Password) Update() (err error) {
var call *dbus.Call
var b []byte
if err = p.folder.wallet.walletCheck(); err != nil {
return
}
if call = p.Dbus.Call(
DbusWMReadPassword, 0, p.folder.wallet.handle, p.folder.Name, p.Name, p.folder.wallet.wm.AppID,
); call.Err != nil {
err = call.Err
return
}
if err = call.Store(&b); err != nil {
return
}
p.Value = string(b)
return
}
// isWalletItem is needed for interface membership.
func (p *Password) isWalletItem() (isWalletItem bool) {
isWalletItem = true
return
}