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