1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import * as _ from "lodash";
6 import { AxiosInstance, AxiosPromise } from "axios";
7 import { Resource } from "src/models/resource";
8 import * as uuid from "uuid/v4";
9 import { ApiActions } from "~/services/api/api-actions";
11 export interface ListArguments {
21 export interface ListResults<T> {
26 itemsAvailable: number;
29 export interface Errors {
34 export enum CommonResourceServiceError {
35 UNIQUE_VIOLATION = 'UniqueViolation',
36 OWNERSHIP_CYCLE = 'OwnershipCycle',
37 MODIFYING_CONTAINER_REQUEST_FINAL_STATE = 'ModifyingContainerRequestFinalState',
42 export class CommonResourceService<T extends Resource> {
44 static mapResponseKeys = (response: { data: any }) =>
45 CommonResourceService.mapKeys(_.camelCase)(response.data)
47 static mapKeys = (mapFn: (key: string) => string) =>
48 (value: any): any => {
50 case _.isPlainObject(value):
53 .map(key => [key, mapFn(key)])
54 .reduce((newValue, [key, newKey]) => ({
56 [newKey]: CommonResourceService.mapKeys(mapFn)(value[key])
58 case _.isArray(value):
59 return value.map(CommonResourceService.mapKeys(mapFn));
65 static defaultResponse<R>(promise: AxiosPromise<R>, actions: ApiActions, mapKeys = true): Promise<R> {
67 actions.progressFn(reqId, true);
70 actions.progressFn(reqId, false);
73 .then((response: { data: any }) => {
74 return mapKeys ? CommonResourceService.mapResponseKeys(response) : response.data;
76 .catch(({ response }) => {
77 actions.progressFn(reqId, false);
78 const errors = CommonResourceService.mapResponseKeys(response) as Errors;
79 actions.errorFn(reqId, errors);
84 protected serverApi: AxiosInstance;
85 protected resourceType: string;
86 protected actions: ApiActions;
88 constructor(serverApi: AxiosInstance, resourceType: string, actions: ApiActions) {
89 this.serverApi = serverApi;
90 this.resourceType = '/' + resourceType + '/';
91 this.actions = actions;
94 create(data?: Partial<T>) {
95 return CommonResourceService.defaultResponse(
97 .post<T>(this.resourceType, data && CommonResourceService.mapKeys(_.snakeCase)(data)),
102 delete(uuid: string): Promise<T> {
103 return CommonResourceService.defaultResponse(
105 .delete(this.resourceType + uuid),
111 return CommonResourceService.defaultResponse(
113 .get<T>(this.resourceType + uuid),
118 list(args: ListArguments = {}): Promise<ListResults<T>> {
119 const { filters, order, ...other } = args;
122 filters: filters ? `[${filters}]` : undefined,
123 order: order ? order : undefined
125 return CommonResourceService.defaultResponse(
127 .get(this.resourceType, {
128 params: CommonResourceService.mapKeys(_.snakeCase)(params)
134 update(uuid: string, data: Partial<T>) {
135 return CommonResourceService.defaultResponse(
137 .put<T>(this.resourceType + uuid, data && CommonResourceService.mapKeys(_.snakeCase)(data)),
143 export const getCommonResourceServiceError = (errorResponse: any) => {
144 if ('errors' in errorResponse && 'errorToken' in errorResponse) {
145 const error = errorResponse.errors.join('');
147 case /UniqueViolation/.test(error):
148 return CommonResourceServiceError.UNIQUE_VIOLATION;
149 case /ownership cycle/.test(error):
150 return CommonResourceServiceError.OWNERSHIP_CYCLE;
151 case /Mounts cannot be modified in state 'Final'/.test(error):
152 return CommonResourceServiceError.MODIFYING_CONTAINER_REQUEST_FINAL_STATE;
154 return CommonResourceServiceError.UNKNOWN;
157 return CommonResourceServiceError.NONE;