mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-21 06:33:28 +00:00
be82bcfa63
Also: - Display keys with `name` instead of `title`. - Check for empty key before calling API. Change-type: patch Signed-off-by: Scott Lowe <scott@balena.io>
101 lines
2.8 KiB
TypeScript
101 lines
2.8 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2016-2019 Balena Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
import { flags } from '@oclif/command';
|
|
import { stripIndent } from 'common-tags';
|
|
import Command from '../../command';
|
|
|
|
import * as cf from '../../utils/common-flags';
|
|
import * as ec from '../../utils/env-common';
|
|
import { getBalenaSdk } from '../../utils/lazy';
|
|
import { CommandHelp } from '../../utils/oclif-utils';
|
|
import { parseAsInteger } from '../../utils/validation';
|
|
|
|
type IArg<T> = import('@oclif/parser').args.IArg<T>;
|
|
|
|
interface FlagsDef {
|
|
config: boolean;
|
|
device: boolean;
|
|
service: boolean;
|
|
help: void;
|
|
}
|
|
|
|
interface ArgsDef {
|
|
id: number;
|
|
value: string;
|
|
}
|
|
|
|
export default class EnvRenameCmd extends Command {
|
|
public static description = stripIndent`
|
|
Change the value of a config or env var for an app, device or service.
|
|
|
|
Change the value of a configuration or environment variable for an application,
|
|
device or service, as selected by command-line options.
|
|
|
|
${ec.rmRenameHelp.split('\n').join('\n\t\t')}
|
|
`;
|
|
public static examples = [
|
|
'$ balena env rename 123123 emacs',
|
|
'$ balena env rename 234234 emacs --service',
|
|
'$ balena env rename 345345 emacs --device',
|
|
'$ balena env rename 456456 emacs --device --service',
|
|
'$ balena env rename 567567 1 --config',
|
|
'$ balena env rename 678678 1 --device --config',
|
|
];
|
|
|
|
public static args: Array<IArg<any>> = [
|
|
{
|
|
name: 'id',
|
|
required: true,
|
|
description: "variable's numeric database ID",
|
|
parse: input => parseAsInteger(input, 'id'),
|
|
},
|
|
{
|
|
name: 'value',
|
|
required: true,
|
|
description:
|
|
"variable value; if omitted, use value from this process' environment",
|
|
},
|
|
];
|
|
|
|
// hardcoded 'env rename' to avoid oclif's 'env:rename' topic syntax
|
|
public static usage =
|
|
'env rename ' + new CommandHelp({ args: EnvRenameCmd.args }).defaultUsage();
|
|
|
|
public static flags: flags.Input<FlagsDef> = {
|
|
config: ec.booleanConfig,
|
|
device: ec.booleanDevice,
|
|
service: ec.booleanService,
|
|
help: cf.help,
|
|
};
|
|
|
|
public async run() {
|
|
const { args: params, flags: opt } = this.parse<FlagsDef, ArgsDef>(
|
|
EnvRenameCmd,
|
|
);
|
|
|
|
await Command.checkLoggedIn();
|
|
|
|
await getBalenaSdk().pine.patch({
|
|
resource: ec.getVarResourceName(opt.config, opt.device, opt.service),
|
|
id: params.id,
|
|
body: {
|
|
value: params.value,
|
|
},
|
|
});
|
|
}
|
|
}
|