Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
d7ad2b5b
Commit
d7ad2b5b
authored
Nov 15, 2021
by
Max Woolf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create one audit event per SAML config change
parent
490388aa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
25 deletions
+20
-25
ee/app/services/group_saml/saml_provider/base_service.rb
ee/app/services/group_saml/saml_provider/base_service.rb
+18
-17
ee/spec/support/shared_examples/services/group_saml/saml_provider/base_service_shared_examples.rb
.../group_saml/saml_provider/base_service_shared_examples.rb
+2
-8
No files found.
ee/app/services/group_saml/saml_provider/base_service.rb
View file @
d7ad2b5b
...
...
@@ -9,6 +9,10 @@ module GroupSaml
delegate
:group
,
to: :saml_provider
AUDIT_LOG_ALLOWLIST
=
%w[
enabled certificate_fingerprint sso_url enforced_sso enforced_group_managed_accounts prohibited_outer_forks default_membership_role git_check_enforced
]
.
freeze
def
initialize
(
current_user
,
saml_provider
,
params
:)
@saml_provider
=
saml_provider
@current_user
=
current_user
...
...
@@ -26,14 +30,18 @@ module GroupSaml
end
end
if
saml_provider
.
previous_changes
.
present?
::
Gitlab
::
Audit
::
Auditor
.
audit
(
saml_provider
.
previous_changes
.
each
do
|
attribute
,
changes
|
next
unless
AUDIT_LOG_ALLOWLIST
.
include?
(
attribute
)
audit_context
=
{
name:
audit_name
,
author:
current_user
,
scope:
saml_provider
.
group
,
target:
saml_provider
.
group
,
message:
message
)
message:
message
(
attribute
,
changes
)
}
::
Gitlab
::
Audit
::
Auditor
.
audit
(
audit_context
)
end
end
...
...
@@ -55,19 +63,12 @@ module GroupSaml
raise
ActiveRecord
::
Rollback
end
def
message
audit_logs_allowlist
=
%w[enabled certificate_fingerprint sso_url enforced_sso enforced_group_managed_accounts prohibited_outer_forks default_membership_role git_check_enforced]
change_text
=
saml_provider
.
previous_changes
.
map
do
|
k
,
v
|
next
unless
audit_logs_allowlist
.
include?
(
k
)
if
v
[
0
].
nil?
"
#{
k
}
changed to
#{
v
[
1
]
}
. "
else
"
#{
k
}
changed from
#{
v
[
0
]
}
to
#{
v
[
1
]
}
. "
end
end
.
join
def
message
(
attribute
,
changes
)
change_text
=
if
changes
[
0
].
nil?
"
#{
attribute
}
changed to
#{
changes
[
1
]
}
. "
else
"
#{
attribute
}
changed from
#{
changes
[
0
]
}
to
#{
changes
[
1
]
}
. "
end
"Group SAML SSO configuration changed:
#{
change_text
}
"
end
...
...
ee/spec/support/shared_examples/services/group_saml/saml_provider/base_service_shared_examples.rb
View file @
d7ad2b5b
...
...
@@ -24,7 +24,7 @@ RSpec.shared_examples 'base SamlProvider service' do
author:
current_user
,
scope:
group
,
target:
group
})
).
and_call_original
).
exactly
(
4
).
times
.
and_call_original
expect
do
service
.
execute
...
...
@@ -33,13 +33,7 @@ RSpec.shared_examples 'base SamlProvider service' do
.
and
change
{
group
.
saml_provider
&
.
certificate_fingerprint
}.
to
(
fingerprint
)
.
and
change
{
group
.
saml_provider
&
.
enabled?
}.
to
(
true
)
.
and
change
{
group
.
saml_provider
&
.
enforced_sso?
}.
to
(
true
)
.
and
change
{
AuditEvent
.
count
}.
by
(
1
)
expect
(
AuditEvent
.
last
.
details
[
:custom_message
])
.
to
match
(
%r{enabled changed([
\w\s
]*)to true}
)
.
and
match
(
%r{enforced_sso changed([
\w\s
]*)to true}
)
.
and
match
(
%r{https:
\/\/
test}
)
.
and
match
(
%r{
#{
fingerprint
}
}
)
.
and
change
{
AuditEvent
.
count
}.
by
(
4
)
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment