Class: DarwinUser

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

Overview

we do not use ‘finger’ for MacOS, because it is harder to parse data with it instead we use ‘dscl’ to request user data

Instance Attribute Summary

Attributes inherited from UnixUser

#id_cmd, #inspec

Attributes inherited from UserInfo

#inspec

Instance Method Summary collapse

Methods inherited from UnixUser

#identity, #initialize, #parse_id_entries, #parse_value

Methods inherited from UserInfo

#credentials, #initialize

Methods included from Converter

#convert_to_i

Constructor Details

This class inherits a constructor from UnixUser

Instance Method Details

#meta_info(username) ⇒ Object



338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
# File 'lib/resources/user.rb', line 338

def meta_info(username)
  cmd = inspec.command("dscl -q . -read /Users/#{username} NFSHomeDirectory PrimaryGroupID RecordName UniqueID UserShell")
  return nil if cmd.exit_status != 0

  params = SimpleConfig.new(
    cmd.stdout.chomp,
    assignment_re: /^\s*([^:]*?)\s*:\s*(.*?)\s*$/,
    group_re: nil,
    multiple_values: false,
  ).params

  {
    home: params['NFSHomeDirectory'],
    shell: params['UserShell'],
  }
end