mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 13:47:52 +00:00
64a44e7a5f
- Add fleet(s) commands and -f, --fleet flags as aliases to the app(s) commands and -a, --app, --application flags. - Conditionally rename column/row headers and JSON object properties from 'application' to 'fleet', with some variations. - Print warning messages regarding the renaming, provided that stderr is attached to an interactive terminal. Change-type: minor Resolves: #2302
432 lines
11 KiB
TypeScript
432 lines
11 KiB
TypeScript
/*
|
|
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 type * as BalenaSdk from 'balena-sdk';
|
|
import _ = require('lodash');
|
|
|
|
import {
|
|
exitWithExpectedError,
|
|
instanceOf,
|
|
NotLoggedInError,
|
|
ExpectedError,
|
|
} from '../errors';
|
|
import { getBalenaSdk, getVisuals, stripIndent, getCliForm } from './lazy';
|
|
import validation = require('./validation');
|
|
import { delay } from './helpers';
|
|
import { isV13 } from './version';
|
|
import type { Application, Device, Organization } from 'balena-sdk';
|
|
import { getApplication } from './sdk';
|
|
|
|
export function authenticate(options: {}): Promise<void> {
|
|
const balena = getBalenaSdk();
|
|
return getCliForm()
|
|
.run(
|
|
[
|
|
{
|
|
message: 'Email:',
|
|
name: 'email',
|
|
type: 'input',
|
|
validate: validation.validateEmail,
|
|
},
|
|
{
|
|
message: 'Password:',
|
|
name: 'password',
|
|
type: 'password',
|
|
},
|
|
],
|
|
{ override: options },
|
|
)
|
|
.then(balena.auth.login)
|
|
.then(balena.auth.twoFactor.isPassed)
|
|
.then((isTwoFactorAuthPassed: boolean) => {
|
|
if (isTwoFactorAuthPassed) {
|
|
return;
|
|
}
|
|
|
|
return getCliForm()
|
|
.ask({
|
|
message: 'Two factor auth challenge:',
|
|
name: 'code',
|
|
type: 'input',
|
|
})
|
|
.then(balena.auth.twoFactor.challenge)
|
|
.catch((error: any) => {
|
|
return balena.auth.logout().then(() => {
|
|
if (
|
|
error.name === 'BalenaRequestError' &&
|
|
error.statusCode === 401
|
|
) {
|
|
throw new ExpectedError('Invalid two factor authentication code');
|
|
}
|
|
throw error;
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Check if logged in, and throw `NotLoggedInError` if not.
|
|
* Note: `NotLoggedInError` is an `ExpectedError`.
|
|
*/
|
|
export async function checkLoggedIn(): Promise<void> {
|
|
const balena = getBalenaSdk();
|
|
if (!(await balena.auth.isLoggedIn())) {
|
|
throw new NotLoggedInError(stripIndent`
|
|
Login required: use the “balena login” command to log in.
|
|
`);
|
|
}
|
|
}
|
|
|
|
export function askLoginType() {
|
|
return getCliForm().ask<'web' | 'credentials' | 'token' | 'register'>({
|
|
message: 'How would you like to login?',
|
|
name: 'loginType',
|
|
type: 'list',
|
|
choices: [
|
|
{
|
|
name: 'Web authorization (recommended)',
|
|
value: 'web',
|
|
},
|
|
{
|
|
name: 'Credentials',
|
|
value: 'credentials',
|
|
},
|
|
{
|
|
name: 'Authentication token',
|
|
value: 'token',
|
|
},
|
|
{
|
|
name: "I don't have a balena account!",
|
|
value: 'register',
|
|
},
|
|
],
|
|
});
|
|
}
|
|
|
|
export function selectDeviceType() {
|
|
return getBalenaSdk()
|
|
.models.config.getDeviceTypes()
|
|
.then((deviceTypes) => {
|
|
deviceTypes = _.sortBy(deviceTypes, 'name').filter(
|
|
(dt) => dt.state !== 'DISCONTINUED',
|
|
);
|
|
return getCliForm().ask({
|
|
message: 'Device Type',
|
|
type: 'list',
|
|
choices: _.map(deviceTypes, ({ slug: value, name }) => ({
|
|
name,
|
|
value,
|
|
})),
|
|
});
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Display interactive confirmation prompt.
|
|
* If the user declines, then either an error will be thrown,
|
|
* or `exitWithExpectedError` will be called (if exitIfDeclined true).
|
|
* @param yesOption - automatically confirm if true
|
|
* @param message - message to display with prompt
|
|
* @param yesMessage - message to display if automatically confirming
|
|
* @param exitIfDeclined - exitWithExpectedError when decline if true
|
|
*/
|
|
export async function confirm(
|
|
yesOption: boolean,
|
|
message: string,
|
|
yesMessage?: string,
|
|
exitIfDeclined = false,
|
|
) {
|
|
if (yesOption) {
|
|
if (yesMessage) {
|
|
if (isV13()) {
|
|
console.error(yesMessage);
|
|
} else {
|
|
console.log(yesMessage);
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
|
|
const confirmed = await getCliForm().ask<boolean>({
|
|
message,
|
|
type: 'confirm',
|
|
default: false,
|
|
});
|
|
|
|
if (!confirmed) {
|
|
const err = new ExpectedError('Aborted');
|
|
// TODO remove this deprecated function (exitWithExpectedError)
|
|
if (exitIfDeclined) {
|
|
exitWithExpectedError(err);
|
|
}
|
|
throw err;
|
|
}
|
|
}
|
|
|
|
export function selectApplication(
|
|
filter?: (app: ApplicationWithDeviceType) => boolean,
|
|
errorOnEmptySelection = false,
|
|
) {
|
|
const balena = getBalenaSdk();
|
|
return balena.models.application
|
|
.hasAny()
|
|
.then(async (hasAnyApplications) => {
|
|
if (!hasAnyApplications) {
|
|
throw new ExpectedError('No fleets found');
|
|
}
|
|
|
|
const apps = (await balena.models.application.getAll({
|
|
$expand: {
|
|
is_for__device_type: {
|
|
$select: 'slug',
|
|
},
|
|
},
|
|
})) as ApplicationWithDeviceType[];
|
|
return apps.filter(filter || _.constant(true));
|
|
})
|
|
.then((applications) => {
|
|
if (errorOnEmptySelection && applications.length === 0) {
|
|
throw new ExpectedError('No suitable fleets found for selection');
|
|
}
|
|
return getCliForm().ask({
|
|
message: 'Select an application',
|
|
type: 'list',
|
|
choices: _.map(applications, (application) => ({
|
|
name: `${application.app_name} (${application.slug}) [${application.is_for__device_type[0].slug}]`,
|
|
value: application,
|
|
})),
|
|
});
|
|
});
|
|
}
|
|
|
|
export async function selectOrganization(organizations?: Organization[]) {
|
|
// Use either provided orgs (if e.g. already loaded) or load from cloud
|
|
organizations =
|
|
organizations || (await getBalenaSdk().models.organization.getAll());
|
|
return getCliForm().ask({
|
|
message: 'Select an organization',
|
|
type: 'list',
|
|
choices: organizations.map((org) => ({
|
|
name: `${org.name} (${org.handle})`,
|
|
value: org.handle,
|
|
})),
|
|
});
|
|
}
|
|
|
|
export async function awaitDevice(uuid: string) {
|
|
const balena = getBalenaSdk();
|
|
const deviceName = await balena.models.device.getName(uuid);
|
|
const visuals = getVisuals();
|
|
const spinner = new visuals.Spinner(
|
|
`Waiting for ${deviceName} to come online`,
|
|
);
|
|
|
|
const poll = async (): Promise<void> => {
|
|
const isOnline = await balena.models.device.isOnline(uuid);
|
|
if (isOnline) {
|
|
spinner.stop();
|
|
console.info(`The device **${deviceName}** is online!`);
|
|
return;
|
|
} else {
|
|
// Spinner implementation is smart enough to
|
|
// not start again if it was already started
|
|
spinner.start();
|
|
|
|
await delay(3000);
|
|
await poll();
|
|
}
|
|
};
|
|
|
|
console.info(`Waiting for ${deviceName} to connect to balena...`);
|
|
await poll();
|
|
return uuid;
|
|
}
|
|
|
|
export async function awaitDeviceOsUpdate(
|
|
uuid: string,
|
|
targetOsVersion: string,
|
|
) {
|
|
const balena = getBalenaSdk();
|
|
|
|
const deviceName = await balena.models.device.getName(uuid);
|
|
const visuals = getVisuals();
|
|
const progressBar = new visuals.Progress(
|
|
`Updating the OS of ${deviceName} to v${targetOsVersion}`,
|
|
);
|
|
progressBar.update({ percentage: 0 });
|
|
|
|
const poll = async (): Promise<void> => {
|
|
const [osUpdateStatus, { overall_progress: osUpdateProgress }] =
|
|
await Promise.all([
|
|
balena.models.device.getOsUpdateStatus(uuid),
|
|
balena.models.device.get(uuid, { $select: 'overall_progress' }),
|
|
]);
|
|
if (osUpdateStatus.status === 'done') {
|
|
console.info(
|
|
`The device ${deviceName} has been updated to v${targetOsVersion} and will restart shortly!`,
|
|
);
|
|
return;
|
|
}
|
|
|
|
if (osUpdateStatus.error) {
|
|
console.error(
|
|
`Failed to complete Host OS update on device ${deviceName}!`,
|
|
);
|
|
exitWithExpectedError(osUpdateStatus.error);
|
|
return;
|
|
}
|
|
|
|
if (osUpdateProgress !== null) {
|
|
// Avoid resetting to 0% at end of process when device goes offline.
|
|
progressBar.update({ percentage: osUpdateProgress });
|
|
}
|
|
|
|
await delay(3000);
|
|
await poll();
|
|
};
|
|
|
|
await poll();
|
|
return uuid;
|
|
}
|
|
|
|
export function inferOrSelectDevice(preferredUuid: string) {
|
|
const balena = getBalenaSdk();
|
|
return balena.models.device.getAll().then((devices) => {
|
|
const onlineDevices = devices.filter((device) => device.is_online);
|
|
if (_.isEmpty(onlineDevices)) {
|
|
throw new ExpectedError("You don't have any devices online");
|
|
}
|
|
|
|
const defaultUuid = _(onlineDevices).map('uuid').includes(preferredUuid)
|
|
? preferredUuid
|
|
: onlineDevices[0].uuid;
|
|
|
|
return getCliForm().ask({
|
|
message: 'Select a device',
|
|
type: 'list',
|
|
default: defaultUuid,
|
|
choices: _.map(onlineDevices, (device) => ({
|
|
name: `${device.device_name || 'Untitled'} (${device.uuid.slice(
|
|
0,
|
|
7,
|
|
)})`,
|
|
value: device.uuid,
|
|
})),
|
|
});
|
|
});
|
|
}
|
|
|
|
/*
|
|
* Given applicationOrDevice, which may be
|
|
* - an application name
|
|
* - an application slug
|
|
* - an application id (integer)
|
|
* - a device uuid
|
|
* Either:
|
|
* - in case of device uuid, return uuid of device after verifying that it exists and is online.
|
|
* - in case of application, return uuid of device user selects from list of online devices.
|
|
*
|
|
* TODO: Modify this when app IDs dropped.
|
|
*/
|
|
export async function getOnlineTargetDeviceUuid(
|
|
sdk: BalenaSdk.BalenaSDK,
|
|
applicationOrDevice: string,
|
|
) {
|
|
const logger = (await import('../utils/logger')).getLogger();
|
|
|
|
// If looks like UUID, probably device
|
|
if (validation.validateUuid(applicationOrDevice)) {
|
|
let device: Device;
|
|
try {
|
|
logger.logDebug(
|
|
`Trying to fetch device by UUID ${applicationOrDevice} (${typeof applicationOrDevice})`,
|
|
);
|
|
device = await sdk.models.device.get(applicationOrDevice, {
|
|
$select: ['uuid', 'is_online'],
|
|
});
|
|
|
|
if (!device.is_online) {
|
|
throw new ExpectedError(
|
|
`Device with UUID ${applicationOrDevice} is offline`,
|
|
);
|
|
}
|
|
|
|
return device.uuid;
|
|
} catch (err) {
|
|
const { BalenaDeviceNotFound } = await import('balena-errors');
|
|
if (instanceOf(err, BalenaDeviceNotFound)) {
|
|
logger.logDebug(`Device with UUID ${applicationOrDevice} not found`);
|
|
// Now try app
|
|
} else {
|
|
throw err;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Not a device UUID, try app
|
|
let app: Application;
|
|
try {
|
|
logger.logDebug(`Fetching fleet ${applicationOrDevice}`);
|
|
app = await getApplication(sdk, applicationOrDevice);
|
|
} catch (err) {
|
|
const { BalenaApplicationNotFound } = await import('balena-errors');
|
|
if (instanceOf(err, BalenaApplicationNotFound)) {
|
|
throw new ExpectedError(
|
|
`Fleet or Device not found: ${applicationOrDevice}`,
|
|
);
|
|
} else {
|
|
throw err;
|
|
}
|
|
}
|
|
|
|
// App found, load its devices
|
|
const devices = await sdk.models.device.getAllByApplication(app.id, {
|
|
$select: ['device_name', 'uuid'],
|
|
$filter: { is_online: true },
|
|
});
|
|
|
|
// Throw if no devices online
|
|
if (_.isEmpty(devices)) {
|
|
throw new ExpectedError(
|
|
`Fleet ${app.slug} found, but has no devices online.`,
|
|
);
|
|
}
|
|
|
|
// Ask user to select from online devices for application
|
|
return getCliForm().ask({
|
|
message: `Select a device on fleet ${app.slug}`,
|
|
type: 'list',
|
|
default: devices[0].uuid,
|
|
choices: _.map(devices, (device) => ({
|
|
name: `${device.device_name || 'Untitled'} (${device.uuid.slice(0, 7)})`,
|
|
value: device.uuid,
|
|
})),
|
|
});
|
|
}
|
|
|
|
export function selectFromList<T>(
|
|
message: string,
|
|
choices: Array<T & { name: string }>,
|
|
): Promise<T> {
|
|
return getCliForm().ask<T>({
|
|
message,
|
|
type: 'list',
|
|
choices: _.map(choices, (s) => ({
|
|
name: s.name,
|
|
value: s,
|
|
})),
|
|
});
|
|
}
|