* encode redirect url to make sure it has all parameters * add changesets
99 lines
2.6 KiB
TypeScript
99 lines
2.6 KiB
TypeScript
import { useQuery, useMutation } from "@tanstack/react-query";
|
|
|
|
import type { CALENDARS } from "@calcom/platform-constants";
|
|
import { SUCCESS_STATUS, ERROR_STATUS } from "@calcom/platform-constants";
|
|
import type { ApiResponse, ApiErrorResponse, CreateCalendarCredentialsInput } from "@calcom/platform-types";
|
|
|
|
import http from "../../lib/http";
|
|
|
|
export const getQueryKey = (calendar: (typeof CALENDARS)[number]) => [`get-${calendar}-redirect-uri`];
|
|
|
|
interface IPUpdateOAuthCredentials {
|
|
onSuccess?: (res: ApiResponse) => void;
|
|
onError?: (err: ApiErrorResponse) => void;
|
|
}
|
|
|
|
export const useGetRedirectUrl = (
|
|
calendar: (typeof CALENDARS)[number],
|
|
redir?: string,
|
|
isDryRun?: boolean
|
|
) => {
|
|
const redirectUrl = !!redir ? encodeURIComponent(redir) : "";
|
|
|
|
const authUrl = useQuery({
|
|
queryKey: getQueryKey(calendar),
|
|
staleTime: Infinity,
|
|
enabled: false,
|
|
queryFn: () => {
|
|
return http
|
|
?.get<ApiResponse<{ authUrl: string }>>(
|
|
`/calendars/${calendar}/connect?redir=${redirectUrl}&isDryRun=${isDryRun ?? ""}`
|
|
)
|
|
.then(({ data: responseBody }) => {
|
|
if (responseBody.status === SUCCESS_STATUS) {
|
|
return responseBody.data.authUrl;
|
|
}
|
|
if (responseBody.status === ERROR_STATUS) throw new Error(responseBody.error.message);
|
|
return "";
|
|
});
|
|
},
|
|
});
|
|
|
|
return authUrl;
|
|
};
|
|
|
|
export const useConnect = (calendar: (typeof CALENDARS)[number], redir?: string, isDryRun?: boolean) => {
|
|
const { refetch } = useGetRedirectUrl(calendar, redir, isDryRun);
|
|
|
|
const connect = async () => {
|
|
const redirectUri = await refetch();
|
|
|
|
if (redirectUri.data) {
|
|
window.location.href = redirectUri.data;
|
|
}
|
|
};
|
|
|
|
return { connect };
|
|
};
|
|
|
|
export const useSaveCalendarCredentials = (
|
|
{ onSuccess, onError }: IPUpdateOAuthCredentials = {
|
|
onSuccess: () => {
|
|
return;
|
|
},
|
|
onError: () => {
|
|
return;
|
|
},
|
|
}
|
|
) => {
|
|
const mutation = useMutation<
|
|
ApiResponse<{ status: string }>,
|
|
unknown,
|
|
CreateCalendarCredentialsInput & { calendar: (typeof CALENDARS)[number] }
|
|
>({
|
|
mutationFn: (data) => {
|
|
const { calendar, username, password } = data;
|
|
const body: CreateCalendarCredentialsInput = {
|
|
username,
|
|
password,
|
|
};
|
|
|
|
return http.post(`/calendars/${calendar}/credentials`, body).then((res) => {
|
|
return res.data;
|
|
});
|
|
},
|
|
onSuccess: (data) => {
|
|
if (data.status === SUCCESS_STATUS) {
|
|
onSuccess?.(data);
|
|
} else {
|
|
onError?.(data);
|
|
}
|
|
},
|
|
onError: (err) => {
|
|
onError?.(err as ApiErrorResponse);
|
|
},
|
|
});
|
|
|
|
return mutation;
|
|
};
|