forked from fiveai/goipa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
otp.go
200 lines (159 loc) · 4.09 KB
/
otp.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
// Copyright 2015 Andrew E. Bruno. All rights reserved.
// Use of this source code is governed by a BSD style
// license that can be found in the LICENSE file.
package ipa
import (
"encoding/json"
"strings"
)
// OTP Token hash Algorithms supported by FreeIPA
type Algorithm string
const (
AlgorithmSHA1 Algorithm = "SHA1"
AlgorithmSHA256 = "SHA256"
AlgorithmSHA384 = "SHA384"
AlgorithmSHA512 = "SHA512"
)
// Number of digits each OTP token code will have
type Digits int
const (
DigitsSix Digits = 6
DigitsEight Digits = 8
)
// OTPToken encapsulates FreeIPA otptokens
type OTPToken struct {
DN string `json:"dn"`
Algorithm Algorithm `json:"ipatokenotpalgorithm"`
Digits Digits `json:"ipatokenotpdigits"`
Owner IpaString `json:"ipatokenowner"`
TimeStep IpaString `json:"ipatokentotptimestep"`
UUID IpaString `json:"ipatokenuniqueid"`
ManagedBy IpaString `json:"managedby_user"`
Disabled IpaString `json:"ipatokendisabled"`
Type string `json:"type"`
URI string `json:"uri"`
}
func (t *OTPToken) Enabled() bool {
if t.Disabled == "TRUE" {
return false
}
return true
}
// Unmarshal a FreeIPA string from an array of strings and convert to an
// Algorithm. Uses the first value in the array as the value of the string.
func (a *Algorithm) UnmarshalJSON(b []byte) error {
var values []string
err := json.Unmarshal(b, &values)
if err != nil {
return err
}
algo := ""
if len(values) > 0 {
algo = values[0]
}
switch algo {
case "sha1":
*a = AlgorithmSHA1
case "sha256":
*a = AlgorithmSHA256
case "sha384":
*a = AlgorithmSHA384
case "sha512":
*a = AlgorithmSHA512
default:
*a = AlgorithmSHA1
}
return nil
}
func (a *Algorithm) String() string {
return string(*a)
}
// Unmarshal a FreeIPA string from an array of strings and convert to Digits.
// Uses the first value in the array as the value of the string.
func (d *Digits) UnmarshalJSON(b []byte) error {
var values []string
err := json.Unmarshal(b, &values)
if err != nil {
return err
}
digi := ""
if len(values) > 0 {
digi = values[0]
}
switch digi {
case "6":
*d = DigitsSix
case "8":
*d = DigitsEight
default:
*d = DigitsSix
}
return nil
}
func (d *Digits) String() string {
return string(*d)
}
// Remove OTP token
func (c *Client) RemoveOTPToken(tokenID string) error {
options := map[string]interface{}{}
_, err := c.rpc("otptoken_del", []string{tokenID}, options)
if err != nil {
return err
}
return nil
}
// Fetch all OTP tokens.
func (c *Client) FetchOTPTokens(uid string) ([]*OTPToken, error) {
options := map[string]interface{}{
"ipatokenowner": uid,
"all": true}
res, err := c.rpc("otptoken_find", []string{}, options)
if err != nil {
return nil, err
}
var tokens []*OTPToken
err = json.Unmarshal(res.Result.Data, &tokens)
if err != nil {
return nil, err
}
return tokens, nil
}
// Add TOTP token. Returns new OTPToken
func (c *Client) AddTOTPToken(uid string, algo Algorithm, digits Digits, interval int) (*OTPToken, error) {
options := map[string]interface{}{
"type": "totp",
"ipatokenotpalgorithm": strings.ToLower(string(algo)),
"ipatokenotpdigits": digits,
"ipatokentotptimestep": interval,
"ipatokenowner": uid,
"no_qrcode": true,
"qrcode": false,
"no_members": false,
"all": true}
res, err := c.rpc("otptoken_add", []string{}, options)
if err != nil {
return nil, err
}
var tokenRec OTPToken
err = json.Unmarshal(res.Result.Data, &tokenRec)
if err != nil {
return nil, err
}
return &tokenRec, nil
}
// Enable OTP token.
func (c *Client) EnableOTPToken(tokenID string) error {
options := map[string]interface{}{
"ipatokendisabled": false,
"all": false}
_, err := c.rpc("otptoken_mod", []string{tokenID}, options)
return err
}
// Disable OTP token.
func (c *Client) DisableOTPToken(tokenID string) error {
options := map[string]interface{}{
"ipatokendisabled": true,
"all": false}
_, err := c.rpc("otptoken_mod", []string{tokenID}, options)
return err
}