Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Script Runner: Script is not working while running from Script Console

Anuj Sapate
Contributor
May 24, 2018 edited

Hello there,

 

I've written following 2 scripts for updating the Issue Security Level for issues (specially Sub-tasks only) which are not working properly when executing from Add-on->Script Console section.

Script-1

import com.atlassian.jira.bc.issue.IssueService;
import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.issue.IssueInputParameters;
import com.atlassian.jira.user.ApplicationUser;
import com.atlassian.jira.event.type.EventDispatchOption;
import com.atlassian.jira.issue.IssueManager;

def issueManager = ComponentAccessor.getIssueManager()
ApplicationUser loggedInUser = ComponentAccessor.getUserManager().getUserByName("no-reply");
IssueService is = ComponentAccessor.getIssueService();
String iKey = "JIRA-10";
Issue oldIssue = is.getIssue(loggedInUser, iKey).getIssue();
long id = 10104;
oldIssue.setSecurityLevelId(id);
issueManager.updateIssue(oldIssue.getProjectObject().getProjectLead(), oldIssue, EventDispatchOption.ISSUE_UPDATED, false)

Script-2

import com.atlassian.jira.bc.issue.IssueService;
import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.issue.IssueInputParameters;
import com.atlassian.jira.user.ApplicationUser;


ApplicationUser loggedInUser = ComponentAccessor.getUserManager().getUserByName("no-reply");
IssueService is = ComponentAccessor.getIssueService();
String iKey = "JIRA-10";
Issue oldIssue = is.getIssue(loggedInUser, iKey).getIssue();
IssueInputParameters issueInputParameters = is.newIssueInputParameters();
long id= 10104;
issueInputParameters.setSecurityLevelId(id);
IssueService.UpdateValidationResult result = is.validateUpdate(oldIssue.getProjectObject().getProjectLead(), oldIssue.getId(),issueInputParameters);
if (result.getErrorCollection().hasAnyErrors()) {
log.error("could not update security level:" + result.getErrorCollection().getErrorMessages().toString());
} else {
is.update(oldIssue.getProjectObject().getProjectLead(), result).getIssue();
log.info("Issue security level updated for " + iKey + " security level id: 10104");
}

In the second script, no error logs are traced. It shows that the issue has been updated successfully.

 

Sometimes, it updates issues (even though the issue key has not provided  yet in the script) and sometimes it does nothing.

Any help will be appreciated. 

 

Updates: When used in Post function, both scripts runs perfectly.

 

1 answer

0 votes
Danyal Iqbal
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 24, 2018

There is a built-in script for setting the security level, which lets you just specify the security level and the condition for when it should do so, it should make it easier: https://jamieechlin.atlassian.net/wiki/display/GRV/Built-In+Scripts#Built-InScripts-SetIssueSecurity

Anuj
Contributor
May 24, 2018 edited

Thanks @Danyal Iqbal, but both the scripts runs perfectly when it is used in Post function as I mentioned earlier. Just need to use issue object as is instead of finding it out by it's key. But in my current scenario, I can not execute it from PF hence executing through Script Console.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events