Class: OsCtl::Cli::User
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 Attribute Summary
Attributes inherited from Command
#args, #gopts, #opts
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, #initialize, #osctld_call, #osctld_fmt, #osctld_open, #osctld_resp, #require_args!, run
#break_interval, #format_long_duration, #format_percent, #format_short_duration, #humanize_data, #humanize_time_ns, #parse_data
Instance Method Details
#assets ⇒ Object
139
140
141
142
|
# File 'lib/osctl/cli/user.rb', line 139
def assets
require_args!('name')
print_assets(:user_assets, name: args[0], pool: gopts[:pool])
end
|
#create ⇒ Object
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
# File 'lib/osctl/cli/user.rb', line 88
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, {
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
|
#delete ⇒ Object
110
111
112
113
|
# File 'lib/osctl/cli/user.rb', line 110
def delete
require_args!('name')
osctld_fmt(:user_delete, name: args[0], pool: gopts[:pool])
end
|
#idmap_ls ⇒ Object
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
# File 'lib/osctl/cli/user.rb', line 144
def idmap_ls
if opts[:list]
puts FIELDS.join("\n")
return
end
require_args!('name')
cmd_opts = {name: args[0], uid: true, gid: true}
fmt_opts = {layout: :columns}
case args[1]
when 'uid'
cmd_opts[:gid] = false
when 'gid'
cmd_opts[:uid] = false
when nil, 'both'
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,
opts[:output] ? opts[:output].split(',').map(&:to_sym) : IDMAP_FIELDS,
fmt_opts
)
end
|
#list ⇒ Object
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
|
# File 'lib/osctl/cli/user.rb', line 32
def list
if opts[:list]
puts FIELDS.join("\n")
return
end
cmd_opts = {}
fmt_opts = {
layout: :columns,
sort: opts[:sort] && opts[:sort].split(',').map(&:to_sym),
}
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']
osctld_fmt(
:user_list,
cmd_opts,
opts[:output] ? opts[:output].split(',').map(&:to_sym) : DEFAULT_FIELDS,
fmt_opts
)
end
|
#register ⇒ Object
115
116
117
118
119
120
121
122
123
|
# File 'lib/osctl/cli/user.rb', line 115
def register
require_args!('name')
if args[0] == 'all'
osctld_fmt(:user_register, all: true)
else
osctld_fmt(:user_register, name: args[0], pool: gopts[:pool])
end
end
|
#set_attr ⇒ Object
196
197
198
199
200
201
202
203
204
|
# File 'lib/osctl/cli/user.rb', line 196
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_standalone ⇒ Object
176
177
178
179
180
181
182
183
184
|
# File 'lib/osctl/cli/user.rb', line 176
def set_standalone
require_args!('name')
osctld_fmt(
:user_set,
name: args[0],
pool: gopts[:pool],
standalone: true,
)
end
|
#show ⇒ Object
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# File 'lib/osctl/cli/user.rb', line 69
def show
if opts[:list]
puts FIELDS.join("\n")
return
end
require_args!('name')
fmt_opts = {layout: :rows}
fmt_opts[:header] = false if opts['hide-header']
osctld_fmt(
:user_show,
{name: args[0], pool: gopts[:pool]},
opts[:output] ? opts[:output].split(',').map(&:to_sym) : nil,
fmt_opts
)
end
|
#subugids ⇒ Object
135
136
137
|
# File 'lib/osctl/cli/user.rb', line 135
def subugids
osctld_fmt(:user_subugids)
end
|
#unregister ⇒ Object
125
126
127
128
129
130
131
132
133
|
# File 'lib/osctl/cli/user.rb', line 125
def unregister
require_args!('name')
if args[0] == 'all'
osctld_fmt(:user_unregister, all: true)
else
osctld_fmt(:user_unregister, name: args[0], pool: gopts[:pool])
end
end
|
#unset_attr ⇒ Object
206
207
208
209
210
211
212
213
|
# File 'lib/osctl/cli/user.rb', line 206
def unset_attr
require_args!('name', 'attribute')
do_unset_attr(
:user_unset,
{name: args[0], pool: gopts[:pool]},
args[1],
)
end
|
#unset_standalone ⇒ Object
186
187
188
189
190
191
192
193
194
|
# File 'lib/osctl/cli/user.rb', line 186
def unset_standalone
require_args!('name')
osctld_fmt(
:user_unset,
name: args[0],
pool: gopts[:pool],
standalone: true,
)
end
|