2021-06-28 13:19:03 +02:00
|
|
|
/*
|
2024-09-24 09:42:07 +02:00
|
|
|
* Copyright (c) 2020 - present Cloudogu GmbH
|
2021-06-28 13:19:03 +02:00
|
|
|
*
|
2024-09-24 09:42:07 +02:00
|
|
|
* This program is free software: you can redistribute it and/or modify it under
|
|
|
|
|
* the terms of the GNU Affero General Public License as published by the Free
|
|
|
|
|
* Software Foundation, version 3.
|
2021-06-28 13:19:03 +02:00
|
|
|
*
|
2024-09-24 09:42:07 +02:00
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
|
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
|
|
|
|
* details.
|
2021-06-28 13:19:03 +02:00
|
|
|
*
|
2024-09-24 09:42:07 +02:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
|
* along with this program. If not, see https://www.gnu.org/licenses/.
|
2021-06-28 13:19:03 +02:00
|
|
|
*/
|
2024-09-24 09:42:07 +02:00
|
|
|
|
2021-06-28 13:19:03 +02:00
|
|
|
import { ApiKey, ApiKeyCreation, ApiKeysCollection, ApiKeyWithToken, Me, User } from "@scm-manager/ui-types";
|
|
|
|
|
import { ApiResult } from "./base";
|
|
|
|
|
import { useMutation, useQuery, useQueryClient } from "react-query";
|
|
|
|
|
import { apiClient } from "./apiclient";
|
|
|
|
|
import { requiredLink } from "./links";
|
|
|
|
|
|
|
|
|
|
const CONTENT_TYPE_API_KEY = "application/vnd.scmm-apiKey+json;v=2";
|
|
|
|
|
|
|
|
|
|
export const useApiKeys = (user: User | Me): ApiResult<ApiKeysCollection> =>
|
|
|
|
|
useQuery(["user", user.name, "apiKeys"], () => apiClient.get(requiredLink(user, "apiKeys")).then((r) => r.json()));
|
|
|
|
|
|
|
|
|
|
const createApiKey =
|
|
|
|
|
(link: string) =>
|
|
|
|
|
async (key: ApiKeyCreation): Promise<ApiKeyWithToken> => {
|
|
|
|
|
const creationResponse = await apiClient.post(link, key, CONTENT_TYPE_API_KEY);
|
|
|
|
|
const location = creationResponse.headers.get("Location");
|
|
|
|
|
if (!location) {
|
|
|
|
|
throw new Error("Server does not return required Location header");
|
|
|
|
|
}
|
|
|
|
|
const locationResponse = await apiClient.get(location);
|
2022-04-25 16:34:40 +02:00
|
|
|
const [apiKey, token] = await Promise.all([locationResponse.json(), creationResponse.text()]);
|
2021-06-28 13:19:03 +02:00
|
|
|
return { ...apiKey, token } as ApiKeyWithToken;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const useCreateApiKey = (user: User | Me, apiKeys: ApiKeysCollection) => {
|
|
|
|
|
const queryClient = useQueryClient();
|
|
|
|
|
const { mutate, data, isLoading, error, reset } = useMutation<ApiKeyWithToken, Error, ApiKeyCreation>(
|
|
|
|
|
createApiKey(requiredLink(apiKeys, "create")),
|
|
|
|
|
{
|
|
|
|
|
onSuccess: () => queryClient.invalidateQueries(["user", user.name, "apiKeys"]),
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
return {
|
|
|
|
|
create: (key: ApiKeyCreation) => mutate(key),
|
|
|
|
|
isLoading,
|
|
|
|
|
error,
|
|
|
|
|
apiKey: data,
|
|
|
|
|
reset,
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const useDeleteApiKey = (user: User | Me) => {
|
|
|
|
|
const queryClient = useQueryClient();
|
|
|
|
|
const { mutate, isLoading, error, data } = useMutation<unknown, Error, ApiKey>(
|
|
|
|
|
(apiKey) => {
|
|
|
|
|
const deleteUrl = requiredLink(apiKey, "delete");
|
|
|
|
|
return apiClient.delete(deleteUrl);
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
onSuccess: () => queryClient.invalidateQueries(["user", user.name, "apiKeys"]),
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
return {
|
|
|
|
|
remove: (apiKey: ApiKey) => mutate(apiKey),
|
|
|
|
|
isLoading,
|
|
|
|
|
error,
|
|
|
|
|
isDeleted: !!data,
|
|
|
|
|
};
|
|
|
|
|
};
|