mirror of
https://github.com/ansible/awx.git
synced 2026-07-08 06:48:04 -02:30
create _survey_element_validation and use it for updating extra_vars
This commit is contained in:
@@ -137,7 +137,10 @@ class SurveyJobTemplateMixin(models.Model):
|
|||||||
if kw_value.startswith('$encrypted$') and kw_value != default:
|
if kw_value.startswith('$encrypted$') and kw_value != default:
|
||||||
kwargs_extra_vars[variable_key] = default
|
kwargs_extra_vars[variable_key] = default
|
||||||
|
|
||||||
if default is not None and variable_key in extra_vars:
|
if default is not None:
|
||||||
|
data = {variable_key: default}
|
||||||
|
errors = self._survey_element_validation(survey_element, data)
|
||||||
|
if not errors:
|
||||||
extra_vars[variable_key] = default
|
extra_vars[variable_key] = default
|
||||||
|
|
||||||
# Overwrite job template extra vars with explicit job extra vars
|
# Overwrite job template extra vars with explicit job extra vars
|
||||||
@@ -146,24 +149,16 @@ class SurveyJobTemplateMixin(models.Model):
|
|||||||
kwargs['extra_vars'] = json.dumps(extra_vars)
|
kwargs['extra_vars'] = json.dumps(extra_vars)
|
||||||
return kwargs
|
return kwargs
|
||||||
|
|
||||||
def survey_variable_validation(self, data):
|
def _survey_element_validation(self, survey_element, data):
|
||||||
errors = []
|
errors = []
|
||||||
if not self.survey_enabled:
|
if survey_element['variable'] not in data and survey_element['required']:
|
||||||
return errors
|
|
||||||
if 'name' not in self.survey_spec:
|
|
||||||
errors.append("'name' missing from survey spec.")
|
|
||||||
if 'description' not in self.survey_spec:
|
|
||||||
errors.append("'description' missing from survey spec.")
|
|
||||||
for survey_element in self.survey_spec.get("spec", []):
|
|
||||||
if survey_element['variable'] not in data and \
|
|
||||||
survey_element['required']:
|
|
||||||
errors.append("'%s' value missing" % survey_element['variable'])
|
errors.append("'%s' value missing" % survey_element['variable'])
|
||||||
elif survey_element['type'] in ["textarea", "text", "password"]:
|
elif survey_element['type'] in ["textarea", "text", "password"]:
|
||||||
if survey_element['variable'] in data:
|
if survey_element['variable'] in data:
|
||||||
if type(data[survey_element['variable']]) not in (str, unicode):
|
if type(data[survey_element['variable']]) not in (str, unicode):
|
||||||
errors.append("Value %s for '%s' expected to be a string." % (data[survey_element['variable']],
|
errors.append("Value %s for '%s' expected to be a string." % (data[survey_element['variable']],
|
||||||
survey_element['variable']))
|
survey_element['variable']))
|
||||||
continue
|
return errors
|
||||||
if 'min' in survey_element and survey_element['min'] not in ["", None] and len(data[survey_element['variable']]) < int(survey_element['min']):
|
if 'min' in survey_element and survey_element['min'] not in ["", None] and len(data[survey_element['variable']]) < int(survey_element['min']):
|
||||||
errors.append("'%s' value %s is too small (length is %s must be at least %s)." %
|
errors.append("'%s' value %s is too small (length is %s must be at least %s)." %
|
||||||
(survey_element['variable'], data[survey_element['variable']], len(data[survey_element['variable']]), survey_element['min']))
|
(survey_element['variable'], data[survey_element['variable']], len(data[survey_element['variable']]), survey_element['min']))
|
||||||
@@ -175,7 +170,7 @@ class SurveyJobTemplateMixin(models.Model):
|
|||||||
if type(data[survey_element['variable']]) != int:
|
if type(data[survey_element['variable']]) != int:
|
||||||
errors.append("Value %s for '%s' expected to be an integer." % (data[survey_element['variable']],
|
errors.append("Value %s for '%s' expected to be an integer." % (data[survey_element['variable']],
|
||||||
survey_element['variable']))
|
survey_element['variable']))
|
||||||
continue
|
return errors
|
||||||
if 'min' in survey_element and survey_element['min'] not in ["", None] and survey_element['variable'] in data and \
|
if 'min' in survey_element and survey_element['min'] not in ["", None] and survey_element['variable'] in data and \
|
||||||
data[survey_element['variable']] < int(survey_element['min']):
|
data[survey_element['variable']] < int(survey_element['min']):
|
||||||
errors.append("'%s' value %s is too small (must be at least %s)." %
|
errors.append("'%s' value %s is too small (must be at least %s)." %
|
||||||
@@ -189,7 +184,7 @@ class SurveyJobTemplateMixin(models.Model):
|
|||||||
if type(data[survey_element['variable']]) not in (float, int):
|
if type(data[survey_element['variable']]) not in (float, int):
|
||||||
errors.append("Value %s for '%s' expected to be a numeric type." % (data[survey_element['variable']],
|
errors.append("Value %s for '%s' expected to be a numeric type." % (data[survey_element['variable']],
|
||||||
survey_element['variable']))
|
survey_element['variable']))
|
||||||
continue
|
return errors
|
||||||
if 'min' in survey_element and survey_element['min'] not in ["", None] and data[survey_element['variable']] < float(survey_element['min']):
|
if 'min' in survey_element and survey_element['min'] not in ["", None] and data[survey_element['variable']] < float(survey_element['min']):
|
||||||
errors.append("'%s' value %s is too small (must be at least %s)." %
|
errors.append("'%s' value %s is too small (must be at least %s)." %
|
||||||
(survey_element['variable'], data[survey_element['variable']], survey_element['min']))
|
(survey_element['variable'], data[survey_element['variable']], survey_element['min']))
|
||||||
@@ -213,6 +208,18 @@ class SurveyJobTemplateMixin(models.Model):
|
|||||||
survey_element['choices']))
|
survey_element['choices']))
|
||||||
return errors
|
return errors
|
||||||
|
|
||||||
|
def survey_variable_validation(self, data):
|
||||||
|
errors = []
|
||||||
|
if not self.survey_enabled:
|
||||||
|
return errors
|
||||||
|
if 'name' not in self.survey_spec:
|
||||||
|
errors.append("'name' missing from survey spec.")
|
||||||
|
if 'description' not in self.survey_spec:
|
||||||
|
errors.append("'description' missing from survey spec.")
|
||||||
|
for survey_element in self.survey_spec.get("spec", []):
|
||||||
|
errors += self._survey_element_validation(survey_element, data)
|
||||||
|
return errors
|
||||||
|
|
||||||
|
|
||||||
class SurveyJobMixin(models.Model):
|
class SurveyJobMixin(models.Model):
|
||||||
class Meta:
|
class Meta:
|
||||||
|
|||||||
Reference in New Issue
Block a user