Skip to content

Commit b265ceb

Browse files
committed
Restore non-exact matching of last word to support y->ies plurals.
Fixes ManageIQ#376. Partially undoes 783c58b.
1 parent 8be7874 commit b265ceb

File tree

1 file changed

+23
-12
lines changed

1 file changed

+23
-12
lines changed

lib/kubeclient/common.rb

+23-12
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,13 @@ def discover
132132
end
133133

134134
def self.parse_definition(kind, name)
135-
# Kubernetes gives us have 3 inputs:
136-
# kind: "ComponentStatus"
137-
# name: "componentstatuses"
138-
# singularName: "componentstatus" (usually kind.downcase)
135+
# Kubernetes gives us 3 inputs:
136+
# kind: "ComponentStatus", "NetworkPolicy", "Endpoints"
137+
# name: "componentstatuses", "networkpolicies", "endpoints"
138+
# singularName: "componentstatus" etc (usually omitted, defaults to kind.downcase)
139139
# and want to derive singular and plural method names, with underscores:
140-
# "component_status"
141-
# "component_statuses"
140+
# "network_policy"
141+
# "network_policies"
142142
# kind's CamelCase word boundaries determine our placement of underscores.
143143

144144
if IRREGULAR_NAMES[kind]
@@ -150,13 +150,24 @@ def self.parse_definition(kind, name)
150150
# But how? If it differs from kind.downcase, kind's word boundaries don't apply.
151151
singular_name = kind.downcase
152152

153-
if name.start_with?(kind.downcase)
154-
plural_suffix = name[kind.downcase.length..-1] # "es"
155-
singular_underscores = ClientMixin.underscore_entity(kind) # "component_status"
156-
method_names = [singular_underscores, singular_underscores + plural_suffix]
157-
else
158-
# Something weird, can't infer underscores for plural so just give them up
153+
if !(/[A-Z]/ =~ kind)
154+
# Some custom resources have a fully lowercase kind - can't infer underscores.
159155
method_names = [singular_name, name]
156+
else
157+
# Some plurals are not exact suffixes, e.g. NetworkPolicy -> networkpolicies.
158+
# So don't expect full last word to match.
159+
/^(?<prefix>(.*[A-Z]))(?<singular_suffix>[^A-Z]*)$/ =~ kind # "NetworkP", "olicy"
160+
if name.start_with?(prefix.downcase)
161+
plural_suffix = name[prefix.length..-1] # "olicies"
162+
prefix_underscores = ClientMixin.underscore_entity(prefix) # "network_p"
163+
p [prefix, prefix_underscores, singular_suffix, plural_suffix]
164+
165+
method_names = [prefix_underscores + singular_suffix, # "network_policy"
166+
prefix_underscores + plural_suffix] # "network_policies"
167+
else
168+
# Something weird, can't infer underscores for plural so just give them up
169+
method_names = [singular_name, name]
170+
end
160171
end
161172
end
162173

0 commit comments

Comments
 (0)