Initial
This commit is contained in:
112
node_modules/@azure/msal-node/dist/error/NodeAuthError.mjs
generated
vendored
Normal file
112
node_modules/@azure/msal-node/dist/error/NodeAuthError.mjs
generated
vendored
Normal file
@@ -0,0 +1,112 @@
|
||||
/*! @azure/msal-node v3.8.0 2025-09-24 */
|
||||
'use strict';
|
||||
import { AuthError } from '@azure/msal-common/node';
|
||||
|
||||
/*
|
||||
* 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.",
|
||||
},
|
||||
thumbprintMissing: {
|
||||
code: "thumbprint_missing_from_client_certificate",
|
||||
desc: "Client certificate does not contain a SHA-1 or SHA-256 thumbprint.",
|
||||
},
|
||||
redirectUriNotSupported: {
|
||||
code: "redirect_uri_not_supported",
|
||||
desc: "RedirectUri is not supported in this scenario. Please remove redirectUri from the request.",
|
||||
},
|
||||
};
|
||||
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);
|
||||
}
|
||||
/**
|
||||
* Creates an error thrown when client certificate was provided, but neither the SHA-1 or SHA-256 thumbprints were provided
|
||||
*/
|
||||
static createThumbprintMissingError() {
|
||||
return new NodeAuthError(NodeAuthErrorMessage.thumbprintMissing.code, NodeAuthErrorMessage.thumbprintMissing.desc);
|
||||
}
|
||||
/**
|
||||
* Creates an error thrown when redirectUri is provided in an unsupported scenario
|
||||
*/
|
||||
static createRedirectUriNotSupportedError() {
|
||||
return new NodeAuthError(NodeAuthErrorMessage.redirectUriNotSupported.code, NodeAuthErrorMessage.redirectUriNotSupported.desc);
|
||||
}
|
||||
}
|
||||
|
||||
export { NodeAuthError, NodeAuthErrorMessage };
|
||||
//# sourceMappingURL=NodeAuthError.mjs.map
|
||||
Reference in New Issue
Block a user