-
Notifications
You must be signed in to change notification settings - Fork 165
[RORDEV-1481] New audit serializers, including fully configurable serializer #1140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 25 commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
549a1b4
qs
mgoworko 9054992
qs
mgoworko 058639b
Merge remote-tracking branch 'origin/develop' into rordev-1481
mgoworko 2fa284c
qs
mgoworko 4ef563b
qs
mgoworko ab6a55c
qs
mgoworko ac12fea
qs
mgoworko 003c334
qs
mgoworko b39f217
qs
mgoworko 1c65e81
Cross compile from 2.11 to 3
mgoworko 5cc3848
qs
mgoworko f063e8d
refactor
mgoworko 083050f
tests
mgoworko b3e287d
Merge remote-tracking branch 'origin/develop' into rordev-1481
mgoworko 5b5cbc8
qs
mgoworko 0e598b0
adjustments
mgoworko ff9347c
fix audit cross compile
mgoworko 1cb7be1
Merge remote-tracking branch 'origin/develop' into rordev-1481
mgoworko 0ab38e6
review changes
mgoworko 38b8449
review changes
mgoworko 407b757
Merge remote-tracking branch 'origin/develop' into rordev-1481
mgoworko edb8373
review changes
mgoworko 4f61b41
Merge remote-tracking branch 'origin/develop' into rordev-1481
mgoworko 2146ba6
review changes
mgoworko 2bb638a
AuditEnvironmentContext refactor and fix
mgoworko 9536e4a
review changes
mgoworko 61b5278
Merge remote-tracking branch 'origin/develop' into rordev-1481
mgoworko 627e005
review changes
mgoworko 182f091
review changes
mgoworko 637a4ee
Merge remote-tracking branch 'origin/develop' into rordev-1481
mgoworko b198ac2
fix doc
mgoworko ceadacb
review changes
mgoworko 249e184
bump pre version
mgoworko cd75223
tests moved to audit module
mgoworko File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
coutoPL marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
audit/src/main/scala/tech/beshu/ror/audit/instances/FullAuditLogSerializer.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* This file is part of ReadonlyREST. | ||
* | ||
* ReadonlyREST is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* ReadonlyREST is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with ReadonlyREST. If not, see http://www.gnu.org/licenses/ | ||
*/ | ||
package tech.beshu.ror.audit.instances | ||
|
||
import org.json.JSONObject | ||
import tech.beshu.ror.audit.utils.AuditSerializationHelper.AllowedEventMode.IncludeAll | ||
import tech.beshu.ror.audit.instances.DefaultAuditLogSerializerV2.defaultV2AuditFields | ||
import tech.beshu.ror.audit.utils.AuditSerializationHelper | ||
import tech.beshu.ror.audit.{AuditLogSerializer, AuditResponseContext} | ||
|
||
class FullAuditLogSerializer extends AuditLogSerializer { | ||
coutoPL marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
override def onResponse(responseContext: AuditResponseContext): Option[JSONObject] = | ||
coutoPL marked this conversation as resolved.
Show resolved
Hide resolved
|
||
AuditSerializationHelper.serialize( | ||
responseContext = responseContext, | ||
fields = defaultV2AuditFields, | ||
coutoPL marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
allowedEventMode = IncludeAll | ||
) | ||
|
||
} |
34 changes: 34 additions & 0 deletions
34
audit/src/main/scala/tech/beshu/ror/audit/instances/FullAuditLogWithQuerySerializer.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* This file is part of ReadonlyREST. | ||
* | ||
* ReadonlyREST is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* ReadonlyREST is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with ReadonlyREST. If not, see http://www.gnu.org/licenses/ | ||
*/ | ||
package tech.beshu.ror.audit.instances | ||
|
||
import org.json.JSONObject | ||
import tech.beshu.ror.audit.utils.AuditSerializationHelper.AllowedEventMode.IncludeAll | ||
import tech.beshu.ror.audit.instances.QueryAuditLogSerializerV2.queryV2AuditFields | ||
import tech.beshu.ror.audit.utils.AuditSerializationHelper | ||
import tech.beshu.ror.audit.{AuditEnvironmentContext, AuditLogSerializer, AuditResponseContext} | ||
|
||
class FullAuditLogWithQuerySerializer extends AuditLogSerializer { | ||
|
||
override def onResponse(responseContext: AuditResponseContext): Option[JSONObject] = | ||
AuditSerializationHelper.serialize( | ||
responseContext = responseContext, | ||
fields = queryV2AuditFields, | ||
coutoPL marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
allowedEventMode = IncludeAll | ||
) | ||
|
||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.