DocSpace-buildtools/packages/asc-web-common/store/TfaStore.js

73 lines
1.7 KiB
JavaScript

import { makeAutoObservable } from "mobx";
import api from "../api";
import history from "../history";
class TfaStore {
tfaSettings = null;
backupCodes = [];
tfaAndroidAppUrl =
"https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2";
tfaIosAppUrl = "https://apps.apple.com/app/google-authenticator/id388497605";
tfaWinAppUrl =
"https://www.microsoft.com/ru-ru/p/authenticator/9wzdncrfj3rj?rtc=1&activetab=pivot:overviewtab";
constructor() {
makeAutoObservable(this);
}
getTfaType = async () => {
const res = await api.settings.getTfaSettings();
const sms = res[0].enabled;
const app = res[1].enabled;
const type = sms ? "sms" : app ? "app" : "none";
this.tfaSettings = type;
return type;
};
getTfaSettings = async () => {
return await api.settings.getTfaSettings();
};
setTfaSettings = async (type) => {
return await api.settings.setTfaSettings(type);
};
setBackupCodes = (codes) => {
this.backupCodes = codes;
};
getTfaConfirmLink = async (res) => {
if (res) {
return await api.settings.getTfaConfirmLink();
}
};
getSecretKeyAndQR = async (confirmKey) => {
return api.settings.getTfaSecretKeyAndQR(confirmKey);
};
loginWithCode = async (userName, passwordHash, code) => {
return api.user.loginWithTfaCode(userName, passwordHash, code);
};
loginWithCodeAndCookie = async (code) => {
return api.settings.validateTfaCode(code);
};
getBackupCodes = async () => {
return api.settings.getTfaBackupCodes();
};
getNewBackupCodes = async () => {
return api.settings.getTfaNewBackupCodes();
};
unlinkApp = async (id) => {
return api.settings.unlinkTfaApp(id);
};
}
export default TfaStore;