Skip to content

Commit

Permalink
Get-UserGroup - closes #96
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmelton committed May 29, 2021
1 parent 1ae46d5 commit 083c498
Show file tree
Hide file tree
Showing 4 changed files with 102 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docs/collections/_abouttopics/about_tssgroupusersummary.md
Expand Up @@ -53,4 +53,5 @@ last_modified_at: 2021-04-25T00:00:00-00:00
# METHODS

# RELATED LINKS:
Get-TssGroupMember
Get-TssGroupMember
Get-TssUserGroup
3 changes: 2 additions & 1 deletion src/en-us/about_tssgroupusersummary.help.txt
Expand Up @@ -47,4 +47,5 @@ PROPERTIES
METHODS

RELATED LINKS:
Get-TssGroupMember
Get-TssGroupMember
Get-TssUserGroup
74 changes: 74 additions & 0 deletions src/functions/users/Get-UserGroup.ps1
@@ -0,0 +1,74 @@
function Get-UserGroup {
<#
.SYNOPSIS
Get the groups of a user by ID
.DESCRIPTION
Get the groups of a user by ID
.EXAMPLE
$session = New-TssSession -SecretServer https://alpha -Credential $ssCred
Get-TssUserGroup -TssSession $session -Id 42
Get group the User ID 42 is a member of
.LINK
https://thycotic-ps.github.io/thycotic.secretserver/commands/Get-TssUserGroup
.LINK
https://github.com/thycotic-ps/thycotic.secretserver/blob/main/src/functions/<folder>/Get-UserGroup.ps1
.NOTES
Requires TssSession object returned by New-TssSession
#>
[CmdletBinding()]
[OutputType('TssUserGroup')]
param (
# TssSession object created by New-TssSession for auth
[Parameter(Mandatory, ValueFromPipeline, Position = 0)]
[TssSession]
$TssSession,

# User ID
[Parameter(Mandatory, ValueFromPipelineByPropertyName)]
[Alias('UserId')]
[int[]]
$Id,

# Sort by specific property, default GroupId
[string]
$SortBy = 'GroupId'
)
begin {
$tssParams = $PSBoundParameters
$invokeParams = . $GetInvokeTssParams $TssSession
}
process {
Write-Verbose "Provided command parameters: $(. $GetInvocation $PSCmdlet.MyInvocation)"
if ($tssParams.ContainsKey('TssSession') -and $TssSession.IsValidSession()) {
. $CheckVersion $TssSession '10.9.000000' $PSCmdlet.MyInvocation
foreach ($user in $Id) {
$restResponse = $null
$uri = $TssSession.ApiUrl, 'users', $user, 'groups' -join '/'
$uri = $uri, "sortBy[0].direction=asc&sortBy[0].name=$SortBy&take=$($TssSession.Take)" -join '?'
$invokeParams.Uri = $uri
$invokeParams.Method = 'GET'

Write-Verbose "Performing the operation $($invokeParams.Method) $uri"
try {
$restResponse = . $InvokeApi @invokeParams
} catch {
Write-Warning "Issue getting group(s) on user [$user]"
$err = $_
. $ErrorHandling $err
}

if ($restResponse.records) {
[TssGroupUserSummary[]]$restREsponse.records
}
}
} else {
Write-Warning 'No valid session found'
}
}
}
24 changes: 24 additions & 0 deletions tests/users/Get-UserGroup.Tests.ps1
@@ -0,0 +1,24 @@
BeforeDiscovery {
$commandName = Split-Path ($PSCommandPath.Replace('.Tests.ps1','')) -Leaf
}
Describe "$commandName verify parameters" {
BeforeDiscovery {
[object[]]$knownParameters = 'TssSession', 'Id', 'SortBy'
[object[]]$currentParams = ([Management.Automation.CommandMetaData]$ExecutionContext.SessionState.InvokeCommand.GetCommand($commandName,'Function')).Parameters.Keys
[object[]]$commandDetails = [System.Management.Automation.CommandInfo]$ExecutionContext.SessionState.InvokeCommand.GetCommand($commandName,'Function')
$unknownParameters = Compare-Object -ReferenceObject $knownParameters -DifferenceObject $currentParams -PassThru
}
Context "Verify parameters" -Foreach @{currentParams = $currentParams } {
It "$commandName should contain <_> parameter" -TestCases $knownParameters {
$_ -in $currentParams | Should -Be $true
}
It "$commandName should not contain parameter: <_>" -TestCases $unknownParameters {
$_ | Should -BeNullOrEmpty
}
}
Context "Command specific details" {
It "$commandName should set OutputType to TssUserGroup" -TestCases $commandDetails {
$_.OutputType.Name | Should -Be 'TssUserGroup'
}
}
}

0 comments on commit 083c498

Please sign in to comment.