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
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 )
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.