DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports Events Over 2 million developers have joined DZone. Join Today! Thanks for visiting DZone today,
Edit Profile Manage Email Subscriptions Moderation Admin Console How to Post to DZone Article Submission Guidelines
View Profile
Sign Out
Refcards
Trend Reports
Events
Zones
Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones AWS Cloud
by AWS Developer Relations
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Partner Zones
AWS Cloud
by AWS Developer Relations
11 Monitoring and Observability Tools for 2023
Learn more
  1. DZone
  2. Coding
  3. Frameworks
  4. Integrating Camunda With Drupal: Why and How

Integrating Camunda With Drupal: Why and How

In addition to becoming a replacement for the Camunda task list interface, a portal built on Drupal can provide powerful CMS capabilities to enhance the BPM portal.

Nilanjana Dey user avatar by
Nilanjana Dey
·
Mar. 07, 17 · Tutorial
Like (2)
Save
Tweet
Share
9.16K Views

Join the DZone community and get the full member experience.

Join For Free

In certain situations, where multiple business units and applications are involved, a combination of a Business Process Model and Notation 2.0 (BPMN 2.0) Workflow Management System and a content management system is a great fit.

In this post, we look at how Drupal was integrated with Camunda, an open-source BPMN workflow engine, to solve the need of an enterprise client.

When Can You Use Camunda With Drupal?

A common use case of the Drupal-Camunda integration is when Drupal is used as a BPMN web portal. Here's how Drupal fits into the Camunda landscape:

BPM portal with open source workflow engine camunda and Druapl

BPMN is a global standard for business process modeling. In fact, it’s even taught in universities as a course. It is an essential component for a successful business-IT alignment within an organization.

What Is a BPM Portal?

A BPM Portal allows you to involve more users to your workflow — especially those who are outside of the organization.

A portal built in Drupal allows you to:

  • Easily involve end users.
  • Easily provide BPM access to customers, vendors, partners and other users outside of the organization.
  • Initiate the workflow processes.
  • Complete or move forward tasks.
  • Build a user dashboard and Activity/Task list.
  • Manage task assignment.
  • Provide real-time information and status of ongoing processes to the workflow users.

Why Do I Need This Integration?

While the core workflow users may be trained to use the default Camunda task list interface (the out of the box application which allows users to complete workflow tasks), not all users can be exposed to the Camunda interface.

There are other cases where your users are already on a web portal (built on Drupal in many organizations) and you would want the workflow screens integrated with the same portal.

In addition to becoming a replacement for the Camunda task list interface, a portal built on Drupal can provide powerful CMS capabilities to enhance the BPM portal.

  • Beyond task forms — a workflow task doesn’t have to be just a form. Rules can be configured to complete tasks on user actions such as registration, login, or even watching a video on a web page.
  • Also, several content pages can be associated with a workflow task.
  • Other powerful Drupal features such as personalization (i.e., modify the workflow based on user’s location or language) or content management can be leveraged for complex workflows.
  • Sending and management of notifications can be done in Drupal, as well.
  • User management including registration and user groups.

How Does a Drupal/Camunda Integration Work?

In this integrated situation, users may interact with Drupal to complete each step of the workflow, while Drupal workflow admins may configure the tasks and actions for each step. Users can use the modular drag-and-drop to feature of Camunda to create a workflow and define the tasks.

At every stage, Camunda interacts with Drupal to inform it of the next workflow step and track basic information such as the time taken to complete a workflow step. For the end user, that the Camunda is running at the backend makes no difference; they can simply check the tasks that are running in the workflow and their statuses, and respond accordingly.

The interaction between the Camunda workflow engine and Drupal is described in the diagram below:

Camunda Drupal Integration diagram

Let’s take an example of a very simple workflow process (diagram built in Camunda modeler) and see how it can be integrated with Drupal.

workflow in camunda modeler

1. Set Up Task Forms in Drupal

Task forms can be configured using the webforms module or it could be a Drupal content type.

We created a custom connector module that connected web form submissions with Camunda using their REST APIs.

Here is a screenshot of the basic workflow initiation step on the Drupal BPM portal:

Workflow initiation screenshot

Upon submission of this form, a new process instance (workflow) will be initiated in Camunda.

The first task (“Approve Request”) will be available on the BPM portal dashboard.

As a new process instance is initiated in Camunda, the state of the workflow can be viewed in Camunda’s cockpit. The cockpit will show something like this after the first step:

Workflow state in Camunda cockpit

As you’ll note above, a unique process instance ID is associated with our workflow and an unassigned task has been created in Camunda.

In parallel, two nodes are also created in Drupal by our connector modules. These nodes are of content types “Camunda Request” and “Camunda Task” respectively. Along with some content fields, we store the unique Camunda request and Camunda task IDs in these nodes.

The Camunda Task node has the title “Approve Request” based on the workflow diagram from our example above:

Camunda Tsk Node: Approve Request2. Build a Workflow Dashboard

Using the Drupal Views module, we build a user dashboard that allows each workflow user to see and claim eligible workflow tasks.

The task list will be unique for each user, depending on their role:

Camunda Task List

A user can claim an open task from the dashboard and take appropriate action once the task is assigned to them. As the task is claimed, a REST API call ensures that the task assignment is reflected in the Camunda engine.

Task claimed in the BPM portal:

Task claimed in BPM portal

Task assignment reflected in Camunda:

Task assignment reflected in Camunda

The workflow user can use a task form to complete (“Approve Request” in our workflow example) the task:

task form

Task Completed in Camunda and the next task initiation:

Task Completed in Camunda and the next task initiated

As per our example workflow, the “Approve Request” task is completed at this stage and a new task “Close Request” is created in the BPM portal and Camunda. Another node of type “Camunda Task” is created.

new task “Close Request” is created

The newly created task can be claimed from the dashboard and the workflow can process forward.

newly created task

3. Maximum Flexibility and Minimum Duplication

For a successful integration between Drupal and Camunda, the following should be considered.

  • Ensure all process definition is stored in Camunda.
  • Let the BPM engine dictate the direction of the workflows.
  • Drupal is used to manage content-related workflows tasks and to mark tasks as complete.

Here is a breakdown of what data to store in which system

Breakdown of data stored in Camunda and Drupal

Camunda Connector Drupal Module

For our clients, we created a Camunda Connector Drupal module:

Camunda Connector Drupal module

The module has some of the following features:

  • Allows Drupal to connect with Camunda using REST.
  • User dashboard to claim, assign, and complete tasks.
  • Configure forms and other screens for a task.
  • Configure rules (using the Rules module) for a task.
  • Sandbox.

Why Use Camunda When Drupal Can Handle Workflows?

Before I end, you may wonder why we really need Camunda when Drupal has pretty powerful workflow capabilities.

Here are a few important advantages that Camunda provides out-of-the-box:

  • Ability to model BPMN diagrams and easily manage workflow steps.
  • Process definition history and versioning.
  • Process definition heatmap:

Heatmap

  • Process instance history: user actions, audit logs with timestamps:

Process Instance History

  • Process duration report.
  • REST APIs.
  • BPM engine shared by multiple applications within an organization.

So, give Camunda a try! 

Resources

Here are a few resources to get started:

  • Getting Started With Camunda 

  • Camunda Examples 

  • Contribute to Camunda 

  • Integrating Camunda and Drupal 

Camunda Drupal Workflow engine Task (computing)

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Testing Repository Adapters With Hexagonal Architecture
  • Java Code Review Solution
  • Important Data Structures and Algorithms for Data Engineers
  • Java REST API Frameworks

Comments

Partner Resources

X

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends: