You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: developers/backend-api/entity-audit.md
+29-2Lines changed: 29 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ Live supports storing an `EntityAudit` in two forms: a _database record_ and/or
8
8
9
9
{% hint style="info" %} This feature is disabled by default. {% endhint %}
10
10
11
-
## Auditable entities
11
+
## Live auditable entities
12
12
13
13
There are some rules to an entity to be available for auditing. The `EntityAuditListener` is the base class of the listeners and apply some filters before auditing a entity:
14
14
@@ -18,6 +18,31 @@ There are some rules to an entity to be available for auditing. The `EntityAudit
18
18
19
19
{% hint style="warning" %} **Delete operations do not store the complete content** of the entity due to a technical reason. In delete operations the Hibernate Listener can no longer have access to a relationship of the target entity. Another point is that this operation do not change the last version of the content being deleted and therefore would be a resource waste. {% endhint %}
20
20
21
+
## Plugin auditable entities
22
+
23
+
Starting in version 3.36.0, **Live** provides new API entry that permits plugins to register their own __Hibernate Session Factory__ into Live to expand the auditing features to the plugin's entities. Live will use the plugin's __Hibernate Session Factory__ to register a `EntityAuditDBListener` with all necessary `TypeAdapters` and used it to search for `EntityAudits` entities in the auditing endpoint (/rest/entity-audit).
24
+
25
+
```java
26
+
/* This TypeAdapter is including an instance of EntityContext to provide a way to recovery the user by its ID */
It is also possible to extend the listener in order to customize the common rules and add more skip conditions to avoid auditing a write operation. With that in hand the plugin can register the listener by itself in its _Hibernate SessionFactory_ as this snippet bellow:
As said before, if the feature is enabled in the system configurations, the write operations of entities will be stored containing the current version of the entity in json format, e.g. the `Plugin` entity:
@@ -97,4 +122,6 @@ This endpoint retrieves the entity content from an `EntityAudit`. It is used to
97
122
98
123
If needed, the user can use the result of this method to roll back parts or all of the current version of an entity by calling the save method on the related resource class.
99
124
100
-
{% hint style="warning"%} Getting an EntityAudit that represents a delete operation will return a BAD_REQUEST. As explained before, EntityAudits of delete operations do not hold an entity content {% endhint %}
125
+
{% hint style="warning"%} Getting an EntityAudit that represents a delete operation will return a BAD_REQUEST. As explained before, EntityAudits of delete operations do not hold an entity content {% endhint %}
126
+
127
+
{% hint style="info"%} A change in version 3.36.0 was made in the list of EntityAudit returned by the listing endpoints (List by type and List by type and id).That change replaces the `author` field from a structure like `{"id":1, "name":"someone"}` to a simple integer representing the id. This was necessary to keep the model of EntityAudit from Live and the plugins the same as the plugins do not store users information to fill in the value.
0 commit comments