Skip to content
Snippets Groups Projects
Commit 4daee930 authored by Tore.Brede's avatar Tore.Brede
Browse files

GREG-165: Handling illegal fields

parent 7ec26afe
No related branches found
No related tags found
1 merge request!239GREG-165: Part 1 : Handle missing information from Feide
......@@ -323,7 +323,7 @@ class InvitedGuestView(GenericAPIView):
# It is not certain that all fields required will come from Feide, like the national ID number, so
# allow updates to empty fields to handle the case where the information is missing from Feide
# and the user has to enter it manually
illegal_fields = self._illegal_fields(
illegal_fields = self._illegal_updates(
data,
self.fields_allowed_to_update_if_invite
if feide_id is None
......@@ -340,13 +340,18 @@ class InvitedGuestView(GenericAPIView):
)
@staticmethod
def _illegal_fields(request_data, changeable_fields, person) -> List[str]:
def _illegal_updates(request_data, changeable_fields, person) -> List[str]:
person_data = request_data.get("person", {})
changed_fields = person_data.keys()
result = []
illegal_field_updates = []
for changed_field in changed_fields:
attribute = getattr(person, changed_field)
try:
attribute = getattr(person, changed_field)
except AttributeError:
# The property does not exist on person
illegal_field_updates.append(changed_field)
continue
if changed_field not in changeable_fields:
# It is still allowed to update fields where there is no existing value even if
......@@ -357,9 +362,9 @@ class InvitedGuestView(GenericAPIView):
else:
if attribute != person_data[changed_field]:
# There is an existing value
result.append(changed_field)
illegal_field_updates.append(changed_field)
return result
return illegal_field_updates
@staticmethod
def _get_identity_or_none(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment