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,559,660
Community Members
 
Community Events
185
Community Groups

Automation of User Disabling

Mike
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.
Jan 30, 2020

I am looking to setup an automated process to disable users who have not signed in for X days for Confluence similar to this JIRA script:

https://www.adaptavist.com/doco/display/SFJ/Automatically+deactivate+inactive+JIRA+users

 

I seem have a functioning script, however it does not provide any output like the JIRA version does. Has anyone successfully got an output that can be used for audit? It will only show "null" after it finishes running.

Right now I would have to view the log while running via the scriptrunner console. 

As of now I am running 6.13.x Confluence Server.

Thanks in advance. 

 


import com.atlassian.confluence.security.PermissionManager
import com.atlassian.confluence.security.login.LoginManager
import com.atlassian.confluence.user.UserAccessor
import com.atlassian.sal.api.component.ComponentLocator
import com.atlassian.user.UserManager
import groovy.time.TimeCategory
import org.apache.log4j.Level
import org.apache.log4j.Logger

def myLog = Logger.getLogger("com.onresolve.jira.groovy")
myLog.setLevel(Level.DEBUG)

def userManager = ComponentLocator.getComponent(UserManager)
def userAccessor = ComponentLocator.getComponent(UserAccessor)
def loginManager = ComponentLocator.getComponent(LoginManager)
def permissionManager = ComponentLocator.getComponent(PermissionManager)

def threeMonthsBack
use(TimeCategory) {
threeMonthsBack = 3.months.ago
}
def users = userManager.users

def page = users.currentPage

while (true) {

page.each { user ->
myLog.debug(user)
if (userAccessor.isDeactivated(user)) {
return
}


def userLoginInfo = loginManager.getLoginInfo(user)
def lastSuccessfulLoginDate = userLoginInfo?.lastSuccessfulLoginDate

def toDeactivate = ! lastSuccessfulLoginDate || lastSuccessfulLoginDate < threeMonthsBack
if (toDeactivate) {
log.warn "Found user: ${user.name} with last login date ${lastSuccessfulLoginDate}, will deactivate"


if (!permissionManager.isSystemAdministrator(user)) {
log.info "Deactivating user.."
userAccessor.deactivateUser(user)
}
}
}

if (users.onLastPage()) {
return
}
else {
users.nextPage()
}
}

 

1 answer

Hi Mike,

when you run a script in the console, it outputs the result („return value“) of the last line in your script. The simplest way to get output, is create an instance of java.io.StringWriter an write to that StringWriter. At the end of the script simply write „writer.toString()“ and the console will show you the output. Note that output is expected als HTML so before you output anything, I recommend issuing a „<pre>“ (for preformatted text) and closing it at the last line („</pre>“).

 

import java.io.PrintWriter
import java.io.StringWriter

writer = new StringWriter()
printer = new PrintWriter(writer)

...

printer.println(“<pre>“) // first line of output
...
printer.println(“Deactivating User: ...“)
...

printer.println(“</pre>“) // last line of output

writer.toString() // last line in the script

Note that the output will not be printed „live“. It will appear, after the script finished so it can take a long time to see something, if you have a lot of users / long running tasks and you may run into a timeout.

HTH

Kurt

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events