You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Beside standard Velocity constructs like @last @first, $ myarray . isEmpty () or $ myarray . empty  there are several helpers which can address specific problems when running Raley notifications.


boolean $jirassimo.isAfter($firstDate, $secondDate)

Used to compare if $firstDate is after $secondDate. Both dates must be either in yyyy-MM-dd  or  yyyy-MM-dd'T'HH:mm:ss.SSSZ  formats.

Typical use cases of this function is checking whether update of the issue happened after $context.today or $context.yesterday or $context. onehourago. For example, checking whether issue was updated in last hour or since yesterday.


boolean $jirassimo.isSameUpdate($firstDate, $secondDate)

Checks whether the difference between $firstDate and $secondDate is less than 1 second. This is useful to check whether issue update and comment created happened during the same logical update.

Both dates must be in format yyyy-MM-dd'T'HH:mm:ss.SSSZ


String $jirassimo.settingValue($key)

This function retrieves value from Settings based on $key supplied. Settings are basically collection of key=value pairs and they are helpful if you need, for example, to find out user's channel from his email.


String $jirassimo.formatDate($dateValue, $format)

Formats given $dateValue date using format in $format. If $format is omitted then MM-dd-yy hh:mm will be used.


String $jirassimo.formatNumber($numberValue, $format)

Formats given $numberValue using format in $format. Standard Java DecimalFormats are supported.


$jirassimo.includeAttachments($pattern)

Sends attachments from current Issue to email/slack/hipchat. $pattern defines extensions that attachment must match against. If not specified then all.


$jirassimo.customBotAvatar($customBotAvatarUrl)

Customises Slack avatar of Jirassimo bot. $customBotAvatarUrl must be an absolute URL of avatar image.


$jirassimo.groupEmails("JIRA_GROUPNAME")

Retrieves a comma-separated list of emails of JIRA users belonging to specified JIRA group


$jirassimo.calculateAgeDays($!issue.fields.created)

Returns age of an issue in days

 
$jirassimo.userProperty($userKey, $propertyName)

Allows you to retrieve a value of JIRA property for the specified user key.  


$jirassimo.convertAndFormatDate($dateValue, $timezone, $format)

Parses the date from $dateValue and outputs it in given $format with specified $timezone. Timezone code must be one value from https://en.wikipedia.org/wiki/List_of_tz_database_time_zones in column TZ*

 
$jirassimo.collectMentionsEmails($JiraTextOrTextAreaField)

Given the Jira field, find users mentioned in it and return a collection of users' emails.