mirror of
https://github.com/MarSeventh/CloudFlare-ImgBed.git
synced 2026-04-26 15:15:06 +00:00
init
This commit is contained in:
101
node_modules/@sentry/utils/esm/userIntegrations.js
generated
vendored
Normal file
101
node_modules/@sentry/utils/esm/userIntegrations.js
generated
vendored
Normal file
@@ -0,0 +1,101 @@
|
||||
/**
|
||||
* Recursively traverses an object to update an existing nested key.
|
||||
* Note: The provided key path must include existing properties,
|
||||
* the function will not create objects while traversing.
|
||||
*
|
||||
* @param obj An object to update
|
||||
* @param value The value to update the nested key with
|
||||
* @param keyPath The path to the key to update ex. fizz.buzz.foo
|
||||
*/
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
function setNestedKey(obj, keyPath, value) {
|
||||
// Ex. foo.bar.zoop will extract foo and bar.zoop
|
||||
const match = keyPath.match(/([a-z_]+)\.(.*)/i);
|
||||
// The match will be null when there's no more recursing to do, i.e., when we've reached the right level of the object
|
||||
if (match === null) {
|
||||
obj[keyPath] = value;
|
||||
} else {
|
||||
// `match[1]` is the initial segment of the path, and `match[2]` is the remainder of the path
|
||||
const innerObj = obj[match[1]];
|
||||
setNestedKey(innerObj, match[2], value);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Enforces inclusion of a given integration with specified options in an integration array originally determined by the
|
||||
* user, by either including the given default instance or by patching an existing user instance with the given options.
|
||||
*
|
||||
* Ideally this would happen when integrations are set up, but there isn't currently a mechanism there for merging
|
||||
* options from a default integration instance with those from a user-provided instance of the same integration, only
|
||||
* for allowing the user to override a default instance entirely. (TODO: Fix that.)
|
||||
*
|
||||
* @param defaultIntegrationInstance An instance of the integration with the correct options already set
|
||||
* @param userIntegrations Integrations defined by the user.
|
||||
* @param forcedOptions Options with which to patch an existing user-derived instance on the integration.
|
||||
* @returns A final integrations array.
|
||||
*
|
||||
* @deprecated This will be removed in v8.
|
||||
*/
|
||||
function addOrUpdateIntegration(
|
||||
defaultIntegrationInstance,
|
||||
userIntegrations,
|
||||
forcedOptions = {},
|
||||
) {
|
||||
return (
|
||||
Array.isArray(userIntegrations)
|
||||
? addOrUpdateIntegrationInArray(defaultIntegrationInstance, userIntegrations, forcedOptions)
|
||||
: addOrUpdateIntegrationInFunction(
|
||||
defaultIntegrationInstance,
|
||||
// Somehow TS can't figure out that not being an array makes this necessarily a function
|
||||
userIntegrations ,
|
||||
forcedOptions,
|
||||
)
|
||||
) ;
|
||||
}
|
||||
|
||||
function addOrUpdateIntegrationInArray(
|
||||
defaultIntegrationInstance,
|
||||
userIntegrations,
|
||||
forcedOptions,
|
||||
) {
|
||||
const userInstance = userIntegrations.find(integration => integration.name === defaultIntegrationInstance.name);
|
||||
|
||||
if (userInstance) {
|
||||
for (const [keyPath, value] of Object.entries(forcedOptions)) {
|
||||
setNestedKey(userInstance, keyPath, value);
|
||||
}
|
||||
|
||||
return userIntegrations;
|
||||
}
|
||||
|
||||
return [...userIntegrations, defaultIntegrationInstance];
|
||||
}
|
||||
|
||||
function addOrUpdateIntegrationInFunction(
|
||||
defaultIntegrationInstance,
|
||||
userIntegrationsFunc,
|
||||
forcedOptions,
|
||||
) {
|
||||
const wrapper = defaultIntegrations => {
|
||||
const userFinalIntegrations = userIntegrationsFunc(defaultIntegrations);
|
||||
|
||||
// There are instances where we want the user to be able to prevent an integration from appearing at all, which they
|
||||
// would do by providing a function which filters out the integration in question. If that's happened in one of
|
||||
// those cases, don't add our default back in.
|
||||
if (defaultIntegrationInstance.allowExclusionByUser) {
|
||||
const userFinalInstance = userFinalIntegrations.find(
|
||||
integration => integration.name === defaultIntegrationInstance.name,
|
||||
);
|
||||
if (!userFinalInstance) {
|
||||
return userFinalIntegrations;
|
||||
}
|
||||
}
|
||||
|
||||
return addOrUpdateIntegrationInArray(defaultIntegrationInstance, userFinalIntegrations, forcedOptions);
|
||||
};
|
||||
|
||||
return wrapper;
|
||||
}
|
||||
|
||||
export { addOrUpdateIntegration };
|
||||
//# sourceMappingURL=userIntegrations.js.map
|
||||
Reference in New Issue
Block a user