how to get each users' number of published articles

Jone December 14, 2016

My confluence vision is 3.2.1
Now I want to get each users' number of published articles and the record of users modifying the articles

If confluence provide some API ? OR query from the table of database

1 answer

1 accepted

0 votes
Answer accepted
Marcel Woschek
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.
December 14, 2016

Hey Jone,

if you want to get the information from the database you can take a look at the Confluence DB Modell:

 

image2016-12-15 9:29:25.png

The Content-Table provides information about the creator and last modifier.

 

If you want to access these information using the Java API, you can use the SpaceManager and PageManager to get all Page-Objects and then use the methods of the ConfluenceEntityObject-class, which provides methods to get the creator and last modifier.

 

If you want to create a custom macro to display these information you can also access these entities like this:

## Get PageManager object instance
#set($containerManagerClass=$content.class.forName('com.atlassian.spring.container.ContainerManager'))
#set($getInstanceMethod=$containerManagerClass.getDeclaredMethod('getInstance',null))
#set($containerManager=$getInstanceMethod.invoke(null,null))
#set($containerContext=$containerManager.containerContext)
#set($spaceManager=$containerContext.getComponent('spaceManager'))
#set($pageManager=$containerContext.getComponent('pageManager'))
  
#set($output = "<h1>Pages</h1>")
 
## get spaces
#set($spaces = $spaceManager.getAllSpaces())

#foreach($space in $spaces)
	#set($pages= $pageManager.getPages($space, true))
	
	#foreach($page in $pages)
		#set($output = $output + "<ul>$page.getTitle() (creator: $page.getCreator(), last modifier: $page.getLastModifier()</ul>")
	#end
#end

$output

(I didn't test it, just wrote it here so it probably needs some changes wink )

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events