ba07f337c0
* api keys frontend * fix linter * fixes, copy to clipboard, disable account activation * activation is removed in https://github.com/storj/storj/pull/1143
119 lines
3.0 KiB
TypeScript
119 lines
3.0 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 {
|
|
console.log('response', response)
|
|
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 deleteAPIKey(id: string) {
|
|
let result: RequestResponse<any> = {
|
|
errorMessage: '',
|
|
isSuccess: false,
|
|
data: null
|
|
};
|
|
|
|
try {
|
|
let response: any = await apollo.mutate({
|
|
mutation: gql(
|
|
`mutation {
|
|
deleteAPIKey(id: "${id}") {
|
|
id
|
|
}
|
|
}`
|
|
),
|
|
fetchPolicy: 'no-cache'
|
|
});
|
|
|
|
if (response.errors) {
|
|
result.errorMessage = response.errors[0].message;
|
|
} else {
|
|
result.isSuccess = true;
|
|
result.data = response.data.deleteAPIKey;
|
|
}
|
|
} catch (e) {
|
|
result.errorMessage = e.message;
|
|
}
|
|
|
|
return result;
|
|
} |