X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/e952a4d2fac7c75375a9307f7f6676bd950bd0ed..ef3b2c15f10a3fea50170bc346105d909145a98f:/src/store/advanced-tab/advanced-tab.ts diff --git a/src/store/advanced-tab/advanced-tab.ts b/src/store/advanced-tab/advanced-tab.ts index ecbd3448..bcc0b85f 100644 --- a/src/store/advanced-tab/advanced-tab.ts +++ b/src/store/advanced-tab/advanced-tab.ts @@ -9,16 +9,23 @@ import { ResourceKind, extractUuidKind } from '~/models/resource'; import { getResource } from '~/store/resources/resources'; import { GroupContentsResourcePrefix } from '~/services/groups-service/groups-service'; import { snackbarActions, SnackbarKind } from '~/store/snackbar/snackbar-actions'; +import { ContainerRequestResource } from '~/models/container-request'; +import { CollectionResource } from '~/models/collection'; +import { ProjectResource } from '~/models/project'; +import { ServiceRepository } from '~/services/services'; +import { FilterBuilder } from '~/services/api/filter-builder'; export const ADVANCED_TAB_DIALOG = 'advancedTabDialog'; export interface AdvancedTabDialogData { + apiResponse: any; + metadata: any; pythonHeader: string; pythonExample: string; - CLIGetHeader: string; - CLIGetExample: string; - CLIUpdateHeader: string; - CLIUpdateExample: string; + cliGetHeader: string; + cliGetExample: string; + cliUpdateHeader: string; + cliUpdateExample: string; curlHeader: string; curlExample: string; } @@ -39,43 +46,54 @@ enum ProjectData { } export const openAdvancedTabDialog = (uuid: string) => - (dispatch: Dispatch, getState: () => RootState) => { + async (dispatch: Dispatch, getState: () => RootState, services: ServiceRepository) => { const { resources } = getState(); const kind = extractUuidKind(uuid); - const data = getResource(uuid)(resources); + const data = getResource(uuid)(resources); + const metadata = await services.linkService.list({ + filters: new FilterBuilder() + .addEqual('headUuid', uuid) + .getFilters() + }); if (data) { if (kind === ResourceKind.COLLECTION) { const dataCollection: AdvancedTabDialogData = { + apiResponse: collectionApiResponse(data), + metadata, pythonHeader: pythonHeader(CollectionData.COLLECTION), pythonExample: pythonExample(data.uuid, GroupContentsResourcePrefix.COLLECTION), - CLIGetHeader: CLIGetHeader(CollectionData.COLLECTION), - CLIGetExample: CLIGetExample(data.uuid, GroupContentsResourcePrefix.COLLECTION), - CLIUpdateHeader: CLIUpdateHeader(CollectionData.COLLECTION, CollectionData.STORAGE_CLASSES_CONFIRMED), - CLIUpdateExample: CLIUpdateExample(data.uuid, CollectionData.COLLECTION, data.storageClassesConfirmed, CollectionData.STORAGE_CLASSES_CONFIRMED), + cliGetHeader: cliGetHeader(CollectionData.COLLECTION), + cliGetExample: cliGetExample(data.uuid, GroupContentsResourcePrefix.COLLECTION), + cliUpdateHeader: cliUpdateHeader(CollectionData.COLLECTION, CollectionData.STORAGE_CLASSES_CONFIRMED), + cliUpdateExample: cliUpdateExample(data.uuid, CollectionData.COLLECTION, data.storageClassesConfirmed, CollectionData.STORAGE_CLASSES_CONFIRMED), curlHeader: curlHeader(CollectionData.COLLECTION, CollectionData.STORAGE_CLASSES_CONFIRMED), curlExample: curlExample(data.uuid, GroupContentsResourcePrefix.COLLECTION, data.storageClassesConfirmed, CollectionData.COLLECTION, CollectionData.STORAGE_CLASSES_CONFIRMED) }; dispatch(dialogActions.OPEN_DIALOG({ id: ADVANCED_TAB_DIALOG, data: dataCollection })); } else if (kind === ResourceKind.PROCESS) { const dataProcess: AdvancedTabDialogData = { + apiResponse: containerRequestApiResponse(data), + metadata, pythonHeader: pythonHeader(ProcessData.CONTAINER_REQUEST), pythonExample: pythonExample(data.uuid, GroupContentsResourcePrefix.PROCESS), - CLIGetHeader: CLIGetHeader(ProcessData.CONTAINER_REQUEST), - CLIGetExample: CLIGetExample(data.uuid, GroupContentsResourcePrefix.PROCESS), - CLIUpdateHeader: CLIUpdateHeader(ProcessData.CONTAINER_REQUEST, ProcessData.OUTPUT_NAME), - CLIUpdateExample: CLIUpdateExample(data.uuid, ProcessData.CONTAINER_REQUEST, data.outputName, ProcessData.OUTPUT_NAME), + cliGetHeader: cliGetHeader(ProcessData.CONTAINER_REQUEST), + cliGetExample: cliGetExample(data.uuid, GroupContentsResourcePrefix.PROCESS), + cliUpdateHeader: cliUpdateHeader(ProcessData.CONTAINER_REQUEST, ProcessData.OUTPUT_NAME), + cliUpdateExample: cliUpdateExample(data.uuid, ProcessData.CONTAINER_REQUEST, data.outputName, ProcessData.OUTPUT_NAME), curlHeader: curlHeader(ProcessData.CONTAINER_REQUEST, ProcessData.OUTPUT_NAME), curlExample: curlExample(data.uuid, GroupContentsResourcePrefix.PROCESS, data.outputName, ProcessData.CONTAINER_REQUEST, ProcessData.OUTPUT_NAME) }; dispatch(dialogActions.OPEN_DIALOG({ id: ADVANCED_TAB_DIALOG, data: dataProcess })); } else if (kind === ResourceKind.PROJECT) { const dataProject: AdvancedTabDialogData = { + apiResponse: groupRequestApiResponse(data), + metadata, pythonHeader: pythonHeader(ProjectData.GROUP), pythonExample: pythonExample(data.uuid, GroupContentsResourcePrefix.PROJECT), - CLIGetHeader: CLIGetHeader(ProjectData.GROUP), - CLIGetExample: CLIGetExample(data.uuid, GroupContentsResourcePrefix.PROJECT), - CLIUpdateHeader: CLIUpdateHeader(ProjectData.GROUP, ProjectData.DELETE_AT), - CLIUpdateExample: CLIUpdateExample(data.uuid, ProjectData.GROUP, data.deleteAt, ProjectData.DELETE_AT), + cliGetHeader: cliGetHeader(ProjectData.GROUP), + cliGetExample: cliGetExample(data.uuid, GroupContentsResourcePrefix.PROJECT), + cliUpdateHeader: cliUpdateHeader(ProjectData.GROUP, ProjectData.DELETE_AT), + cliUpdateExample: cliUpdateExample(data.uuid, ProjectData.GROUP, data.deleteAt, ProjectData.DELETE_AT), curlHeader: curlHeader(ProjectData.GROUP, ProjectData.DELETE_AT), curlExample: curlExample(data.uuid, GroupContentsResourcePrefix.PROJECT, data.deleteAt, ProjectData.GROUP, ProjectData.DELETE_AT) }; @@ -97,20 +115,20 @@ const pythonExample = (uuid: string, resourcePrefix: string) => { return pythonExample; }; -const CLIGetHeader = (resourceKind: string) => +const cliGetHeader = (resourceKind: string) => `An example arv command to get a ${resourceKind} using its uuid:`; -const CLIGetExample = (uuid: string, resourcePrefix: string) => { +const cliGetExample = (uuid: string, resourcePrefix: string) => { const cliGetExample = `arv ${resourcePrefix} get \\ --uuid ${uuid}`; return cliGetExample; }; -const CLIUpdateHeader = (resourceKind: string, resourceName: string) => +const cliUpdateHeader = (resourceKind: string, resourceName: string) => `An example arv command to update the "${resourceName}" attribute for the current ${resourceKind}:`; -const CLIUpdateExample = (uuid: string, resourceKind: string, resource: string | string[], resourceName: string) => { +const cliUpdateExample = (uuid: string, resourceKind: string, resource: string | string[], resourceName: string) => { const CLIUpdateCollectionExample = `arv ${resourceKind} update \\ --uuid ${uuid} \\ --${resourceKind} '{"${resourceName}":${resource}}'`; @@ -133,4 +151,96 @@ const curlExample = (uuid: string, resourcePrefix: string, resource: string | st EOF`; return curlExample; +}; + +const stringify = (item: string | null | number | boolean) => + JSON.stringify(item) || 'null'; + +const stringifyObject = (item: any) => + JSON.stringify(item, null, 2) || 'null'; + +const containerRequestApiResponse = (apiResponse: ContainerRequestResource) => { + const { uuid, ownerUuid, createdAt, modifiedAt, modifiedByClientUuid, modifiedByUserUuid, name, description, properties, state, requestingContainerUuid, containerUuid, + containerCountMax, mounts, runtimeConstraints, containerImage, environment, cwd, command, outputPath, priority, expiresAt, filters, containerCount, + useExisting, schedulingParameters, outputUuid, logUuid, outputName, outputTtl } = apiResponse; + const response = `"uuid": "${uuid}", +"owner_uuid": "${ownerUuid}", +"created_at": "${createdAt}", +"modified_at": ${stringify(modifiedAt)}, +"modified_by_client_uuid": ${stringify(modifiedByClientUuid)}, +"modified_by_user_uuid": ${stringify(modifiedByUserUuid)}, +"name": ${stringify(name)}, +"description": ${stringify(description)}, +"properties": ${stringifyObject(properties)}, +"state": ${stringify(state)}, +"requesting_container_uuid": ${stringify(requestingContainerUuid)}, +"container_uuid": ${stringify(containerUuid)}, +"container_count_max": ${stringify(containerCountMax)}, +"mounts": ${stringifyObject(mounts)}, +"runtime_constraints": ${stringifyObject(runtimeConstraints)}, +"container_image": "${stringify(containerImage)}", +"environment": ${stringifyObject(environment)}, +"cwd": ${stringify(cwd)}, +"command": ${stringifyObject(command)}, +"output_path": ${stringify(outputPath)}, +"priority": ${stringify(priority)}, +"expires_at": ${stringify(expiresAt)}, +"filters": ${stringify(filters)}, +"container_count": ${stringify(containerCount)}, +"use_existing": ${stringify(useExisting)}, +"scheduling_parameters": ${stringifyObject(schedulingParameters)}, +"output_uuid": ${stringify(outputUuid)}, +"log_uuid": ${stringify(logUuid)}, +"output_name": ${stringify(outputName)}, +"output_ttl": ${stringify(outputTtl)}`; + + return response; +}; + +const collectionApiResponse = (apiResponse: CollectionResource) => { + const { uuid, ownerUuid, createdAt, modifiedAt, modifiedByClientUuid, modifiedByUserUuid, name, description, properties, portableDataHash, replicationDesired, + replicationConfirmedAt, replicationConfirmed, manifestText, deleteAt, fileNames, trashAt, isTrashed, storageClassesDesired, + storageClassesConfirmed, storageClassesConfirmedAt } = apiResponse; + const response = `"uuid": "${uuid}", +"owner_uuid": "${ownerUuid}", +"created_at": "${createdAt}", +"modified_by_client_uuid": ${stringify(modifiedByClientUuid)}, +"modified_by_user_uuid": ${stringify(modifiedByUserUuid)}, +"modified_at": ${stringify(modifiedAt)}, +"portable_data_hash": ${stringify(portableDataHash)}, +"replication_desired": ${stringify(replicationDesired)}, +"replication_confirmed_at": ${stringify(replicationConfirmedAt)}, +"replication_confirmed": ${stringify(replicationConfirmed)}, +"manifest_text": ${stringify(manifestText)}, +"name": ${stringify(name)}, +"description": ${stringify(description)}, +"properties": ${stringifyObject(properties)}, +"delete_at": ${stringify(deleteAt)}, +"file_names": ${stringify(fileNames)}, +"trash_at": ${stringify(trashAt)}, +"is_trashed": ${stringify(isTrashed)}, +"storage_classes_desired": ${JSON.stringify(storageClassesDesired, null, 2)}, +"storage_classes_confirmed": ${JSON.stringify(storageClassesConfirmed, null, 2)}, +"storage_classes_confirmed_at": ${stringify(storageClassesConfirmedAt)}`; + + return response; +}; + +const groupRequestApiResponse = (apiResponse: ProjectResource) => { + const { uuid, ownerUuid, createdAt, modifiedAt, modifiedByClientUuid, modifiedByUserUuid, name, description, groupClass, trashAt, isTrashed, deleteAt, properties } = apiResponse; + const response = `"uuid": "${uuid}", +"owner_uuid": "${ownerUuid}", +"created_at": "${createdAt}", +"modified_by_client_uuid": ${stringify(modifiedByClientUuid)}, +"modified_by_user_uuid": ${stringify(modifiedByUserUuid)}, +"modified_at": ${stringify(modifiedAt)}, +"name": ${stringify(name)}, +"description": ${stringify(description)}, +"group_class": ${stringify(groupClass)}, +"trash_at": ${stringify(trashAt)}, +"is_trashed": ${stringify(isTrashed)}, +"delete_at": ${stringify(deleteAt)}, +"properties": ${stringifyObject(properties)}`; + + return response; }; \ No newline at end of file