Groovy - How to open an url ?

Rambo July 24, 2016

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

groovy.lang.MissingPropertyException: No such property: HTTP for class: Script405 at Script405.run(Script405.groovy:3)
Have you an idea why the code is not working ?
Thanks

2 answers

0 votes
Cengiz_Akyildiz July 12, 2017

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. 

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 24, 2016

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?

Rambo July 24, 2016

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.

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 24, 2016

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)

Rambo July 24, 2016

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. ^^

NogaE September 25, 2016

Hi Rambo,

Can you explain what did you do and add the code?

Thanks,

Noga.

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
September 26, 2016

They've bodged in a horrible javascript hack which breaks the UI.  Don't do it.

Suggest an answer

Log in or Sign up to answer