from PLC.Faults import * from PLC.Method import Method from PLC.Parameter import Parameter, Mixed from PLC.Keys import Key, Keys from PLC.Auth import Auth can_update = lambda (field, value): field in \ ['key_type', 'key'] class UpdateKey(Method): """ Updates the parameters of an existing key with the values in key_fields. Non-admins may only update their own keys. Returns 1 if successful, faults otherwise. """ roles = ['admin', 'pi', 'tech', 'user'] key_fields = dict(filter(can_update, Key.fields.items())) accepts = [ Auth(), Key.fields['key_id'], key_fields ] returns = Parameter(int, '1 if successful') def call(self, auth, key_id, key_fields): return 1