Attachment upload from Instance A to Instance B

Kaspars Naumovs January 18, 2021

Hi,

I have two JIRA instances located in two different data-centers.

I am trying to develop a functionality via workflow post function that would copy attachments from issue in Instance A to an issue in Instance B.

I have scriptrunner in both of my JIRA instances.

For now I am just trying to get one attachment via API and upload it to an issue in the same instance via API.

The code below creates the attachment (I am running it from ScriptRunner script console) - however I am only able to upload text attachments.

def connection = new URL("https://xxxx/secure/attachment/10108/test.txt").openConnection() as HttpURLConnection
connection.setRequestMethod( "GET" )
connection.setRequestProperty( "Authorization", "Basic xxxxxxxxxxx" )
connection.doOutput = true
connection.setRequestProperty("Content-Type", "application/json;charset=UTF-8")
connection.connect()
def image = connection.inputStream.text

def body = "---\r\nContent-Disposition: form-data; name=\"file\"; filename=\"text.txt\"\r\nContent-Type: text/plain\r\n\r\n $image \r\n---"

def upConnection = new URL("https://xxxxxxxxxxxxx/rest/api/latest/issue/xxxxxxxxxx/attachments").openConnection() as HttpURLConnection
upConnection.setRequestMethod( "POST" )
upConnection.setRequestProperty( "Authorization", "Basic xxxxxxxxx" )
upConnection.setRequestProperty( "X-Atlassian-Token", "nocheck" )
upConnection.setRequestProperty( "Content-Type", "multipart/form-data; boundary=-")
upConnection.doOutput = true
upConnection.getOutputStream().write(body.getBytes())
upConnection.connect()
def upCode = upConnection.getResponseCode();
def upResult = upConnection.inputStream

upResult.text

 

1 answer

0 votes
mogavenasan
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.
January 18, 2021

Hi @Kaspars Naumovs,

Not sure if this is the cause, but you have defined Content-Type twice in the code - line 9 and line 15.

I hope that this helps.

Thanks,
Moga

Kaspars Naumovs January 19, 2021

Thanks for the reply.

But if I remove the Content-Type from line 9 - the file format is unrecognized on JIRA side after import.

If i remove Content-Type from line 15 I get HTTP error 415. 

mogavenasan
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.
January 19, 2021

Have you tried to change the Content-Type on line 9 to cater to different file types? For example, let's say you would like to attach a PNG image, then the Content-Type should be "image/png". 

Kaspars Naumovs January 20, 2021

I have tried image/png for png files - however they are unreadable after upload.

I believe the issue is within how I store the source image into a variable.

mogavenasan
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.
January 20, 2021

Hi @Kaspars Naumovs,

You should download the file to the filesystem. Can you store the source image on the filesystem and then try to open the file?

Kaspars Naumovs January 22, 2021

I am not sure how would I save a file from the ScriptRunner console / post function on the server filesystem and then access it.

How would this be different then getting the file from the api call?

mogavenasan
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.
January 22, 2021

I'm not really an expert on the inputStream and how to pass the data while preserving the file type.

Scriptrunner allows you to place .groovy scripts under <jira-home>/scripts. With this, you can save a tmp file on the same directory for the attachment. For the saving the file, you can save the inputStream into a tmp file; Java – Write an InputStream to a File

I believe Script Console and workflow post-function allows you to choose a script from the filesystem rather than providing inline scripts.

Michał Warcaba June 2, 2023

@Kaspars Naumovs Did you manage to find a solution for uploading non-txt files using Rest API from the script runner console?

Kaspars Naumovs June 3, 2023

Hi,

I did not find the solution with the scriptrunner.

As a workaround I am using a scheduled powershell script that downloads and uploads the attachments.

Suggest an answer

Log in or Sign up to answer