Writing scripts refers to the process of creating custom code or scripts to enhance the functionality and automation of a software application or system.
In SpiffArena, the scripting language used for writing scripts is Python, a widely used programming language.
Python offers a rich array of libraries, frameworks, and tools that facilitate script development, making it a popular choice for implementing custom logic and automation.
**Step 3**: After adding the script, the next step is to configure unit tests. Within the unit tests section, there are fields to add test inputs and outputs.
- **Prescript** is added as an example. While you can have tasks that are dedicated scripts, it can become a bit noisy, and we want our diagrams to convey a clear sense of the business logic and rules. For this reason, it is also possible to add scripts to all Task types - using Pre and Post Scripts. This manual task contains a pre-script that also calculates PI using Leibniz’s formula. Here is the pre-script:
- **Post Scripts** are also available on most task types, but they execute AFTER the task is completed. These are great for user forms where you want to modify and clean up the form results before moving on to the next task.
Please see the [implementing files themselves](https://github.com/sartography/spiff-arena/tree/main/spiffworkflow-backend/src/spiffworkflow_backend/scripts) for the details.
| delete_process_instances_with_criteria | Deletes process instances that match the provided criteria. |
| get_all_permissions | Gets all permissions currently in the system. |
| get_current_task_info | Returns information about the current task. |
| get_current_user | Returns the current user. |
| get_data_sizes | Returns information about the size of task data. |
| get_encoded_file_data | Returns the encoded file data. This is a very expensive call. |
| get_env | Returns the current environment (e.g., testing, staging, production). |
| get_frontend_url | Returns the URL to the frontend. |
| get_group_members | Returns the list of usernames of the users in the given group. |
| get_last_user_completing_task | Returns the last user who completed the given task. |
| get_localtime | Converts a Datetime object into a Datetime object for a specific timezone. |
| get_process_initiator_user | Returns the user that initiated the process instance. |
| get_secret | Returns the value for a previously configured secret. |
| get_task_data_value | Checks if a given value is in task data and returns its value. If it does not exist or is None, it returns the default | value. |
| get_toplevel_process_info | Returns information about the currently running process. |
| get_url_for_task_with_bpmn_identifier | Returns the URL to the task show page for a task with the given BPMN identifier. The script task calling this MUST be in the same process as the desired task. |
| get_user_properties | Gets the user properties for the current user. |
| markdown_file_download_link | Returns a markdown format string for a file download link. |
| refresh_permissions | Adds permissions using a dictionary. |
| set_user_properties | Sets given user properties on the current user. |
| times_executed_by_user | Returns the number of times the user has started an instance of the current process model. |
| user_has_started_instance | Returns a boolean indicating if the user has started an instance of the current process model. |