Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
greg
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
it-bott-integrasjoner
greg
Commits
4daee930
Commit
4daee930
authored
3 years ago
by
Tore.Brede
Browse files
Options
Downloads
Patches
Plain Diff
GREG-165: Handling illegal fields
parent
7ec26afe
No related branches found
No related tags found
1 merge request
!239
GREG-165: Part 1 : Handle missing information from Feide
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gregui/api/views/invitation.py
+11
-6
11 additions, 6 deletions
gregui/api/views/invitation.py
with
11 additions
and
6 deletions
gregui/api/views/invitation.py
+
11
−
6
View file @
4daee930
...
...
@@ -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_
field
s
(
illegal_fields
=
self
.
_illegal_
update
s
(
data
,
self
.
fields_allowed_to_update_if_invite
if
feide_id
is
None
...
...
@@ -340,13 +340,18 @@ class InvitedGuestView(GenericAPIView):
)
@staticmethod
def
_illegal_
field
s
(
request_data
,
changeable_fields
,
person
)
->
List
[
str
]:
def
_illegal_
update
s
(
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
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment