-
Notifications
You must be signed in to change notification settings - Fork 104
/
create.ts
434 lines (389 loc) · 13.1 KB
/
create.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
77
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
import { Flags, Errors } from '@oclif/core'
import inquirer from 'inquirer'
import {
CapabilityCreate,
CapabilityAttribute,
CapabilityJSONSchema,
CapabilityCommand,
CapabilityArgument,
Capability,
CapabilitySchemaPropertyName,
HttpClientParams,
} from '@smartthings/core-sdk'
import { APIOrganizationCommand, inputAndOutputItem, userInputProcessor } from '@smartthings/cli-lib'
import { buildTableOutput } from '../../lib/commands/capabilities-util'
const enum Type {
INTEGER = 'integer',
NUMBER = 'number',
STRING = 'string',
BOOLEAN = 'boolean',
}
const attributeAndCommandNamePattern = /^[a-z][a-zA-Z]{0,35}$/
function commandOrAttributeNameValidator(input: string): boolean | string {
return !!attributeAndCommandNamePattern.exec(input)
|| 'Invalid attribute name; only letters are allowed and must start with a lowercase letter, max length 36'
}
function unitOfMeasureValidator(input: string): boolean | string {
return input.length < 25 ? true : 'The unit should be less than 25 characters'
}
export default class CapabilitiesCreateCommand extends APIOrganizationCommand<typeof CapabilitiesCreateCommand.flags> {
static description = 'create a capability for a user' +
this.apiDocsURL('createCapability')
static flags = {
...APIOrganizationCommand.flags,
...inputAndOutputItem.flags,
namespace: Flags.string({
char: 'n',
description: 'the namespace to create the capability under',
}),
}
async run(): Promise<void> {
const params: HttpClientParams = {}
if (this.flags.namespace) {
params.namespace = this.flags.namespace
}
const createCapability = async (_: void, capability: CapabilityCreate): Promise<Capability> => {
return this.client.capabilities.create(capability, params)
.catch(error => {
if (error.response?.status == 403 && this.flags.namespace) {
throw new Errors.CLIError('Unable to create capability under specified namespace. ' +
'Either the namespace does not exist or you do not have permission.')
}
throw error
})
}
await inputAndOutputItem(this,
{ buildTableOutput: data => buildTableOutput(this.tableGenerator, data) },
createCapability, userInputProcessor(this))
}
private addCommand(capability: CapabilityCreate, name: string, command: CapabilityCommand): void {
if (capability.commands === undefined) {
capability.commands = {}
}
capability.commands[name] = command
}
private async promptAndAddSetter(capability: CapabilityCreate,
attributeName: string, attribute: CapabilityAttribute,
type: Type): Promise<void> {
const addSetter = (await inquirer.prompt({
type: 'confirm',
name: 'addSetter',
message: 'Add a setter command for this attribute?',
})).addSetter
this.logger.debug(`promptAndAddSetter - addSetter = ${addSetter}`)
if (addSetter) {
// add setter command name to attribute and create the command, if applicable
const commandName = `set${attributeName.replace(/^\w/, c => c.toUpperCase())}`
attribute.setter = commandName
const argument: CapabilityArgument = {
name: 'value',
optional: false,
schema: this.buildSchemaMatchingAttributeType(attribute, type),
}
const setterCommand = {
name: commandName,
arguments: [argument],
}
this.addCommand(capability, commandName, setterCommand)
}
}
private addBasicCommand(capability: CapabilityCreate, attribute: CapabilityAttribute,
// eslint-disable-next-line @typescript-eslint/no-explicit-any
commandName: string, type: Type, value: any): void {
if (!attribute.enumCommands) {
attribute.enumCommands = []
}
attribute.enumCommands.push({ command: commandName, value })
const command = {
name: commandName,
arguments: [{
name: 'value',
optional: false,
schema: this.buildSchemaMatchingAttributeType(attribute, type),
}],
}
this.addCommand(capability, commandName, command)
}
private async promptAndAddBasicCommands(capability: CapabilityCreate,
attribute: CapabilityAttribute, type: Type): Promise<void> {
let basicCommandName = ''
const baseMessage = 'If you want to add a basic command, enter a ' +
'command name now (or hit enter for none):'
let message = `${baseMessage}\n(Basic commands are simple commands ` +
'that set the attribute to a specific value.)'
do {
basicCommandName = (await inquirer.prompt({
type: 'input',
name: 'basicCommandName',
message,
validate: (input) => {
// empty string is allowed here because it ends basic command name input
return !input || commandOrAttributeNameValidator(input)
},
})).basicCommandName
message = baseMessage
// eslint-disable-next-line @typescript-eslint/no-explicit-any
let basicCommandValue: any = undefined
const minimum = attribute.schema.properties.value.minimum
const maximum = attribute.schema.properties.value.maximum
const maxLength = attribute.schema.properties.value.maxLength
if (basicCommandName) {
// TODO: This switch (/if/else/else) should be handled in a
// more generic/object oriented way
if (type === Type.INTEGER || type === Type.NUMBER) {
basicCommandValue = parseInt((await inquirer.prompt({
type: 'input',
name: 'basicCommandValue',
message: 'Command Value: ',
validate: (input) => {
if (isNaN(input)) {
return 'Please enter a numeric value'
}
if (typeof minimum === 'number' && parseInt(input) < minimum) {
return 'Number must be greater than or equal to minimum.'
}
if (typeof maximum === 'number' && parseInt(input) > maximum) {
return 'Number must be less than or equal to maximum value.'
}
return true
},
})).basicCommandValue)
} else if (type === Type.STRING) {
basicCommandValue = (await inquirer.prompt({
type: 'input',
name: 'basicCommandValue',
message: 'Command Value: ',
validate: (input) => {
if (typeof maxLength === 'number' && input.length > maxLength) {
return 'String cannot be greater than maximum length.'
}
return true
},
})).basicCommandValue
} else if (type === Type.BOOLEAN) {
basicCommandValue = (await inquirer.prompt({
type: 'list',
name: 'basicCommandValue',
message: 'Command Value: ',
// choices must be strings as per inquirer documentation
choices: ['True', 'False'],
})).basicCommandValue
} else {
this.logger.error('invalid state in promptAndAddBasicCommands')
}
this.addBasicCommand(capability, attribute, basicCommandName,
type, basicCommandValue)
}
} while (basicCommandName)
}
private async promptForType(message: string): Promise<Type> {
return (await inquirer.prompt({
type: 'list',
name: 'type',
message: `Select an ${message} type:`,
choices: [Type.INTEGER, Type.NUMBER, Type.STRING, Type.BOOLEAN],
})).type
}
private async promptForAttributeName(): Promise<string> {
return (await inquirer.prompt({
type: 'input',
name: 'attributeName',
message: 'Attribute Name: ',
validate: commandOrAttributeNameValidator,
})).attributeName
}
private async promptForUnitOfMeasure(): Promise<string> {
return (await inquirer.prompt({
type: 'input',
name: 'unitOfMeasure',
message: 'Unit of measure (default: none): ',
validate: unitOfMeasureValidator,
})).unitOfMeasure
}
private async promptAndAddAttribute(capability: CapabilityCreate): Promise<void> {
let name = await this.promptForAttributeName()
let userAcknowledgesNoSetter = false
while (name.length > 33 && !userAcknowledgesNoSetter) {
const answer = (await inquirer.prompt({
type: 'list',
name: 'answer',
message: `Attribute Name ${name} is too long to make a setter.`,
choices: [
{ name: 'Enter a shorter name (max 33 characters)', value: 'shorter ' },
{ name: 'I won\'t need a setter', value: 'noSetter' },
],
})).answer
if (answer === 'noSetter') {
userAcknowledgesNoSetter = true
} else {
name = await this.promptForAttributeName()
}
}
const type = await this.promptForType('attribute')
const attribute: CapabilityAttribute = {
schema: {
type: 'object',
properties: {
value: {
type,
},
},
additionalProperties: false,
required: [CapabilitySchemaPropertyName.VALUE],
},
}
if (type === Type.INTEGER || type === Type.NUMBER) {
const minValue: string | undefined = (await inquirer.prompt({
type: 'input',
name: 'minValue',
message: 'Minimum value (default: no minimum): ',
validate: (input) => {
return input.length === 0 || !isNaN(input) || 'Please enter a numeric value'
},
})).minValue
if (minValue) {
attribute.schema.properties.value.minimum = parseInt(minValue)
}
const maxValue: string | undefined = (await inquirer.prompt({
type: 'input',
name: 'maxValue',
message: 'Maximum value (default: no maximum): ',
validate: (input) => {
if (input.length === 0) {
return true
}
if (isNaN(input)) {
return 'Please enter a numeric value'
}
return minValue === undefined
|| parseInt(input) > parseInt(minValue)
|| 'Maximum value must be greater than minimum value.'
},
})).maxValue
if (maxValue) {
attribute.schema.properties.value.maximum = parseInt(maxValue)
}
const unit = await this.promptForUnitOfMeasure()
if (unit) {
// Note: we don't support multiple units here because we want to move toward using a single unit
// of measure in capabilities
attribute.schema.properties.unit = {
type: 'string',
enum: [unit],
default: unit,
}
}
} else if (type === Type.STRING) {
// TODO: min length also ???
const maxLength: string | undefined = (await inquirer.prompt({
type: 'input',
name: 'maxLength',
message: 'Maximum length (default: no max length): ',
validate: (input) => {
return input.length === 0 || !isNaN(input) || 'Please enter a numeric value'
},
})).maxLength
if (maxLength) {
attribute.schema.properties.value.maxLength = parseInt(maxLength)
}
}
if (!userAcknowledgesNoSetter) {
await this.promptAndAddSetter(capability, name, attribute, type)
}
await this.promptAndAddBasicCommands(capability, attribute, type)
if (capability.attributes === undefined) {
capability.attributes = {}
}
capability.attributes[name] = attribute
}
private buildSchemaMatchingAttributeType(attribute: CapabilityAttribute, type: Type): CapabilityJSONSchema {
const retVal: CapabilityJSONSchema = {
type,
}
if (attribute.schema.properties.value.minimum !== undefined) {
retVal.minimum = attribute.schema.properties.value.minimum
}
if (attribute.schema.properties.value.maximum !== undefined) {
retVal.maximum = attribute.schema.properties.value.maximum
}
if (attribute.schema.properties.value.maxLength !== undefined) {
retVal.maxLength = attribute.schema.properties.value.maxLength
}
return retVal
}
private async promptAndAddCommand(capability: CapabilityCreate): Promise<void> {
const name: string = (await inquirer.prompt({
type: 'input',
name: 'commandName',
message: 'Command Name: ',
validate: commandOrAttributeNameValidator,
})).commandName
const command: CapabilityCommand = {
name,
arguments: [],
}
let argumentName = ''
do {
argumentName = (await inquirer.prompt({
type: 'input',
name: 'argumentName',
message: 'If you want to add argument, enter a name for it now (enter to finish): ',
})).argumentName
if (argumentName) {
const type = await this.promptForType('argument')
const optional = (await inquirer.prompt({
type: 'confirm',
name: 'optionalArgument',
message: 'Is this argument optional?',
})).optionalArgument
const argument: CapabilityArgument = {
name: argumentName,
optional,
schema: {
type,
},
}
command.arguments?.push(argument)
}
} while (argumentName)
this.addCommand(capability, name, command)
}
// TODO: throughout this Q&A session there seldom options to cancel input
// choices without starting completely over. We need to look at fixing this.
// TODO: also, this process needs more up-front validation
async getInputFromUser(): Promise<CapabilityCreate> {
const name = (await inquirer.prompt({
type: 'input',
name: 'capabilityName',
message: 'Capability Name:',
validate: (input: string) => {
return new RegExp('^[a-zA-Z0-9][a-zA-Z0-9 ]{1,35}$').test(input) || 'Invalid capability name'
},
})).capabilityName
const capability: CapabilityCreate = {
name,
}
const enum Action {
ADD_ATTRIBUTE = 'Add an attribute',
ADD_COMMAND = 'Add a command',
FINISH = 'Finish & Create',
}
let action: string
let choices = [Action.ADD_ATTRIBUTE, Action.ADD_COMMAND]
do {
action = (await inquirer.prompt({
type: 'list',
name: 'action',
message: 'Select an action...',
choices,
})).action
if (action === Action.ADD_ATTRIBUTE) {
await this.promptAndAddAttribute(capability)
} else if (action === Action.ADD_COMMAND) {
await this.promptAndAddCommand(capability)
}
choices = [Action.ADD_ATTRIBUTE, Action.ADD_COMMAND, Action.FINISH]
} while (action !== Action.FINISH)
return capability
}
}