验证用户是否存在于 Octopus Deploy 中
Verify if user exists in Octopus Deploy
我想使用 Powershell 脚本在 Octopus Deploy 中添加一个用户,效果很好。我想验证用户是否已经存在,然后不要添加用户。有人可以指出我做错了什么吗?它说即使用户不存在,用户也存在。它搜索用户列表以查看用户是否存在。我正在使用 Invoke RestMethod 添加用户并且工作正常。如果用户在添加之前存在,我会对验证感到困惑。有更简单的方法吗?
function AddNewUser{
Param(
[string]$OctopusURL,
[string]$APIKey,
[string]$UserName = "New User"
)
$header = @{ "X-Octopus-apiKey" = $APIKey }
Write-Host "Adding user $UserName"
$userList = Invoke-RestMethod "$OctopusURL/api/users?skip=0&take=100000" -Headers $header
foreach ($user in $userList.Items){
if ($user.UserName -eq $UserName){
$userId = $user.Id
return $userId
}
}
if ($userId -eq '') {
Write-Host "No user called `'$UserName`' was found"
try{
$newUserResp = Invoke-RestMethod "$OctopusURL/api/users" -Headers $header -Method Post -Body $newUserAsJson -ContentType "application/json"
return $newUserResp
} catch {
Write-Error $_
}
}
else {
Write-Host "User `'$UserName`' exists"
}
}
if ($userId -eq '') {
如果未找到现有用户,$userId 为 $null,因此计算结果为 false。
如果找到用户,您的 foreach 循环也会 returns,所以这个 if 语句看起来没有必要。如果做到这一点,您可以假设该用户不存在(只要您的用户少于 100,000)。
我想使用 Powershell 脚本在 Octopus Deploy 中添加一个用户,效果很好。我想验证用户是否已经存在,然后不要添加用户。有人可以指出我做错了什么吗?它说即使用户不存在,用户也存在。它搜索用户列表以查看用户是否存在。我正在使用 Invoke RestMethod 添加用户并且工作正常。如果用户在添加之前存在,我会对验证感到困惑。有更简单的方法吗?
function AddNewUser{
Param(
[string]$OctopusURL,
[string]$APIKey,
[string]$UserName = "New User"
)
$header = @{ "X-Octopus-apiKey" = $APIKey }
Write-Host "Adding user $UserName"
$userList = Invoke-RestMethod "$OctopusURL/api/users?skip=0&take=100000" -Headers $header
foreach ($user in $userList.Items){
if ($user.UserName -eq $UserName){
$userId = $user.Id
return $userId
}
}
if ($userId -eq '') {
Write-Host "No user called `'$UserName`' was found"
try{
$newUserResp = Invoke-RestMethod "$OctopusURL/api/users" -Headers $header -Method Post -Body $newUserAsJson -ContentType "application/json"
return $newUserResp
} catch {
Write-Error $_
}
}
else {
Write-Host "User `'$UserName`' exists"
}
}
if ($userId -eq '') {
如果未找到现有用户,$userId 为 $null,因此计算结果为 false。
如果找到用户,您的 foreach 循环也会 returns,所以这个 if 语句看起来没有必要。如果做到这一点,您可以假设该用户不存在(只要您的用户少于 100,000)。