b4e9d7eefe
* ignore coverage folder * add ident constraint to tslint.json * npm run lint * add missing empty line * fix hasInputError lint
129 lines
3.1 KiB
TypeScript
129 lines
3.1 KiB
TypeScript
// Copyright (C) 2018 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import apollo from '@/utils/apolloManager';
|
|
import gql from 'graphql-tag';
|
|
|
|
export async function fetchAPIKeys(projectID: string) {
|
|
let result: RequestResponse<any[]> = {
|
|
errorMessage: '',
|
|
isSuccess: false,
|
|
data: []
|
|
};
|
|
|
|
try {
|
|
let response: any = await apollo.query({
|
|
query: gql(
|
|
`query {
|
|
project(
|
|
id: "${projectID}",
|
|
) {
|
|
apiKeys {
|
|
id,
|
|
name,
|
|
createdAt
|
|
}
|
|
}
|
|
}`
|
|
),
|
|
fetchPolicy: 'no-cache'
|
|
});
|
|
|
|
if (response.errors) {
|
|
result.errorMessage = response.errors[0].message;
|
|
} else {
|
|
result.isSuccess = true;
|
|
result.data = response.data.project.apiKeys;
|
|
}
|
|
} catch (e) {
|
|
result.errorMessage = e.message;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
export async function createAPIKey(projectID: string, name: string) {
|
|
let result: RequestResponse<any> = {
|
|
errorMessage: '',
|
|
isSuccess: false,
|
|
data: null
|
|
};
|
|
|
|
try {
|
|
let response: any = await apollo.mutate({
|
|
mutation: gql(
|
|
`mutation {
|
|
createAPIKey(
|
|
projectID: "${projectID}",
|
|
name: "${name}"
|
|
) {
|
|
key,
|
|
keyInfo {
|
|
id,
|
|
name,
|
|
createdAt
|
|
}
|
|
}
|
|
}`
|
|
),
|
|
fetchPolicy: 'no-cache'
|
|
});
|
|
|
|
if (response.errors) {
|
|
result.errorMessage = response.errors[0].message;
|
|
} else {
|
|
result.isSuccess = true;
|
|
result.data = {
|
|
key: response.data.createAPIKey.key,
|
|
keyInfo: response.data.createAPIKey.keyInfo
|
|
};
|
|
}
|
|
} catch (e) {
|
|
result.errorMessage = e.message;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
export async function deleteAPIKeys(ids: string[]) {
|
|
let result: RequestResponse<any> = {
|
|
errorMessage: '',
|
|
isSuccess: false,
|
|
data: null
|
|
};
|
|
|
|
try {
|
|
let response: any = await apollo.mutate({
|
|
mutation: gql(
|
|
`mutation {
|
|
deleteAPIKeys(id: [${prepareIdList(ids)}]) {
|
|
id
|
|
}
|
|
}`
|
|
),
|
|
fetchPolicy: 'no-cache'
|
|
});
|
|
|
|
if (response.errors) {
|
|
result.errorMessage = response.errors[0].message;
|
|
} else {
|
|
result.isSuccess = true;
|
|
result.data = response.data.deleteAPIKeys;
|
|
}
|
|
} catch (e) {
|
|
result.errorMessage = e.message;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
function prepareIdList(ids: string[]): string {
|
|
let idString: string = '';
|
|
|
|
ids.forEach(id => {
|
|
idString += `"${id}", `;
|
|
});
|
|
|
|
return idString;
|
|
}
|