mirror of
https://github.com/MeowLynxSea/Proksea.git
synced 2025-07-11 03:44:39 +00:00
93 lines
3.7 KiB
JavaScript
93 lines
3.7 KiB
JavaScript
/*! @azure/msal-node v2.9.2 2024-06-10 */
|
|
'use strict';
|
|
import { AuthError } from '@azure/msal-common';
|
|
|
|
/*
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License.
|
|
*/
|
|
/**
|
|
* NodeAuthErrorMessage class containing string constants used by error codes and messages.
|
|
*/
|
|
const NodeAuthErrorMessage = {
|
|
invalidLoopbackAddressType: {
|
|
code: "invalid_loopback_server_address_type",
|
|
desc: "Loopback server address is not type string. This is unexpected.",
|
|
},
|
|
unableToLoadRedirectUri: {
|
|
code: "unable_to_load_redirectUrl",
|
|
desc: "Loopback server callback was invoked without a url. This is unexpected.",
|
|
},
|
|
noAuthCodeInResponse: {
|
|
code: "no_auth_code_in_response",
|
|
desc: "No auth code found in the server response. Please check your network trace to determine what happened.",
|
|
},
|
|
noLoopbackServerExists: {
|
|
code: "no_loopback_server_exists",
|
|
desc: "No loopback server exists yet.",
|
|
},
|
|
loopbackServerAlreadyExists: {
|
|
code: "loopback_server_already_exists",
|
|
desc: "Loopback server already exists. Cannot create another.",
|
|
},
|
|
loopbackServerTimeout: {
|
|
code: "loopback_server_timeout",
|
|
desc: "Timed out waiting for auth code listener to be registered.",
|
|
},
|
|
stateNotFoundError: {
|
|
code: "state_not_found",
|
|
desc: "State not found. Please verify that the request originated from msal.",
|
|
},
|
|
};
|
|
class NodeAuthError extends AuthError {
|
|
constructor(errorCode, errorMessage) {
|
|
super(errorCode, errorMessage);
|
|
this.name = "NodeAuthError";
|
|
}
|
|
/**
|
|
* Creates an error thrown if loopback server address is of type string.
|
|
*/
|
|
static createInvalidLoopbackAddressTypeError() {
|
|
return new NodeAuthError(NodeAuthErrorMessage.invalidLoopbackAddressType.code, `${NodeAuthErrorMessage.invalidLoopbackAddressType.desc}`);
|
|
}
|
|
/**
|
|
* Creates an error thrown if the loopback server is unable to get a url.
|
|
*/
|
|
static createUnableToLoadRedirectUrlError() {
|
|
return new NodeAuthError(NodeAuthErrorMessage.unableToLoadRedirectUri.code, `${NodeAuthErrorMessage.unableToLoadRedirectUri.desc}`);
|
|
}
|
|
/**
|
|
* Creates an error thrown if the server response does not contain an auth code.
|
|
*/
|
|
static createNoAuthCodeInResponseError() {
|
|
return new NodeAuthError(NodeAuthErrorMessage.noAuthCodeInResponse.code, `${NodeAuthErrorMessage.noAuthCodeInResponse.desc}`);
|
|
}
|
|
/**
|
|
* Creates an error thrown if the loopback server has not been spun up yet.
|
|
*/
|
|
static createNoLoopbackServerExistsError() {
|
|
return new NodeAuthError(NodeAuthErrorMessage.noLoopbackServerExists.code, `${NodeAuthErrorMessage.noLoopbackServerExists.desc}`);
|
|
}
|
|
/**
|
|
* Creates an error thrown if a loopback server already exists when attempting to create another one.
|
|
*/
|
|
static createLoopbackServerAlreadyExistsError() {
|
|
return new NodeAuthError(NodeAuthErrorMessage.loopbackServerAlreadyExists.code, `${NodeAuthErrorMessage.loopbackServerAlreadyExists.desc}`);
|
|
}
|
|
/**
|
|
* Creates an error thrown if the loopback server times out registering the auth code listener.
|
|
*/
|
|
static createLoopbackServerTimeoutError() {
|
|
return new NodeAuthError(NodeAuthErrorMessage.loopbackServerTimeout.code, `${NodeAuthErrorMessage.loopbackServerTimeout.desc}`);
|
|
}
|
|
/**
|
|
* Creates an error thrown when the state is not present.
|
|
*/
|
|
static createStateNotFoundError() {
|
|
return new NodeAuthError(NodeAuthErrorMessage.stateNotFoundError.code, NodeAuthErrorMessage.stateNotFoundError.desc);
|
|
}
|
|
}
|
|
|
|
export { NodeAuthError, NodeAuthErrorMessage };
|
|
//# sourceMappingURL=NodeAuthError.mjs.map
|