Are you in the loop? Keep up with the latest by making sure you're subscribed to Community Announcements. Just click Watch and select Articles.

×
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

Confluence Scrptrunner event handler not working for PageCopyEvent

Hi Guys,

We are trying to get the scriptrunner Confluence event handler working for PageCopyEvent.
Unfortunately the event handler seems to be totally ignored.
Running on the console for a specific page is successful but in in the real system nothing is triggered.
No errors or debugs showing in the logs either.

Even running this basic code, nothing is logged when a page is  copied

import org.apache.log4j.Logger
import org.apache.log4j.Level

def log = Logger.getLogger("com.methoda.test")
log.setLevel(Level.DEBUG)

 

Our need is to delete certain labels in the target page when a page is copied 

This is the actual  code that  we are trying to run in the end:

import com.atlassian.confluence.pages.Page
import com.atlassian.confluence.pages.PageManager
import com.atlassian.confluence.event.events.content.page.PageEvent
import com.atlassian.confluence.pages.CommentManager
import com.atlassian.sal.api.component.ComponentLocator
import com.atlassian.confluence.labels.LabelManager
import com.atlassian.confluence.event.events.content.page.PageCopyEvent
import org.apache.log4j.Logger
import org.apache.log4j.Level

def log = Logger.getLogger("logger.test")
log.setLevel(Level.DEBUG)
def labelManager = ComponentLocator.getComponent(LabelManager)

//def pageManager = ComponentLocator.getComponent(PageManager)
//def origin=pageManager.getPage(65723)
//def destination=pageManager.getPage(1114170)

def event = event as PageCopyEvent
def originpage = event.getOrigin() 
def destinationpage = event.getDestination() 
def label = originpage.getLabels()


log.debug("origin: "originpage" destination: " destinationpage " labels: " + label)
for(def item: label){
if(item.toString().contains('syswt_pagepublished') || item.toString().contains('syswt_published-to-'))

{ labelManager.removeLabel(destinationpage, labelManager.getLabel(item)) }

}

log.debug("labels: "+label)

 

Would really appreciate some help with this.

 

Thanks.

 

1 answer

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events