Class: OsCtl::Cli::User

Inherits:
Command
  • Object
show all
Includes:
Assets, Attributes
Defined in:
lib/osctl/cli/user.rb

Constant Summary collapse

FIELDS =
%i(
  pool
  name
  username
  groupname
  ugid
  dataset
  homedir
  registered
  standalone
)
FILTERS =
%i(pool registered)
DEFAULT_FIELDS =
%i(
  pool
  name
  registered
  standalone
)
IDMAP_FIELDS =
%i(type ns_id host_id count)

Instance Method Summary collapse

Methods included from Attributes

#do_set_attr, #do_unset_attr

Methods included from Assets

#print_assets

Methods inherited from Command

#cli_opt, #format_output, #osctld_call, #osctld_fmt, #osctld_open, #osctld_resp, run

Instance Method Details

#assetsObject



157
158
159
160
# File 'lib/osctl/cli/user.rb', line 157

def assets
  require_args!('name')
  print_assets(:user_assets, name: args[0], pool: gopts[:pool])
end

#createObject



106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# File 'lib/osctl/cli/user.rb', line 106

def create
  require_args!('name')

  if opts['map'].any?
    uid_map = gid_map = opts['map']

  else
    uid_map = opts['map-uid']
    gid_map = opts['map-gid']
  end

  osctld_fmt(:user_create, cmd_opts: {
    name: args[0],
    pool: opts[:pool] || gopts[:pool],
    id_range: opts['id-range'],
    block_index: opts['id-range-block-index'],
    uid_map: uid_map.any? ? uid_map : nil,
    gid_map: gid_map.any? ? gid_map : nil,
    standalone: opts['standalone'],
  })
end

#deleteObject



128
129
130
131
# File 'lib/osctl/cli/user.rb', line 128

def delete
  require_args!('name')
  osctld_fmt(:user_delete, cmd_opts: {name: args[0], pool: gopts[:pool]})
end

#idmap_lsObject



162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# File 'lib/osctl/cli/user.rb', line 162

def idmap_ls
  param_selector = OsCtl::Lib::Cli::ParameterSelector.new(
    all_params: IDMAP_FIELDS,
  )

  if opts[:list]
    puts param_selector
    return
  end

  require_args!('name', optional: %w(type))

  cmd_opts = {name: args[0], uid: true, gid: true}
  fmt_opts = {
    layout: :columns,
    cols: param_selector.parse_option(opts[:output]),
  }

  case args[1]
  when 'uid'
    cmd_opts[:gid] = false
  when 'gid'
    cmd_opts[:uid] = false
  when nil, 'both'
    # pass
  else
    raise GLI::BadCommandLine, "expected uid|gid|both, got '#{args[1]}'"
  end

  fmt_opts[:header] = false if opts['hide-header']

  osctld_fmt(
    :user_idmap_list,
    cmd_opts: cmd_opts,
    fmt_opts: fmt_opts,
  )
end

#listObject



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/osctl/cli/user.rb', line 32

def list
  keyring = KernelKeyring.new

  param_selector = OsCtl::Lib::Cli::ParameterSelector.new(
    all_params: FIELDS + keyring.list_param_names,
    default_params: DEFAULT_FIELDS,
  )

  if opts[:list]
    puts param_selector
    return
  end

  cmd_opts = {}
  fmt_opts = {
    layout: :columns,
    sort: opts[:sort] && param_selector.parse_option(opts[:sort]),
  }

  cmd_opts[:names] = args if args.count > 0

  if opts[:registered]
    cmd_opts[:registered] = true
  elsif opts[:unregistered]
    cmd_opts[:registered] = false
  end

  FILTERS.each do |v|
    [gopts, opts].each do |options|
      next unless options[v]
      cmd_opts[v] = options[v].split(',')
    end
  end

  fmt_opts[:header] = false if opts['hide-header']

  cols = param_selector.parse_option(opts[:output])

  users = osctld_call(:user_list, **cmd_opts)
  keyring.add_user_values(users, cols, precise: gopts[:parsable])

  fmt_opts[:cols] = cols

  format_output(users, **fmt_opts)
end

#registerObject



133
134
135
136
137
138
139
140
141
# File 'lib/osctl/cli/user.rb', line 133

def register
  require_args!('name')

  if args[0] == 'all'
    osctld_fmt(:user_register, cmd_opts: {all: true})
  else
    osctld_fmt(:user_register, cmd_opts: {name: args[0], pool: gopts[:pool]})
  end
end

#set_attrObject



218
219
220
221
222
223
224
225
226
# File 'lib/osctl/cli/user.rb', line 218

def set_attr
  require_args!('name', 'attribute', 'value')
  do_set_attr(
    :user_set,
    {name: args[0], pool: gopts[:pool]},
    args[1],
    args[2],
  )
end

#set_standaloneObject



200
201
202
203
204
205
206
207
# File 'lib/osctl/cli/user.rb', line 200

def set_standalone
  require_args!('name')
  osctld_fmt(:user_set, cmd_opts: {
    name: args[0],
    pool: gopts[:pool],
    standalone: true,
  })
end

#showObject



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# File 'lib/osctl/cli/user.rb', line 78

def show
  keyring = KernelKeyring.new

  param_selector = OsCtl::Lib::Cli::ParameterSelector.new(
    all_params: FIELDS + keyring.list_param_names,
    default_params: DEFAULT_FIELDS,
  )

  if opts[:list]
    puts param_selector
    return
  end

  require_args!('name')

  fmt_opts = {layout: :rows}
  fmt_opts[:header] = false if opts['hide-header']

  cols = param_selector.parse_option(opts[:output])

  user = osctld_call(:user_show, name: args[0], pool: gopts[:pool])
  keyring.add_user_values(user, cols, precise: gopts[:parsable])

  fmt_opts[:cols] = cols

  format_output(user, **fmt_opts)
end

#subugidsObject



153
154
155
# File 'lib/osctl/cli/user.rb', line 153

def subugids
  osctld_fmt(:user_subugids)
end

#unregisterObject



143
144
145
146
147
148
149
150
151
# File 'lib/osctl/cli/user.rb', line 143

def unregister
  require_args!('name')

  if args[0] == 'all'
    osctld_fmt(:user_unregister, cmd_opts: {all: true})
  else
    osctld_fmt(:user_unregister, cmd_opts: {name: args[0], pool: gopts[:pool]})
  end
end

#unset_attrObject



228
229
230
231
232
233
234
235
# File 'lib/osctl/cli/user.rb', line 228

def unset_attr
  require_args!('name', 'attribute')
  do_unset_attr(
    :user_unset,
    {name: args[0], pool: gopts[:pool]},
    args[1],
  )
end

#unset_standaloneObject



209
210
211
212
213
214
215
216
# File 'lib/osctl/cli/user.rb', line 209

def unset_standalone
  require_args!('name')
  osctld_fmt(:user_unset, cmd_opts: {
    name: args[0],
    pool: gopts[:pool],
    standalone: true,
  })
end