2020-07-14 13:23:45 +00:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright 2016-2020 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 Command from '../../command';
|
|
|
|
import * as cf from '../../utils/common-flags';
|
2021-09-13 17:26:08 +00:00
|
|
|
import { stripIndent } from '../../utils/lazy';
|
2020-07-14 13:23:45 +00:00
|
|
|
|
|
|
|
interface FlagsDef {
|
2021-09-13 17:26:08 +00:00
|
|
|
esr?: boolean;
|
2020-07-14 13:23:45 +00:00
|
|
|
help: void;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface ArgsDef {
|
|
|
|
type: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class OsVersionsCmd extends Command {
|
|
|
|
public static description = stripIndent`
|
|
|
|
Show available balenaOS versions for the given device type.
|
|
|
|
|
|
|
|
Show the available balenaOS versions for the given device type.
|
|
|
|
Check available types with \`balena devices supported\`.
|
2021-09-13 17:26:08 +00:00
|
|
|
|
|
|
|
balenaOS ESR versions can be listed with the '--esr' option. See also:
|
|
|
|
https://www.balena.io/docs/reference/OS/extended-support-release/
|
2020-07-14 13:23:45 +00:00
|
|
|
`;
|
|
|
|
|
|
|
|
public static examples = ['$ balena os versions raspberrypi3'];
|
|
|
|
|
|
|
|
public static args = [
|
|
|
|
{
|
|
|
|
name: 'type',
|
|
|
|
description: 'device type',
|
2020-09-10 09:54:33 +00:00
|
|
|
required: true,
|
2020-07-14 13:23:45 +00:00
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
public static usage = 'os versions <type>';
|
|
|
|
|
|
|
|
public static flags: flags.Input<FlagsDef> = {
|
|
|
|
help: cf.help,
|
2021-09-13 17:26:08 +00:00
|
|
|
esr: flags.boolean({
|
|
|
|
description: 'select balenaOS ESR versions',
|
|
|
|
default: false,
|
|
|
|
}),
|
2020-07-14 13:23:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
public async run() {
|
2021-09-13 17:26:08 +00:00
|
|
|
const { args: params, flags: options } = this.parse<FlagsDef, ArgsDef>(
|
|
|
|
OsVersionsCmd,
|
|
|
|
);
|
2020-07-14 13:23:45 +00:00
|
|
|
|
2021-12-24 15:02:59 +00:00
|
|
|
const { formatOsVersion, getOsVersions } = await import(
|
|
|
|
'../../utils/cloud'
|
|
|
|
);
|
|
|
|
const vs = await getOsVersions(params.type, !!options.esr);
|
2020-07-14 13:23:45 +00:00
|
|
|
|
2021-12-24 15:02:59 +00:00
|
|
|
console.log(vs.map((v) => formatOsVersion(v)).join('\n'));
|
2020-07-14 13:23:45 +00:00
|
|
|
}
|
|
|
|
}
|