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,557,867
Community Members
 
Community Events
184
Community Groups

How to get the list of pictures attached AND inserted in a page with Scriptrunner?

Hi all, 

I'm trying to write a script to get a list of the picture/files which are actually used in a page, and not just attached to the page.

Starting from some scriptrunner templates/tutorials, I got to the point where I can list in a table the pages within a selected space, and in each row of the table I write the page name, the number of attachments, the name of the attachments, but not really the name of the attachments which are actually used somewhere in the body of the page.

In the picture below, there's a sample result.

I know that in the "Summary Report..." page all of the 16 attached pictures are also included in the body of the page, but I don't know how to represent this situation in the table.

I tried to use the extractLinkTextList, but realized that this doesn't return what I need.

 

image.png

 

here below the piece of code...

tbody {
pagesInfo.each { space, pages ->

if (pages.size() > 0) {
if (space.name =="CRUP") { //limit result to a specified name of space

pages.each { page ->
tr {
th() {
b(space.name)
}
td(page.title)
td(confluenceLinkResolver.extractLinkTextList(page.getBodyAsString()))
td(attachmentManager.countLatestVersionsOfAttachments(page))
td(attachmentManager.getLatestVersionsOfAttachments(page))

}
}
}
}

 

Could anyone propose the right approach?

Clearly later on I'd like to add code to process in some way this information, but for now I'd be very happy to ... just find the information :-) 

Thanks in advance.

Andrea

 

 

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events