/* * MIT License * * Copyright (c) 2020-present Cloudogu GmbH and Contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ import { Me, PublicKey, PublicKeyCreation, PublicKeysCollection, 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"; export const CONTENT_TYPE_PUBLIC_KEY = "application/vnd.scmm-publicKey+json;v=2"; export const usePublicKeys = (user: User | Me): ApiResult => useQuery(["user", user.name, "publicKeys"], () => apiClient.get(requiredLink(user, "publicKeys")).then((r) => r.json()) ); const createPublicKey = (link: string) => async (key: PublicKeyCreation): Promise => { const creationResponse = await apiClient.post(link, key, CONTENT_TYPE_PUBLIC_KEY); const location = creationResponse.headers.get("Location"); if (!location) { throw new Error("Server does not return required Location header"); } const apiKeyResponse = await apiClient.get(location); return apiKeyResponse.json(); }; export const useCreatePublicKey = (user: User | Me, publicKeys: PublicKeysCollection) => { const queryClient = useQueryClient(); const { mutate, data, isLoading, error, reset } = useMutation( createPublicKey(requiredLink(publicKeys, "create")), { onSuccess: () => queryClient.invalidateQueries(["user", user.name, "publicKeys"]), } ); return { create: (key: PublicKeyCreation) => mutate(key), isLoading, error, apiKey: data, reset, }; }; export const useDeletePublicKey = (user: User | Me) => { const queryClient = useQueryClient(); const { mutate, isLoading, error, data } = useMutation( (publicKey) => { const deleteUrl = requiredLink(publicKey, "delete"); return apiClient.delete(deleteUrl); }, { onSuccess: () => queryClient.invalidateQueries(["user", user.name, "publicKeys"]), } ); return { remove: (publicKey: PublicKey) => mutate(publicKey), isLoading, error, isDeleted: !!data, }; };