-
Notifications
You must be signed in to change notification settings - Fork 2
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
feat(kotoutumiskoulutus): add audit logging #593
base: main
Are you sure you want to change the base?
Conversation
This implementation is based on the Spring Data EntityCallback API.
fun LoggingEventBuilder.tryAddUser(): LoggingEventBuilder { | ||
val userDetails = SecurityContextHolder.getContext().authentication?.principal as? CasUserDetails | ||
if (userDetails == null) { | ||
return this |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Vai olisko parempi lokittaa "user": null
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tää on ihan hyvä kysymys. OpenTelemetry ei tue null-arvoja attribuuteille, se oli ehkä mielessä tässä, vaikka ei sitä käytetäkään (vielä).
Tällä tavalla meidän pitää jokaiselle taululle muista kirjoittaa oma event handler. Onko tähän olemassa mitään generisempää tapaa, että saatais samoja callbackkeja kutsuttua riippumatta taulusta? |
Tämän voi kirjoittaa täysin geneerisesti, mutta tajusin nyt että tämä rajapinta toimii vain kun käyttää Springin generoituja repository-metodeja. YKIssä yliajamme |
This implementation is based on the Spring Data EntityCallback API. It does not conform to what's described on https://wiki.eduuni.fi/pages/viewpage.action?pageId=480353910.