* Fix headers for ESR 5.9 * check if reactions is defined to avoid a crash with servers without metadata Co-authored-by: Elias Nahum <nahumhbl@gmail.com>
34 lines
948 B
JavaScript
34 lines
948 B
JavaScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {Client4} from 'mattermost-redux/client';
|
|
import CookieManager from 'react-native-cookies';
|
|
|
|
let mfaPreflightDone = false;
|
|
|
|
export function setMfaPreflightDone(state) {
|
|
mfaPreflightDone = state;
|
|
}
|
|
|
|
export function getMfaPreflightDone() {
|
|
return mfaPreflightDone;
|
|
}
|
|
|
|
export function setCSRFFromCookie(url) {
|
|
return new Promise((resolve) => {
|
|
CookieManager.get(url, false).then((res) => {
|
|
const token = res.MMCSRF;
|
|
if (token) {
|
|
let value = null;
|
|
if (typeof token === 'object' && Object.prototype.hasOwnProperty.call(token, 'value')) {
|
|
value = token.value;
|
|
} else {
|
|
value = token;
|
|
}
|
|
|
|
Client4.setCSRF(value);
|
|
}
|
|
resolve();
|
|
});
|
|
});
|
|
}
|