storj/web/satellite/src/api/apiKeys.ts

119 lines
3.1 KiB
TypeScript
Raw Normal View History

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
import apollo from '@/utils/apolloManager';
import gql from 'graphql-tag';
import { ApiKey } from '@/types/apiKeys';
import { RequestResponse } from '@/types/response';
export async function fetchAPIKeys(projectID: string): Promise<RequestResponse<ApiKey[]>> {
let result: RequestResponse<ApiKey[]> = new RequestResponse<ApiKey[]>();
let response: any = await apollo.query({
query: gql(
`query {
project(
id: "${projectID}",
) {
apiKeys {
id,
name,
createdAt
}
}
}`
),
fetchPolicy: 'no-cache',
errorPolicy: 'all',
});
if (response.errors) {
result.errorMessage = response.errors[0].message;
} else {
result.isSuccess = true;
result.data = getApiKeysList(response.data.project.apiKeys);
}
return result;
}
export async function createAPIKey(projectID: string, name: string): Promise<RequestResponse<ApiKey>> {
let result: RequestResponse<ApiKey> = new RequestResponse<ApiKey>();
let response: any = await apollo.mutate({
mutation: gql(
`mutation {
createAPIKey(
projectID: "${projectID}",
name: "${name}"
) {
key,
keyInfo {
id,
name,
createdAt
}
}
}`
),
fetchPolicy: 'no-cache',
errorPolicy: 'all',
});
if (response.errors) {
result.errorMessage = response.errors[0].message;
} else {
result.isSuccess = true;
let key: any = response.data.createAPIKey.keyInfo;
let secret: string = response.data.createAPIKey.key;
result.data = new ApiKey(key.id, key.name, key.createdAt, secret);
}
return result;
}
export async function deleteAPIKeys(ids: string[]): Promise<RequestResponse<null>> {
// TODO: find needed type instead of any
let result: RequestResponse<any> = new RequestResponse<any>();
let response: any = await apollo.mutate({
mutation: gql(
`mutation {
deleteAPIKeys(id: [${prepareIdList(ids)}]) {
id
}
}`
),
fetchPolicy: 'no-cache',
errorPolicy: 'all',
});
if (response.errors) {
result.errorMessage = response.errors[0].message;
} else {
result.isSuccess = true;
result.data = response.data.deleteAPIKeys;
}
return result;
}
function prepareIdList(ids: string[]): string {
let idString: string = '';
ids.forEach(id => {
idString += `"${id}", `;
});
return idString;
}
function getApiKeysList(apiKeys: ApiKey[]): ApiKey[] {
if (!apiKeys) {
return [];
}
return apiKeys.map(key => new ApiKey(key.id, key.name, key.createdAt, ''));
}