Automating Workflows with Object Actions in Liferay 7.4

Automating Workflows with Object Actions in Liferay 7.4

Introduction

Object actions provide unique business logic for object entry events that can be executed either automatically or manually. For example, sending email notifications following entry modifications, delivering entry event data to a webhook URL, and running custom Groovy scripts after an entry is added.

When applying automatic triggers, Liferay listens for the event to occur and then automatically performs the action based on specified conditions.

In order to use the standalone trigger, Liferay creates a headless API and adds the action to the Actions menu ( icon-actions ) for object entries. You can map the action to a button fragment, but it has to be executed manually.

Prerequisites

Liferay 7.4+

Creating Object Action:

  1. Go to the desired Object you want to add an action and click on the Actions tab and click Add ( icon-add ).
  2. In the Basic Info tab add necessary information and turn on the Active button to activate object action.
  3. To define the custom trigger, conditions, and action, select the Action Builder tab.

Trigger:

Trigger Description
On After Add When the object entry is added
On After Attachment Download When the object entry attachment is downloaded
On After Delete When the object entry is deleted
On After Update When the object entry is updated
Standalone Triggered manually on the object entry Action button
Triggers in Object Actions

Condition:

Check Enable Condition to add an expression so that the action is being triggered only if the condition is fulfilled. Click Code ( icon-code ) for the reference to available expressions.

Condition in Object Actions

Action:

Liferay Objects provides these action types:

  1. Add an Object Entry: Create entries for an active object.
  2. Notification: Send email or user notifications based on an existing template.
  3. Update an Object Entry: Update the fields in the current object entry.
  4. Webhook: Deliver a payload to a URL.
  5. Groovy Script: Execute Groovy scripts.

Note:

From DXP 2024.Q2/Portal 7.4 GA120, due to security reasons scripting is disabled by default. You can enable it in System Settings → Script Management (under the Security category).

1. Add an Object Entry:

To add an entry automatically using actions, it is required to first select a published object. Once you select an existing object, it shows all required fields if any or you can add more fields by clicking Add ( icon-add ) button.

When defining the values for these fields, you’ll notice an Input as a Value checkbox. Here’s how it works:

  • Checked: A predefined static value will be added to the field.
  • Unchecked: Either a predefined value or an expression will be used which sets value from the object dynamically.
Action in Object Actions

2. Notification:

Notification actions can be used to send user or email notifications for object entries.

Choose a notification template to identify sender, recipient, and content for each message. Your instance also needs a configured mail server for email notifications.

Notification Action in Object Actions

3. Update an Object Entry:

To update fields of current object entry, select Update an Object Entry.

To update the existing object, you must select the field or fields and enter new values. To use expressions that set values dynamically, click Code ( icon-code ). Alternatively, you can input these values directly.

Updating Object Entry in Object Actions

4. Webhook:

Webhook actions are like secret messengers! They send data packages to a specific web address. You'll need to tell Liferay where to send this information. And for extra security, you can add a secret code to make sure only authorized recipients can access the data.

Webhook in Object Actions

5. Groovy Script:

Groovy scripts are used to perform specific tasks. Enter the inside the code block and hit save. Liferay provides some predefined variables which we can use directly in the script.

Groovy Scripts in Object Actions

While the examples above showcase automatic action triggers, there are scenarios where manual actions may be necessary. Let’s explore how to effectively integrate and implement them.

Manual Actions:

The actions become manual rather than automatic when you apply a standalone trigger for object actions. Use these techniques to get started these actions:

  • The object’s UI
  • Dedicated action APIs
  • Buttons in pages

Select Standalone option from the action trigger.

Trigger actions via the Object Entry UI:

Active standalone actions are accessible through the Actions menu in object entries. Use the UI to execute these actions.

  1. Go to the object entries page and click on the Actions button (icon-actions).
  2. There you can find the standalone action just created.
Standalone Action in Object Actions

Trigger Actions via APIs

Liferay will automatically create headless APIs for all published objects. It consists headless APIs

To find these APIs,

  1. Open Liferay’s API Explorer at [server]:[port]/o/api (e.g., localhost:8080/o/api)
  2. Click REST Applications and select your custom object definition. You can find the objects with c/[pluralobjectlabel] naming pattern (e.g., c/courses).

For each standalone action, Liferay create two PUT headless APIs: one that uses the entry’s ID and another that uses the entry’s external reference code (ERC).

Standalone REST APIs in Object Actions

Trigger Actions via Pages:

Actions via pages in Liferay can be created using fragments. You can map standalone actions to buttons on either content pages or display page templates.

  1. Mapping actions using Liferay’s out-of-the-box (OOTB) buttons:
    1. Add the button widget to the page by dragging and dropping it, then click on the link submenu of button.
    2. You can find the Mapping tab in the properties menu on the right side. Select the desired object entry from the list by clicking on Item.
    3. From the Field dropdown, navigate to the Actions section and select the appropriate action.
Create Actions using Buttons in Object Actions
  1. Mapping actions using customized buttons:
    1. Create a new basic fragment and add the attributes data-lfr-editable-id="action" and data-lfr-editable-type="action" to the button tag.
<button class="btn btn-primary" data-lfr-editable-id="action" data-lfr-editable-type="action">
	Send Mail
</button>
    1. After creating the custom fragment, follow the same steps as described for the OOTB buttons above.
    2. You will find a specific section called Actions in the properties menu. Click on the Action tab and select appropriate object entry item and action.
    3. You will find two sections: Success and Error Interactions. You can explore all options in which the object actions were successful or failed.
Create Actions using Custom Buttons in Object Actions

Object Action Permissions:

Permissions are automatically generated by Liferay to manage which roles are able to perform stand-alone actions. Every permission follows the action.[actionName] naming pattern (e.g., action.sendMail).

Permissions in Object Actions

Conclusion

Liferay's Objects framework provides a robust system for designing and managing object actions, allowing users to automate processes and enhance functionality within their applications. Businesses can tailor actions by understanding the various action types—such as notifications, webhooks, and Groovy scripts. The platform also supports manual actions, which can be triggered via the user interface, APIs, or page buttons, allowing for greater flexibility in execution. This comprehensive approach to object actions allows users to create dynamic, responsive applications that speed up workflows and improve user engagement.

Let's make something awesome together

We are excited about the opportunity to learn more about your business and how
we can help you achieve your goals in the digital world.