Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,556,875
Community Members
 
Community Events
184
Community Groups

uploading a user avatar with scriptrunner

I've got image data in base64 strings and want to set user avatars to that image. e.g.

data:image/jpg;base64,/9j/4AA... ...KR//9k=

My current code runs without error and appears to work, except the image isn't loaded correctly. The current avatar is replaced with

useravatar.png

What I'm doing is

Pattern reImage = Pattern.compile('^data\\:(.*?);base64,(.*)$')
def m4 = reImage.matcher(imageraw)
if (m4) {
String imageType = m4[0][1]
String imageB64 = m4[0][2]
byte[] imageBA = imageB64.decodeBase64()
ByteArrayInputStream bais = new ByteArrayInputStream(imageBA)
BufferedImage image = ImageIO.read(bais)
bais.close()
//I've cropped, resized and saved the image and it all works. This tells me the BufferedImage is loaded well
imageFileName = 'somefile.ext' // logic is a bit more complex but this will do for the example
Avatar newAvatar = avatarManager.create(
imageFileName,
imageType,
IconType.USER_ICON_TYPE,
new IconOwningObjectId(user.id.toString()),
new ByteArrayInputStream(imageBA),
null) //I've also tested with a non null Selection
//The returned avatar has a non 0 id, and other values are as expected
avatarService.setCustomUserAvatar(currentUser,user,newAvatar.id)
}

 

1 answer

0 votes
scott_boisvert
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Jan 09, 2020

@Daniel Garcia I'm running into the same issue, were you ever able to figure this out?

scott_boisvert
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Jan 09, 2020

Disregard figured it out. Problem was the user.

Where you have 

new IconOwningObjectId(user.id.toString())

It should be:

new IconOwningObjectId(user.getUsername())

Provided user is of type ApplicationUser 

scott_boisvert
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Jan 09, 2020
import com.atlassian.jira.avatar.Avatar
import com.atlassian.jira.avatar.AvatarManager
import com.atlassian.jira.avatar.AvatarService
import com.atlassian.jira.user.ApplicationUser
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.icon.IconType
import com.atlassian.jira.icon.IconOwningObjectId

ApplicationUser user = ComponentAccessor.getUserManager().getUserByName("bill")

def fileName = "bill.png"
File file = new File("/data/atlassian/application-data/jira/scripts/data/bill.png")
def contentType = AvatarManager.PNG_CONTENT_TYPE
IconType iconType = IconType.USER_ICON_TYPE
IconOwningObjectId owner = new IconOwningObjectId(user.getUsername())
BufferedInputStream iStream = new BufferedInputStream(new FileInputStream(file))
AvatarManager avatarManager = ComponentAccessor.getAvatarManager()
Avatar avatar = avatarManager.create(fileName, contentType, iconType, owner, iStream, null)

AvatarService avatarService = ComponentAccessor.getAvatarService()
avatarService.setCustomUserAvatar(user, user, avatar.getId())

Hi Scott,

good and useful script!

Anyway I had to subsitute

new IconOwningObjectId(user.getUsername())

with

new IconOwningObjectId(user.getKey())

With this expedient your script worked like a charm!

Thanks,

Alberto

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events