-
Notifications
You must be signed in to change notification settings - Fork 70
/
user_lock.go
109 lines (87 loc) · 3.01 KB
/
user_lock.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
package iam
import (
"context"
"errors"
"fmt"
"net/http"
"net/url"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v9/pkg/edgegriderr"
"github.com/akamai/AkamaiOPEN-edgegrid-golang/v9/pkg/session"
validation "github.com/go-ozzo/ozzo-validation/v4"
)
type (
// LockUserRequest contains the request parameters for the LockUser endpoint.
LockUserRequest struct {
IdentityID string
}
// UnlockUserRequest contains the request parameters for the UnlockUser endpoint.
UnlockUserRequest struct {
IdentityID string
}
)
var (
// ErrLockUser is returned when LockUser fails.
ErrLockUser = errors.New("lock user")
// ErrUnlockUser is returned when UnlockUser fails.
ErrUnlockUser = errors.New("unlock user")
)
// Validate validates LockUserRequest.
func (r LockUserRequest) Validate() error {
return edgegriderr.ParseValidationErrors(validation.Errors{
"IdentityID": validation.Validate(r.IdentityID, validation.Required),
})
}
// Validate validates UnlockUserRequest.
func (r UnlockUserRequest) Validate() error {
return edgegriderr.ParseValidationErrors(validation.Errors{
"IdentityID": validation.Validate(r.IdentityID, validation.Required),
})
}
func (i *iam) LockUser(ctx context.Context, params LockUserRequest) error {
logger := i.Log(ctx)
logger.Debug("LockUser")
if err := params.Validate(); err != nil {
return fmt.Errorf("%s: %w:\n%s", ErrLockUser, ErrStructValidation, err)
}
uri, err := url.Parse(fmt.Sprintf("/identity-management/v3/user-admin/ui-identities/%s/lock", params.IdentityID))
if err != nil {
return fmt.Errorf("%w: failed to create request: %s", ErrLockUser, err)
}
req, err := http.NewRequestWithContext(ctx, http.MethodPost, uri.String(), nil)
if err != nil {
return fmt.Errorf("%w: failed to create request: %s", ErrLockUser, err)
}
resp, err := i.Exec(req, nil)
if err != nil {
return fmt.Errorf("%w: request failed: %s", ErrLockUser, err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK && resp.StatusCode != http.StatusNoContent {
return fmt.Errorf("%s: %w", ErrLockUser, i.Error(resp))
}
return nil
}
func (i *iam) UnlockUser(ctx context.Context, params UnlockUserRequest) error {
logger := i.Log(ctx)
logger.Debug("UnlockUser")
if err := params.Validate(); err != nil {
return fmt.Errorf("%s: %w:\n%s", ErrUnlockUser, ErrStructValidation, err)
}
uri, err := url.Parse(fmt.Sprintf("/identity-management/v3/user-admin/ui-identities/%s/unlock", params.IdentityID))
if err != nil {
return fmt.Errorf("%w: failed to create request: %s", ErrUnlockUser, err)
}
req, err := http.NewRequestWithContext(ctx, http.MethodPost, uri.String(), nil)
if err != nil {
return fmt.Errorf("%w: failed to create request: %s", ErrUnlockUser, err)
}
resp, err := i.Exec(req, nil)
if err != nil {
return fmt.Errorf("%w: request failed: %s", ErrUnlockUser, err)
}
defer session.CloseResponseBody(resp)
if resp.StatusCode != http.StatusOK && resp.StatusCode != http.StatusNoContent {
return fmt.Errorf("%s: %w", ErrUnlockUser, i.Error(resp))
}
return nil
}