diff env/lib/python3.9/site-packages/galaxy/util/validation.py @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/env/lib/python3.9/site-packages/galaxy/util/validation.py	Mon Mar 22 18:12:50 2021 +0000
@@ -0,0 +1,37 @@
+""" Module for validation of incoming inputs.
+
+TODO: Refactor BaseController references to similar methods to use this module.
+"""
+
+from galaxy import exceptions
+from galaxy.util.sanitize_html import sanitize_html
+
+
+def validate_and_sanitize_basestring(key, val):
+    if not isinstance(val, str):
+        raise exceptions.RequestParameterInvalidException('%s must be a string or unicode: %s'
+                                                          % (key, str(type(val))))
+    return sanitize_html(val)
+
+
+def validate_and_sanitize_basestring_list(key, val):
+    try:
+        assert isinstance(val, list)
+        return [sanitize_html(t) for t in val]
+    except (AssertionError, TypeError):
+        raise exceptions.RequestParameterInvalidException('%s must be a list of strings: %s'
+                                                          % (key, str(type(val))))
+
+
+def validate_boolean(key, val):
+    if not isinstance(val, bool):
+        raise exceptions.RequestParameterInvalidException('%s must be a boolean: %s'
+                                                          % (key, str(type(val))))
+    return val
+
+
+# TODO:
+# def validate_integer(self, key, val, min, max):
+# def validate_float(self, key, val, min, max):
+# def validate_number(self, key, val, min, max):
+# def validate_genome_build(self, key, val):