module WpUsers::Output

Public Instance Methods

output(options = {}) click to toggle source

@param [ Hash ] options @option options[ Boolean ] :show_password Output the password column

@return [ void ]

# File lib/common/collections/wp_users/output.rb, line 9
def output(options = {})
  rows     = []
  headings = ['Id', 'Login', 'Name']
  headings << 'Password' if options[:show_password]

  remove_junk_from_display_names

  self.each do |wp_user|
    row = [wp_user.id, wp_user.login, wp_user.display_name]
    row << wp_user.password if options[:show_password]
    rows << row
  end

  table = Terminal::Table.new(headings: headings,
                              rows: rows,
                              style: { margin_left: options[:margin_left] || '' }).to_s
  # variable needed for output
  puts table
end
remove_junk_from_display_names() click to toggle source
# File lib/common/collections/wp_users/output.rb, line 29
def remove_junk_from_display_names
  display_names = []
  self.each do |u|
    display_name = u.display_name
    unless display_name == 'empty'
      display_names << display_name
    end
  end
  junk = get_equal_string_end(display_names)
  unless junk.nil? or junk.empty?
    self.each do |u|
      u.display_name = u.display_name.sub(/#{Regexp.escape(junk)}$/, '')
    end
  end
end