mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 14:13:07 +00:00
14ba287e0d
Change-type: minor
145 lines
3.8 KiB
TypeScript
145 lines
3.8 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 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 {
|
|
Application,
|
|
BalenaSDK,
|
|
Organization,
|
|
PineOptions,
|
|
PineTypedResult,
|
|
} from 'balena-sdk';
|
|
|
|
export async function getApplication(
|
|
sdk: BalenaSDK,
|
|
nameOrSlugOrId: string | number,
|
|
): Promise<Application>;
|
|
export async function getApplication<TP extends PineOptions<Application>>(
|
|
sdk: BalenaSDK,
|
|
nameOrSlugOrId: string | number,
|
|
options?: TP,
|
|
): Promise<PineTypedResult<Application, TP>>;
|
|
/**
|
|
* Get a fleet object, disambiguating the fleet identifier which may be a
|
|
* a fleet slug or name.
|
|
* TODO: add support for fleet UUIDs.
|
|
*/
|
|
export async function getApplication(
|
|
sdk: BalenaSDK,
|
|
nameOrSlugOrId: string | number,
|
|
options?: PineOptions<Application>,
|
|
): Promise<Application> {
|
|
const { looksLikeFleetSlug } = await import('./validation');
|
|
const whoamiResult = await sdk.auth.whoami();
|
|
const isDeviceActor = whoamiResult?.actorType === 'device';
|
|
|
|
if (isDeviceActor) {
|
|
const $filterByActor = {
|
|
$filter: {
|
|
owns__device: {
|
|
$any: {
|
|
$alias: 'd',
|
|
$expr: {
|
|
d: {
|
|
actor: whoamiResult.id,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
options = options
|
|
? sdk.utils.mergePineOptions(options, $filterByActor)
|
|
: $filterByActor;
|
|
}
|
|
|
|
if (
|
|
typeof nameOrSlugOrId === 'string' &&
|
|
!looksLikeFleetSlug(nameOrSlugOrId)
|
|
) {
|
|
// Not a slug: must be an app name.
|
|
// TODO: revisit this logic when we add support for fleet UUIDs.
|
|
return await sdk.models.application.getAppByName(
|
|
nameOrSlugOrId,
|
|
options,
|
|
isDeviceActor ? undefined : 'directly_accessible',
|
|
);
|
|
}
|
|
|
|
const getFunction = isDeviceActor
|
|
? sdk.models.application.get
|
|
: sdk.models.application.getDirectlyAccessible;
|
|
|
|
return getFunction(nameOrSlugOrId, options);
|
|
}
|
|
|
|
/**
|
|
* Given a fleet name or slug, return its slug.
|
|
* This function conditionally makes an async SDK/API call to retrieve the
|
|
* application object, which can be wasteful if the application object is
|
|
* required before or after the call to this function. If this is the case,
|
|
* consider calling `getApplication()` and reusing the application object.
|
|
*/
|
|
export async function getFleetSlug(
|
|
sdk: BalenaSDK,
|
|
nameOrSlug: string,
|
|
): Promise<string> {
|
|
const { looksLikeFleetSlug } = await import('./validation');
|
|
if (!looksLikeFleetSlug(nameOrSlug)) {
|
|
// Not a slug: must be an app name.
|
|
// TODO: revisit this logic when we add support for fleet UUIDs.
|
|
return (await getApplication(sdk, nameOrSlug, { $select: 'slug' })).slug;
|
|
}
|
|
return nameOrSlug.toLowerCase();
|
|
}
|
|
|
|
export async function getOwnOrganizations(
|
|
sdk: BalenaSDK,
|
|
): Promise<Organization[]>;
|
|
export async function getOwnOrganizations<TP extends PineOptions<Organization>>(
|
|
sdk: BalenaSDK,
|
|
options: TP,
|
|
): Promise<Array<PineTypedResult<Organization, TP>>>;
|
|
/**
|
|
* Wraps the sdk organization.getAll method,
|
|
* restricting to those orgs user is a member of
|
|
*/
|
|
export async function getOwnOrganizations(
|
|
sdk: BalenaSDK,
|
|
options?: PineOptions<Organization>,
|
|
): Promise<Organization[]> {
|
|
return await sdk.models.organization.getAll(
|
|
sdk.utils.mergePineOptions(
|
|
{
|
|
$filter: {
|
|
organization_membership: {
|
|
$any: {
|
|
$alias: 'orm',
|
|
$expr: {
|
|
orm: {
|
|
user: (await sdk.auth.getUserInfo()).id,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
$orderby: 'name asc',
|
|
},
|
|
options,
|
|
),
|
|
);
|
|
}
|