added .gitignore example file that users can use at their local folders
[osm/RO.git] / utils.py
old mode 100755 (executable)
new mode 100644 (file)
index 81a0158..a5a7858
--- a/utils.py
+++ b/utils.py
@@ -22,7 +22,7 @@
 ##
 
 '''
-auxiliary_functions is a module that implements functions that are used by all openmano modules,
+utils is a module that implements functions that are used by all openmano modules,
 dealing with aspects such as reading/writing files, formatting inputs/outputs for quick translation
 from dictionaries to appropriate database dictionaries, etc.
 '''
@@ -167,9 +167,15 @@ def convert_str2boolean(data, items):
 
 def check_valid_uuid(uuid):
     id_schema = {"type" : "string", "pattern": "^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$"}
+    id_schema2 = {"type" : "string", "pattern": "^[a-fA-F0-9]{32}$"}
     try:
         js_v(uuid, id_schema)
         return True
     except js_e.ValidationError:
-        return False
+        try:
+            js_v(uuid, id_schema2)
+            return True
+        except js_e.ValidationError:
+            return False
+    return False