patch.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /*
  2. Copyright 2018 The Knative Authors
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package duck
  14. import (
  15. "encoding/json"
  16. jsonmergepatch "github.com/evanphx/json-patch"
  17. "github.com/mattbaird/jsonpatch"
  18. )
  19. func marshallBeforeAfter(before, after interface{}) ([]byte, []byte, error) {
  20. rawBefore, err := json.Marshal(before)
  21. if err != nil {
  22. return nil, nil, err
  23. }
  24. rawAfter, err := json.Marshal(after)
  25. if err != nil {
  26. return rawBefore, nil, err
  27. }
  28. return rawBefore, rawAfter, nil
  29. }
  30. func CreateMergePatch(before, after interface{}) ([]byte, error) {
  31. rawBefore, rawAfter, err := marshallBeforeAfter(before, after)
  32. if err != nil {
  33. return nil, err
  34. }
  35. return jsonmergepatch.CreateMergePatch(rawBefore, rawAfter)
  36. }
  37. func CreatePatch(before, after interface{}) (JSONPatch, error) {
  38. rawBefore, rawAfter, err := marshallBeforeAfter(before, after)
  39. if err != nil {
  40. return nil, err
  41. }
  42. return jsonpatch.CreatePatch(rawBefore, rawAfter)
  43. }
  44. type JSONPatch []jsonpatch.JsonPatchOperation
  45. func (p JSONPatch) MarshalJSON() ([]byte, error) {
  46. return json.Marshal([]jsonpatch.JsonPatchOperation(p))
  47. }