helpers.go 763 B

123456789101112131415161718192021222324252627282930313233343536
  1. //go:build go1.12
  2. // +build go1.12
  3. package genopenapi
  4. import (
  5. "strings"
  6. "golang.org/x/text/cases"
  7. "golang.org/x/text/language"
  8. )
  9. func fieldName(k string) string {
  10. return strings.ReplaceAll(cases.Title(language.AmericanEnglish).String(k), "-", "_")
  11. }
  12. // this method will filter the same fields and return the unique one
  13. func getUniqueFields(schemaFieldsRequired []string, fieldsRequired []string) []string {
  14. var unique []string
  15. var index *int
  16. for j, schemaFieldRequired := range schemaFieldsRequired {
  17. index = nil
  18. for i, fieldRequired := range fieldsRequired {
  19. i := i
  20. if schemaFieldRequired == fieldRequired {
  21. index = &i
  22. break
  23. }
  24. }
  25. if index == nil {
  26. unique = append(unique, schemaFieldsRequired[j])
  27. }
  28. }
  29. return unique
  30. }