Hello,
I try to open an url in a post-function with a transition in a JIRA workflow. When the user execute a certain transition, I want to open an url "Create issue" with some field filled (with the url).
I tried this code :
import com.santaba.agent.groovyapi.http.*; def response = HTTP.get("https://www.google.fr/"); println response
But it displays the Error alert :
Error
No such property: HTTP for class: Script405
I have found this function:
def baseURL = ComponentAccessor.getApplicationProperties()getString(APKeys.JIRA_BASEURL) String jiraBaseUrl = ComponentAccessor.applicationProperties.getString(APKeys.JIRA_BASEURL) String clonedMessage = """ Navigating to created issue <a href="$jiraBaseUrl/browse/$uatIssue.key">$uatIssue.key</a>... <script> setTimeout(function(){location.href="$jiraBaseUrl/browse/$uatIssue.key"} , 3000); </script> """ UserMessageUtil.success(clonedMessage)
It does work for me.
By "open a url", do you mean you're trying to make the user's browser open a window there? Or that the post-function is trying to scrape data out of the url to be used later in the script?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The first one for now, I try to open a new windows (maybe more a new tab in my actual window) with an already created url (which not change).
Maybe later I'll try to take some information in the issue to fill other fields in the new issue opened.
Thanks for your answer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah, ok, I was afraid of that
Post-functions do not have any interface with the client front end. They run entirely on the server, and what you're trying to do is get the client to do something. So the short answer is that you can't do it.
You really need to do it on the front end with some javascript in the UI, but I've never seen that work (even when it has done the basics - javascript picking up changes when returning to the view screen, it failed when processes are automated, done over REST or when add-ons/applications provide more ways to change a status)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok thanks Nic.
The solution I find is putting a field with my url in the issue view. It opens the new issue in a new tab, as I want, but it's not very visually good for my users.
But if a better solution exists I would be happy to hear it. ^^
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
They've bodged in a horrible javascript hack which breaks the UI. Don't do it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.