Class: WindowsUser
Overview
For now, we stick with WMI Win32_UserAccount using Get-AdUser would be the best command for domain machines, but it will not be installed on client machines by default Just for reference, we could also use ADSI (Active Directory Service Interfaces)
Instance Attribute Summary
Attributes inherited from UserInfo
Instance Method Summary collapse
- #identity(username) ⇒ Object
-
#meta_info(_username) ⇒ Object
not implemented yet.
-
#parse_windows_account(username) ⇒ Object
parse windows account name.
Methods inherited from UserInfo
Methods included from Converter
Constructor Details
This class inherits a constructor from UserInfo
Instance Method Details
#identity(username) ⇒ Object
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 |
# File 'lib/resources/user.rb', line 380 def identity(username) # extract domain/user information account, domain = parse_windows_account(username) # TODO: escape content if !domain.nil? filter = "Name = '#{account}' and Domain = '#{domain}'" else filter = "Name = '#{account}' and LocalAccount = true" end script = " # find user\n $user = Get-WmiObject Win32_UserAccount -filter \"\#{filter}\"\n # get related groups\n $groups = $user.GetRelated('Win32_Group') | Select-Object -Property Caption, Domain, Name, LocalAccount, SID, SIDType, Status\n # filter user information\n $user = $user | Select-Object -Property Caption, Description, Domain, Name, LocalAccount, Lockout, PasswordChangeable, PasswordExpires, PasswordRequired, SID, SIDType, Status\n # build response object\n New-Object -Type PSObject | `\n Add-Member -MemberType NoteProperty -Name User -Value ($user) -PassThru | `\n Add-Member -MemberType NoteProperty -Name Groups -Value ($groups) -PassThru | `\n ConvertTo-Json\n EOH\n\n cmd = inspec.script(script)\n\n # cannot rely on exit code for now, successful command returns exit code 1\n # return nil if cmd.exit_status != 0, try to parse json\n begin\n params = JSON.parse(cmd.stdout)\n rescue JSON::ParserError => _e\n return nil\n end\n\n user = params['User']['Caption'] unless params['User'].nil?\n groups = params['Groups']\n # if groups is no array, generate one\n groups = [groups] if !groups.is_a?(Array)\n groups = groups.map { |grp| grp['Caption'] } unless params['Groups'].nil?\n\n {\n uid: nil,\n user: user,\n gid: nil,\n group: nil,\n groups: groups,\n }\nend\n" |
#meta_info(_username) ⇒ Object
not implemented yet
431 432 433 434 435 436 |
# File 'lib/resources/user.rb', line 431 def (_username) { home: nil, shell: nil, } end |
#parse_windows_account(username) ⇒ Object
parse windows account name
373 374 375 376 377 378 |
# File 'lib/resources/user.rb', line 373 def parse_windows_account(username) account = username.split('\\') name = account.pop domain = account.pop if account.size > 0 [name, domain] end |