2022-10-24 10:46:14 +02:00
|
|
|
/*
|
|
|
|
This file is part of GNU Taler
|
2022-12-16 20:59:37 +01:00
|
|
|
(C) 2021-2023 Taler Systems S.A.
|
2022-10-24 10:46:14 +02:00
|
|
|
|
|
|
|
GNU Taler is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
|
|
|
GNU Taler 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 General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
2023-02-08 21:39:39 +01:00
|
|
|
import {
|
|
|
|
HttpResponse,
|
|
|
|
HttpResponseOk,
|
2023-02-10 13:50:54 +01:00
|
|
|
RequestError,
|
2023-05-05 13:38:28 +02:00
|
|
|
} from "@gnu-taler/web-util/browser";
|
2023-02-10 13:50:54 +01:00
|
|
|
import { MerchantBackend } from "../declaration.js";
|
2023-01-03 05:57:39 +01:00
|
|
|
import { useBackendInstanceRequest, useMatchMutate } from "./backend.js";
|
2022-10-24 10:46:14 +02:00
|
|
|
|
2023-02-16 16:13:31 +01:00
|
|
|
// FIX default import https://github.com/microsoft/TypeScript/issues/49189
|
|
|
|
import _useSWR, { SWRHook, useSWRConfig } from "swr";
|
|
|
|
const useSWR = _useSWR as unknown as SWRHook;
|
|
|
|
|
2022-10-24 10:46:14 +02:00
|
|
|
export function useReservesAPI(): ReserveMutateAPI {
|
|
|
|
const mutateAll = useMatchMutate();
|
|
|
|
const { mutate } = useSWRConfig();
|
2023-01-03 05:57:39 +01:00
|
|
|
const { request } = useBackendInstanceRequest();
|
2022-10-24 10:46:14 +02:00
|
|
|
|
|
|
|
const createReserve = async (
|
2022-12-19 16:23:39 +01:00
|
|
|
data: MerchantBackend.Tips.ReserveCreateRequest,
|
2022-10-24 10:46:14 +02:00
|
|
|
): Promise<
|
|
|
|
HttpResponseOk<MerchantBackend.Tips.ReserveCreateConfirmation>
|
|
|
|
> => {
|
|
|
|
const res = await request<MerchantBackend.Tips.ReserveCreateConfirmation>(
|
2023-01-03 05:57:39 +01:00
|
|
|
`/private/reserves`,
|
2022-10-24 10:46:14 +02:00
|
|
|
{
|
2023-01-03 05:57:39 +01:00
|
|
|
method: "POST",
|
2022-10-24 10:46:14 +02:00
|
|
|
data,
|
2022-12-19 16:23:39 +01:00
|
|
|
},
|
2022-10-24 10:46:14 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
//evict reserve list query
|
|
|
|
await mutateAll(/.*private\/reserves.*/);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
};
|
|
|
|
|
|
|
|
const authorizeTipReserve = async (
|
|
|
|
pub: string,
|
2022-12-19 16:23:39 +01:00
|
|
|
data: MerchantBackend.Tips.TipCreateRequest,
|
2022-10-24 10:46:14 +02:00
|
|
|
): Promise<HttpResponseOk<MerchantBackend.Tips.TipCreateConfirmation>> => {
|
|
|
|
const res = await request<MerchantBackend.Tips.TipCreateConfirmation>(
|
2023-01-03 05:57:39 +01:00
|
|
|
`/private/reserves/${pub}/authorize-tip`,
|
2022-10-24 10:46:14 +02:00
|
|
|
{
|
2023-01-03 05:57:39 +01:00
|
|
|
method: "POST",
|
2022-10-24 10:46:14 +02:00
|
|
|
data,
|
2022-12-19 16:23:39 +01:00
|
|
|
},
|
2022-10-24 10:46:14 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
//evict reserve details query
|
2023-01-03 05:57:39 +01:00
|
|
|
await mutate([`/private/reserves/${pub}`]);
|
2022-10-24 10:46:14 +02:00
|
|
|
|
|
|
|
return res;
|
|
|
|
};
|
|
|
|
|
|
|
|
const authorizeTip = async (
|
2022-12-19 16:23:39 +01:00
|
|
|
data: MerchantBackend.Tips.TipCreateRequest,
|
2022-10-24 10:46:14 +02:00
|
|
|
): Promise<HttpResponseOk<MerchantBackend.Tips.TipCreateConfirmation>> => {
|
|
|
|
const res = await request<MerchantBackend.Tips.TipCreateConfirmation>(
|
2023-01-03 05:57:39 +01:00
|
|
|
`/private/tips`,
|
2022-10-24 10:46:14 +02:00
|
|
|
{
|
2023-01-03 05:57:39 +01:00
|
|
|
method: "POST",
|
2022-10-24 10:46:14 +02:00
|
|
|
data,
|
2022-12-19 16:23:39 +01:00
|
|
|
},
|
2022-10-24 10:46:14 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
//evict all details query
|
|
|
|
await mutateAll(/.*private\/reserves\/.*/);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
};
|
|
|
|
|
2023-02-08 21:39:39 +01:00
|
|
|
const deleteReserve = async (
|
|
|
|
pub: string,
|
|
|
|
): Promise<HttpResponse<void, MerchantBackend.ErrorDetail>> => {
|
2023-01-03 05:57:39 +01:00
|
|
|
const res = await request<void>(`/private/reserves/${pub}`, {
|
|
|
|
method: "DELETE",
|
2022-10-24 10:46:14 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
//evict reserve list query
|
|
|
|
await mutateAll(/.*private\/reserves.*/);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
};
|
|
|
|
|
|
|
|
return { createReserve, authorizeTip, authorizeTipReserve, deleteReserve };
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ReserveMutateAPI {
|
|
|
|
createReserve: (
|
2022-12-19 16:23:39 +01:00
|
|
|
data: MerchantBackend.Tips.ReserveCreateRequest,
|
2022-10-24 10:46:14 +02:00
|
|
|
) => Promise<HttpResponseOk<MerchantBackend.Tips.ReserveCreateConfirmation>>;
|
|
|
|
authorizeTipReserve: (
|
|
|
|
id: string,
|
2022-12-19 16:23:39 +01:00
|
|
|
data: MerchantBackend.Tips.TipCreateRequest,
|
2022-10-24 10:46:14 +02:00
|
|
|
) => Promise<HttpResponseOk<MerchantBackend.Tips.TipCreateConfirmation>>;
|
|
|
|
authorizeTip: (
|
2022-12-19 16:23:39 +01:00
|
|
|
data: MerchantBackend.Tips.TipCreateRequest,
|
2022-10-24 10:46:14 +02:00
|
|
|
) => Promise<HttpResponseOk<MerchantBackend.Tips.TipCreateConfirmation>>;
|
2023-02-08 21:39:39 +01:00
|
|
|
deleteReserve: (
|
|
|
|
id: string,
|
|
|
|
) => Promise<HttpResponse<void, MerchantBackend.ErrorDetail>>;
|
2022-10-24 10:46:14 +02:00
|
|
|
}
|
|
|
|
|
2023-02-08 21:39:39 +01:00
|
|
|
export function useInstanceReserves(): HttpResponse<
|
|
|
|
MerchantBackend.Tips.TippingReserveStatus,
|
|
|
|
MerchantBackend.ErrorDetail
|
|
|
|
> {
|
2023-01-03 05:57:39 +01:00
|
|
|
const { fetcher } = useBackendInstanceRequest();
|
2022-10-24 10:46:14 +02:00
|
|
|
|
|
|
|
const { data, error, isValidating } = useSWR<
|
|
|
|
HttpResponseOk<MerchantBackend.Tips.TippingReserveStatus>,
|
2023-02-10 13:50:54 +01:00
|
|
|
RequestError<MerchantBackend.ErrorDetail>
|
2023-01-03 05:57:39 +01:00
|
|
|
>([`/private/reserves`], fetcher);
|
2022-10-24 10:46:14 +02:00
|
|
|
|
|
|
|
if (isValidating) return { loading: true, data: data?.data };
|
|
|
|
if (data) return data;
|
2023-05-12 16:23:38 +02:00
|
|
|
if (error) return error.cause;
|
2022-10-24 10:46:14 +02:00
|
|
|
return { loading: true };
|
|
|
|
}
|
|
|
|
|
|
|
|
export function useReserveDetails(
|
2022-12-19 16:23:39 +01:00
|
|
|
reserveId: string,
|
2023-02-08 21:39:39 +01:00
|
|
|
): HttpResponse<
|
|
|
|
MerchantBackend.Tips.ReserveDetail,
|
|
|
|
MerchantBackend.ErrorDetail
|
|
|
|
> {
|
2023-01-03 05:57:39 +01:00
|
|
|
const { reserveDetailFetcher } = useBackendInstanceRequest();
|
2022-10-24 10:46:14 +02:00
|
|
|
|
|
|
|
const { data, error, isValidating } = useSWR<
|
|
|
|
HttpResponseOk<MerchantBackend.Tips.ReserveDetail>,
|
2023-02-10 13:50:54 +01:00
|
|
|
RequestError<MerchantBackend.ErrorDetail>
|
2023-01-03 05:57:39 +01:00
|
|
|
>([`/private/reserves/${reserveId}`], reserveDetailFetcher, {
|
2022-10-24 10:46:14 +02:00
|
|
|
refreshInterval: 0,
|
|
|
|
refreshWhenHidden: false,
|
|
|
|
revalidateOnFocus: false,
|
|
|
|
revalidateOnReconnect: false,
|
|
|
|
refreshWhenOffline: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (isValidating) return { loading: true, data: data?.data };
|
|
|
|
if (data) return data;
|
2023-05-12 16:23:38 +02:00
|
|
|
if (error) return error.cause;
|
2022-10-24 10:46:14 +02:00
|
|
|
return { loading: true };
|
|
|
|
}
|
|
|
|
|
|
|
|
export function useTipDetails(
|
2022-12-19 16:23:39 +01:00
|
|
|
tipId: string,
|
2023-02-08 21:39:39 +01:00
|
|
|
): HttpResponse<MerchantBackend.Tips.TipDetails, MerchantBackend.ErrorDetail> {
|
2023-01-03 05:57:39 +01:00
|
|
|
const { tipsDetailFetcher } = useBackendInstanceRequest();
|
2022-10-24 10:46:14 +02:00
|
|
|
|
|
|
|
const { data, error, isValidating } = useSWR<
|
|
|
|
HttpResponseOk<MerchantBackend.Tips.TipDetails>,
|
2023-02-10 13:50:54 +01:00
|
|
|
RequestError<MerchantBackend.ErrorDetail>
|
2023-01-03 05:57:39 +01:00
|
|
|
>([`/private/tips/${tipId}`], tipsDetailFetcher, {
|
2022-10-24 10:46:14 +02:00
|
|
|
refreshInterval: 0,
|
|
|
|
refreshWhenHidden: false,
|
|
|
|
revalidateOnFocus: false,
|
|
|
|
revalidateOnReconnect: false,
|
|
|
|
refreshWhenOffline: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (isValidating) return { loading: true, data: data?.data };
|
|
|
|
if (data) return data;
|
2023-05-12 16:23:38 +02:00
|
|
|
if (error) return error.cause;
|
2022-10-24 10:46:14 +02:00
|
|
|
return { loading: true };
|
|
|
|
}
|