Basic Concepts of Deluge

Basic Concepts of Deluge

Deluge supports data types, conditional statements, loops, functions, and return statements that are comparable to other popular programming languages, such as C++, Python, Java, JavaScript, and Swift. In the following document, we will discuss the fundamentals of Deluge in detail.

Data Types     

Deluge supports text, number, boolean, map, and collection data types. It also offers built-in functions for all the data types. In the Deluge Script Editor, you can display the built-in functions available for a variable by entering a period after the variable.

Text     

myText = "Hello World!"; 
To learn the built-in functions of the Text data type, click here.

Number     

 number = -123.4; 
To learn the built-in functions of the Number data type, click here.

Boolean     

 result = true;
result = false; 

Date/Time     

This data type allows you to store date and time in a variable. Using the built-in functions of this data type, you can add days, months, time, and more.

To convert a date from the default format to other formats, use the following syntax:
 date='1-Jan-1990 20:50:36';
 newDate = date.toTime().toString("yyyy-MM-dd'__Hello__'HH:mm:ss");  

In the above sample, newDate value will be 1990-01-01__Hello__20:50:36.

To convert a given time to milliseconds, use the following syntax:
 date='1-Jan-1990 20:50:36';
 timeInMs = date.toTime().toLong();  

In the above sample, timeInMs value will be 631255836000.
To learn more built-in functions of the Date-Time data type, click here.

Map     

The Map data type allows you to store key-value pairs as demonstrated below:
 userEmail = {"john":"john@zylker.com", "peter":"peter@zylker.com"};
userEmail.put("Andrew", "andrew@zylker.com"); //a key-value pair will be added.
emailOfJohn = userEmail.get("john"); //value of 'emailOfJohn' will be 'john@zylker.com'. 

Alternately, you can first declare the variable and then specify its value.
 userEmail = map();
userEmail.put("john","john@zylker.com");
emailOfJohn = userEmail.get("john"); 

Collection     

Collection stores an array of data. You can use the Collection data type to store key-value pairs as well. Collection employs the following syntax:
 userNames = {"john", "peter"}; 

Alternately, you can first declare the variable and then specify its value.
 userNames = Collection();
userNames.put("john");
userNames.put("peter"); 

To iterate through Collection, use 'for each' as shown below:
 for each <myvariable> in <collection>
{

Sample  
  1. userNames = {"john","peter"};
  2. for each name in userNames{
  3. info "Name is" + name;
After debugging, you will get the following response:
 Name is john 
 Name is peter 

To learn the built-in functions of Collection, click here.

Typecasting     

Deluge offers various functions to convert a variable from one data type to another.

Let's consider a sample that gets month as a number from a string called 'dateInCalendar'.

  1. dateInCalendar = '01/02/2000';
  2. monthAsString = dateInCalendar.subString(3,5);
  3. monthAsNumber = monthAsString.toNumber();
  4. info monthAsNumber; 
After debugging, you will get the following response:
 2 

To learn more built-in functions of Typecasting, click here.

Condition     

Deluge supports if and else if statements in the following syntax:
 if ( <expression> )
{
}
else if ( <expression> )
{
}
else
 } 

Sample  
  1. a=10;
  2. b=20;
  3. c=30;
  4. if( a > b && a > c){
  5. info "a is big";
  6. }
  7. else if ( b > c && b >a ){
  8. info "b is big";
  9. }
  10. else{
  11. info "c is big";
You will get the following response after debugging the above piece of code:
 c is big
    • Related Articles

    • Overview

      Deluge, or Data Enriched Language for the Universal Grid Environment is Zoho's proprietary scripting language bundled with ServiceDesk Plus MSP Cloud. It is a high-level language that helps non-programmers code without any training. Unlike ...
    • Deluge for API Calls

      Using Deluge Scripting, you can make API calls easily from ServiceDesk Plus MSP Cloud to any third-party applications. ServiceDesk Plus MSP Cloud REST APIs enable you to perform all operations that you execute through the web client. To understand ...
    • Connections for Custom Services

      Write new connections for custom services and expand the third-party support of ServiceDesk Plus MSP Cloud. Important Terminologies Before you set up connections with custom services, familiarize yourself with the following terms: Client: The ...
    • Overview

      Using Deluge scripting, you can build custom functions that allow you to manipulate data within ServiceDesk Plus MSP Cloud and other external applications. Custom functions help simplify complex, multi-step actions through program scripts that you ...
    • Life Cycle

      Life Cycles in ServiceDesk Plus MSP Cloud allow admins to formulate a resolution process with built-in guidance for the help desk technician. A life cycle ensures efficient process adherence; you can establish a directional flow, minimize the scope ...