I'm trying to pull all Confluence pages in my instance that haven't been modified since 1/1/21. I was able to get all of the parent pages that haven't been modified since 1/1/21 fairly easily. However, I'm now trying to get all of the child pages.
I know get-confluencechildpage
has a -recurse
option (source) but when I use it I get Invoke-Method : Page children is currently only supported for direct children
.
I've created a script that will iterate through the top level pages and check if there are child pages. What I can't figure out is how to setup the do until and not duplicate the child page output, see picture below.
Here's what I have so far. Once I can get the get-confluencechildpage
figured out I can then add an if and base it on date modified. Can anybody point me in the right direction? Please and thank you.
$Pages = get-confluencespace -spacekey 'SPACEKEY' | get-confluencepage
$NotMod = $pages | ? { $_.version.when -lt (get-date 1/1/21) }
$full = @()
foreach ($1 in $notmod) {
$full += get-confluencepage $1.id
if ($1 | Get-ConfluenceChildPage) {
$Descendents = $1 | Get-ConfluenceChildPage
foreach ($child in $Descendents) {
$full += $child
do {
$Next = 1
$Next = $child | Get-ConfluenceChildPage
if ($next) {
$full += $next
}
} until (
$null -eq $Next
)
}
}
}
I've just tested Atlassian's
ConfluencePS
module (v2.5.1) on a self-hosted Confluence instance (v7.3.5), and theGet-ConfluencePage
cmdlet appears to return a flattened list of the entire document tree for a given space.Based on that, your code would simply be:
Update
If, for whatever reason, you don't get all the pages in the Space returned from
Get-ConfluencePage
, you could do a depth-first search of the root pages in the tree usingGet-ConfluenceChildPage
: