Merge from trunk
[plcapi.git] / trunk / PLC / Methods / GetKeyTypes.py
diff --git a/trunk/PLC/Methods/GetKeyTypes.py b/trunk/PLC/Methods/GetKeyTypes.py
new file mode 100644 (file)
index 0000000..32bb658
--- /dev/null
@@ -0,0 +1,22 @@
+from PLC.Faults import *
+from PLC.Method import Method
+from PLC.Parameter import Parameter, Mixed
+from PLC.KeyTypes import KeyType, KeyTypes
+from PLC.Auth import Auth
+
+class GetKeyTypes(Method):
+    """
+    Returns an array of all valid key types.
+    """
+
+    roles = ['admin', 'pi', 'user', 'tech', 'node']
+
+    accepts = [
+        Auth()
+        ]
+
+    returns = [KeyType.fields['key_type']]
+
+
+    def call(self, auth):
+        return [key_type['key_type'] for key_type in KeyTypes(self.api)]