1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-12 01:48:21 +02:00

remove callbackUri input for fixed mobile uri (#1282)

This commit is contained in:
Kyle Spearrin 2021-11-09 11:36:41 -05:00 committed by GitHub
parent 278cf2ca40
commit 5b6fb16591
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,8 @@ let btnText: string = null;
let btnReturnText: string = null;
let parentUrl: string = null;
let parentOrigin: string = null;
let callbackUri: string = null;
let mobileResponse = false;
let mobileCallbackUri = 'bitwarden://webauthn-callback';
let stopWebAuthn = false;
let sentSuccess = false;
let obj: any = null;
@ -75,7 +76,14 @@ function parseParametersV1() {
}
function parseParametersV2() {
let dataObj: { data: any, headerText: string; btnText: string; btnReturnText: string; callbackUri?: string } = null;
let dataObj: {
data: any,
headerText: string;
btnText: string;
btnReturnText: string;
callbackUri?: string;
mobile?: boolean
} = null;
try {
dataObj = JSON.parse(b64Decode(getQsParam('data')));
}
@ -84,7 +92,7 @@ function parseParametersV2() {
return;
}
callbackUri = dataObj.callbackUri;
mobileResponse = dataObj.callbackUri != null || dataObj.mobile === true;
webauthnJson = dataObj.data;
headerText = dataObj.headerText;
btnText = dataObj.btnText;
@ -115,7 +123,7 @@ function start() {
stopWebAuthn = false;
if (callbackUri != null || (navigator.userAgent.indexOf(' Safari/') !== -1 && navigator.userAgent.indexOf('Chrome') === -1)) {
if (mobileResponse || (navigator.userAgent.indexOf(' Safari/') !== -1 && navigator.userAgent.indexOf('Chrome') === -1)) {
// Safari and mobile chrome blocks non-user initiated WebAuthn requests.
} else {
executeWebAuthn();
@ -148,9 +156,9 @@ function onMessage() {
}
function error(message: string) {
if (callbackUri) {
document.location.replace(callbackUri + '?error=' + encodeURIComponent(message));
returnButton(callbackUri + '?error=' + encodeURIComponent(message));
if (mobileResponse) {
document.location.replace(mobileCallbackUri + '?error=' + encodeURIComponent(message));
returnButton(mobileCallbackUri + '?error=' + encodeURIComponent(message));
} else {
parent.postMessage('error|' + message, parentUrl);
}
@ -163,9 +171,9 @@ function success(assertedCredential: PublicKeyCredential) {
const dataString = buildDataString(assertedCredential);
if (callbackUri) {
document.location.replace(callbackUri + '?data=' + encodeURIComponent(dataString));
returnButton(callbackUri + '?data=' + encodeURIComponent(dataString));
if (mobileResponse) {
document.location.replace(mobileCallbackUri + '?data=' + encodeURIComponent(dataString));
returnButton(mobileCallbackUri + '?data=' + encodeURIComponent(dataString));
} else {
parent.postMessage('success|' + dataString, parentUrl);
sentSuccess = true;
@ -173,7 +181,7 @@ function success(assertedCredential: PublicKeyCredential) {
}
function info(message: string) {
if (callbackUri) {
if (mobileResponse) {
return;
}