Class: WindowsUser

Inherits:
UserInfo show all
Defined in:
lib/resources/user.rb

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

#inspec

Instance Method Summary collapse

Methods inherited from UserInfo

#credentials, #initialize

Methods included from Converter

#convert_to_i

Constructor Details

This class inherits a constructor from UserInfo

Instance Method Details

#identity(username) ⇒ Object



335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
# File 'lib/resources/user.rb', line 335

def identity(username)
  # extract domain/user information
  , domain = (username)

  # TODO: escape content
  if !domain.nil?
    filter = "Name = '#{}' and Domain = '#{domain}'"
  else
    filter = "Name = '#{}' and LocalAccount = true"
  end

  script = <<-EOH
    # find user
    $user = Get-WmiObject Win32_UserAccount -filter "#{filter}"
    # get related groups
    $groups = $user.GetRelated('Win32_Group') | Select-Object -Property Caption, Domain, Name, LocalAccount, SID, SIDType, Status
    # filter user information
    $user = $user | Select-Object -Property Caption, Description, Domain, Name, LocalAccount, Lockout, PasswordChangeable, PasswordExpires, PasswordRequired, SID, SIDType, Status
    # build response object
    New-Object -Type PSObject | `
    Add-Member -MemberType NoteProperty -Name User -Value ($user) -PassThru | `
    Add-Member -MemberType NoteProperty -Name Groups -Value ($groups) -PassThru | `
    ConvertTo-Json
  EOH

  cmd = inspec.script(script)

  # cannot rely on exit code for now, successful command returns exit code 1
  # return nil if cmd.exit_status != 0, try to parse json
  begin
    params = JSON.parse(cmd.stdout)
  rescue JSON::ParserError => _e
    return nil
  end

  user = params['User']['Caption'] unless params['User'].nil?
  groups = params['Groups']
  # if groups is no array, generate one
  groups = [groups] if !groups.is_a?(Array)
  groups = groups.map { |grp| grp['Caption'] } unless params['Groups'].nil?

  {
    uid: nil,
    user: user,
    gid: nil,
    group: nil,
    groups: groups,
  }
end

#meta_info(_username) ⇒ Object

not implemented yet



386
387
388
389
390
391
# File 'lib/resources/user.rb', line 386

def meta_info(_username)
  {
    home: nil,
    shell: nil,
  }
end

#parse_windows_account(username) ⇒ Object

parse windows account name



328
329
330
331
332
333
# File 'lib/resources/user.rb', line 328

def (username)
   = username.split('\\')
  name = .pop
  domain = .pop if .size > 0
  [name, domain]
end