2022-10-19 14:31:20 +02:00
|
|
|
/*
|
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2023-07-05 12:53:22 +02:00
|
|
|
import { AuthDict } from "matrix-js-sdk/src/interactive-auth";
|
2022-10-19 14:31:20 +02:00
|
|
|
import { UIAResponse } from "matrix-js-sdk/src/@types/uia";
|
|
|
|
|
|
|
|
import Modal from "../Modal";
|
|
|
|
import InteractiveAuthDialog, { InteractiveAuthDialogProps } from "../components/views/dialogs/InteractiveAuthDialog";
|
|
|
|
|
2023-07-05 12:53:22 +02:00
|
|
|
type FunctionWithUIA<R, A> = (auth?: AuthDict, ...args: A[]) => Promise<UIAResponse<R>>;
|
2022-10-19 14:31:20 +02:00
|
|
|
|
|
|
|
export function wrapRequestWithDialog<R, A = any>(
|
|
|
|
requestFunction: FunctionWithUIA<R, A>,
|
2023-04-03 10:26:55 +02:00
|
|
|
opts: Omit<InteractiveAuthDialogProps<R>, "makeRequest" | "onFinished">,
|
2022-12-12 12:24:14 +01:00
|
|
|
): (...args: A[]) => Promise<R> {
|
|
|
|
return async function (...args): Promise<R> {
|
2022-10-19 14:31:20 +02:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
const boundFunction = requestFunction.bind(opts.matrixClient) as FunctionWithUIA<R, A>;
|
2023-07-05 12:53:22 +02:00
|
|
|
boundFunction(undefined, ...args)
|
2022-10-19 14:31:20 +02:00
|
|
|
.then((res) => resolve(res as R))
|
2022-12-12 12:24:14 +01:00
|
|
|
.catch((error) => {
|
2022-10-19 14:31:20 +02:00
|
|
|
if (error.httpStatus !== 401 || !error.data?.flows) {
|
|
|
|
// doesn't look like an interactive-auth failure
|
|
|
|
return reject(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
Modal.createDialog(InteractiveAuthDialog, {
|
|
|
|
...opts,
|
|
|
|
authData: error.data,
|
2023-07-05 12:53:22 +02:00
|
|
|
makeRequest: (authData: AuthDict) => boundFunction(authData, ...args),
|
2022-10-19 14:31:20 +02:00
|
|
|
onFinished: (success, result) => {
|
|
|
|
if (success) {
|
2023-02-28 11:31:48 +01:00
|
|
|
resolve(result as R);
|
2022-10-19 14:31:20 +02:00
|
|
|
} else {
|
|
|
|
reject(result);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|