Skip to content

Commit

Permalink
Merge pull request #24 from intelie/feature/entity-audit-api-plugin-s…
Browse files Browse the repository at this point in the history
…essions

Improvement in entity audit documentation
  • Loading branch information
hugomcs authored Sep 29, 2023
2 parents 8430559 + 4963e7e commit 0f239e5
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions developers/backend-api/entity-audit.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Live supports storing an `EntityAudit` in two forms: a _database record_ and/or

{% hint style="info" %} This feature is disabled by default. {% endhint %}

## Auditable entities
## Live auditable entities

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:

Expand All @@ -18,6 +18,31 @@ There are some rules to an entity to be available for auditing. The `EntityAudit

{% 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 %}

## Plugin auditable entities

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).

```java
/* This TypeAdapter is including an instance of EntityContext to provide a way to recovery the user by its ID */
EntityContext entityContext = live.data().getContext();
AssetTypeAdapter assetTypeAdapter = new AssetTypeAdapter(entityContext);
TypeAdapterDescriptor<AssetDTO, Asset> typeAdapterDescriptor = new TypeAdapterDescriptor<>("asset", Asset.class, assetTypeAdapter, AssetDTO::new);

EntityAuditOptions options = new EntityAuditOptions(Collections.singletonList(typeAdapterDescriptor));
live.data().auditHibernateSessions(sessionFactory, options);
```

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 Session Factory_ as this snippet bellow:

```java
EntityAuditDBListener myListener = ...

EventListenerRegistry registry = ((SessionFactoryImpl) sessionFactory).getServiceRegistry().getService(EventListenerRegistry.class);
registry.getEventListenerGroup(EventType.POST_INSERT).appendListener(myListener);
registry.getEventListenerGroup(EventType.POST_UPDATE).appendListener(myListener);
registry.getEventListenerGroup(EventType.POST_DELETE).appendListener(myListener);
```

## Using audit as versioning

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:
Expand Down Expand Up @@ -97,4 +122,6 @@ This endpoint retrieves the entity content from an `EntityAudit`. It is used to

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.

{% 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 %}
{% 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 %}

{% 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 comments on commit 0f239e5

Please sign in to comment.