User task nodes provide a flexible framework to defining and configuring UI templates and actions for specific template config nodes, such as an upload file button.

Prerequisites

  • Access Permissions: Ensure that you have the necessary permissions to use the Documents Plugin. The user account used for these operations should have the required access rights.

  • Kafka Configuration: Verify that the Kafka messaging system is properly configured and accessible. The Documents Plugin relies on Kafka for communication between nodes.

    • Kafka Topics: Familiarize yourself with the Kafka topics used for these operations (later in this section)

To upload a document using this process, follow the steps outlined below.

Uploading and reviewing a document - step by step

After exploring how to generate documents in the previous section, let’s create a process that enables users to generate a document, review/sign it, and subsequently upload it again.

Consider a scenario where a user inputs data, a document is generated for preview, and the user must then sign and uploads it. The following types of nodes are involved:

Configuring the process

  1. Follow the steps in Generating from HTML templates to set up the document generation part of the process.

If your goal is to only upload a new file without generating it from templates or requiring user input, you can skip the template generation step.

After following the steps you should have something similar to the following request/response examples:

Request message example

This JSON structure represents a Kafka message sent through the ..in topic to initiate a request in the Process Engine. It includes information for generating an “AccountCreation” document with a custom ID “119237” in English. Data specifies client details extracted dynamically from user input (first name, last name, age, country) and company information (name, registration date).

This an example of a message that follows the custom integration data model.

{
  "documentList": [
    {
      "customId": "119246", //this will match the name of the folder in the storage solution
      "templateName": "AccountCreation",
      "language": "en",
      "data": {
        "application": {
          "client": {
            "firstName": "John",
            "lastName": "Doe",
            "age": "33",
            "country": "AU"
          },
          "company": {
            "name": "ACME",
            "registrationDate": "24.01.2024"
          }
        }
      },
      "includeBarcode": false
    }
  ]
}

Response message example

This JSON structure represents the response received on the ..out Kafka topic, where the Process Engine expects a reply. It contains details about the generated PDF file corresponding to the custom ID “119237” and the “AccountCreation” template. The response provides file-related information such as file ID, document type, document label, storage path, download path, number of pages, and any potential errors (null if none). The paths provided in the response facilitate access and download of the generated PDF file.

{
  "generatedFiles": {
    "119246": {
      "AccountCreation": {
        "customId": "119246",
        "fileId": "f705ae5b-f301-4700-b594-a63b50df6854",
        "documentType": "AccountCreation",
        "documentLabel": "GENERATED_PDF",
        "minioPath": "flowx-dev-process-id-119246/119246/457_AccountCreation.pdf", // path to the document in the storage solution
        "downloadPath": "internal/files/f705ae5b-f301-4700-b594-a63b50df6854/download", //link for download
        "noOfPages": 1,
        "error": null
      }
    }
  },
  "error": null
}
  1. Configure the preview and upload parts of the process.

Preview and Upload

Document path - Service Task

Configure a business rule to construct a file path for the generated document. Ensure the base admin path is specified.

Ensuring the base admin path is specified is crucial, as it grants the required administrative rights to access the endpoint responsible for document generation.

Actions

Actions Edit
  • Action Type: Set to Business Rule
  • Trigger Type: Choose Automatic because is not a user-triggered action
  • Required Type: Set as Mandatory

Parameters
  • Language: We will use MVEL for this example
  • Body Message: Fill in the body message request
adminPath = "https://admin-main.playground.flowxai.dev/document/";
processInstanceId = input.?generatedDocuments.?generatedFiles.keySet().toArray()[0];
downloadPath = input.?generatedDocuments.?generatedFiles.?get(processInstanceId).Company_Client_Document.downloadPath;

if(downloadPath != null){
    output.put("generatedDocuments", {
        "filePath" : adminPath + downloadPath
    });
}

Preview document - User Task

Actions

Actions edit
  • Action Type: Set to Save Data.
  • Trigger Type: Choose Manual to allow user-triggered action.
  • Required Type: Set as Mandatory.

Let’s see what we have until now:

  • The screen where you can fill in the client details:

Client Details

  • The screen where you can preview and download the generated document:

Preview Document

Upload document - User Task

Node Config

  • Swimlane: Choose a swimlane (if multiple) to restrict access to specific user roles.
  • Stage: Assign a stage to the node.
  • Data stream topics: Add the topic where the response will be sent; in this example ai.flowx.updates.document.html.persist.v1 and its key: uploadedDocument.

Actions

Configure the following node actions:

  • Upload File action with two child actions:
    • Business Rule
    • Send Data to User Interface
  • Save Data action

Upload file action

This is a standard predefined FlowX Node Action for uploading files. This is done through Kafka and by using persist topics.

Now, configure the child actions of Upload File Action.

1. Business Rule

This is necessary to create the path to display the uploaded document.

2. Send Data to User Interface

This is necessary to send the previously created information to the frontend.

Save Data

Configure the last node action to save all the data.

Action edit
  • Order: Set to 3.
  • Action Type: Set to Save Data.
  • Trigger Type: Choose Manual to allow user-triggered action.
  • Required Type: Set as Mandatory.

Request message example

To initiate the document processing, a Kafka request with the following JSON payload will be sent through ..in topic:

This an example of a message that follows the custom integration data model.

{
  "tempFileId": "05081172-1f95-4ece-b2dd-1718936710f7", //a unique identifier for the temporary file
  "customId": "119246", //a custom identifier associated with the document
  "documentType": "BULK" //the type of the document 
}

Response message example

Upon successful processing, you will receive a JSON response on the ..out topic with details about the processed document:

{
  "customId": "119246",
  "fileId": "96975e03-7fba-4a03-99b0-3b30c449dfe7",
  "documentType": "BULK",
  "documentLabel": null,
  "minioPath": "flowx-dev-process-id-119246/119246/458_BULK.pdf",
  "downloadPath": "internal/files/96975e03-7fba-4a03-99b0-3b30c449dfe7/download",
  "noOfPages": null,
  "error": null
}

Now the screen is configured for uploading the signed document:

Upload File

Receiving the reply

The response, containing information about the generated and uploaded documents as mentioned earlier, is sent to the output Kafka topic defined in the Kafka Receive Event Node. The response includes details such as file IDs, document types, and storage paths.

The reply body is expected to contain the following values:

  • customId: A custom identifier associated with the document.

  • fileId: The ID of the file.

  • documentType: The document type.

  • minioPath: The path where the uploaded file is saved. It represents the location of the file in the storage system, whether it’s a MinIO path or an S3 path, depending on the specific storage solution.

  • downloadPath: The download path for the uploaded file. It specifies the location from where the file can be downloaded.

  • noOfPages: The number of pages in the document (if applicable).

  • filePath: The path to the file that we built in our example so we can display the document.