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
|
package solver
import (
"github.com/kong/deck/crud"
"github.com/kong/deck/diff"
"github.com/kong/deck/state"
"github.com/kong/deck/utils"
"github.com/kong/go-kong/kong"
)
// oauth2CredCRUD implements crud.Actions interface.
type oauth2CredCRUD struct {
client *kong.Client
}
func oauth2CredFromStuct(arg diff.Event) *state.Oauth2Credential {
oauth2Cred, ok := arg.Obj.(*state.Oauth2Credential)
if !ok {
panic("unexpected type, expected *state.Route")
}
return oauth2Cred
}
// Create creates a Route in Kong.
// The arg should be of type diff.Event, containing the oauth2Cred to be created,
// else the function will panic.
// It returns a the created *state.Route.
func (s *oauth2CredCRUD) Create(arg ...crud.Arg) (crud.Arg, error) {
event := eventFromArg(arg[0])
oauth2Cred := oauth2CredFromStuct(event)
cid := ""
if !utils.Empty(oauth2Cred.Consumer.Username) {
cid = *oauth2Cred.Consumer.Username
}
if !utils.Empty(oauth2Cred.Consumer.ID) {
cid = *oauth2Cred.Consumer.ID
}
createdOauth2Cred, err := s.client.Oauth2Credentials.Create(nil, &cid,
&oauth2Cred.Oauth2Credential)
if err != nil {
return nil, err
}
return &state.Oauth2Credential{Oauth2Credential: *createdOauth2Cred}, nil
}
// Delete deletes a Route in Kong.
// The arg should be of type diff.Event, containing the oauth2Cred to be deleted,
// else the function will panic.
// It returns a the deleted *state.Route.
func (s *oauth2CredCRUD) Delete(arg ...crud.Arg) (crud.Arg, error) {
event := eventFromArg(arg[0])
oauth2Cred := oauth2CredFromStuct(event)
cid := ""
if !utils.Empty(oauth2Cred.Consumer.Username) {
cid = *oauth2Cred.Consumer.Username
}
if !utils.Empty(oauth2Cred.Consumer.ID) {
cid = *oauth2Cred.Consumer.ID
}
err := s.client.Oauth2Credentials.Delete(nil, &cid, oauth2Cred.ID)
if err != nil {
return nil, err
}
return oauth2Cred, nil
}
// Update updates a Route in Kong.
// The arg should be of type diff.Event, containing the oauth2Cred to be updated,
// else the function will panic.
// It returns a the updated *state.Route.
func (s *oauth2CredCRUD) Update(arg ...crud.Arg) (crud.Arg, error) {
event := eventFromArg(arg[0])
oauth2Cred := oauth2CredFromStuct(event)
cid := ""
if !utils.Empty(oauth2Cred.Consumer.Username) {
cid = *oauth2Cred.Consumer.Username
}
if !utils.Empty(oauth2Cred.Consumer.ID) {
cid = *oauth2Cred.Consumer.ID
}
updatedOauth2Cred, err := s.client.Oauth2Credentials.Create(nil, &cid,
&oauth2Cred.Oauth2Credential)
if err != nil {
return nil, err
}
return &state.Oauth2Credential{Oauth2Credential: *updatedOauth2Cred}, nil
}
|