mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
78f4684b2a
* MetaMetrics: add EVENT.CATEGORIES const * MetaMetrics: add EVENT.CATEGORIES.INPAGE_PROVIDER * MetaMetrics: add EVENT.CATEGORIES.AUTH * MetaMetrics: add EVENT.CATEGORIES.ACCOUNTS pt. 1 * MetaMetrics: add EVENT.CATEGORIES.ACCOUNTS pt. 2 confirm we want to use 'Accounts' instead of 'Account' * MetaMetrics: add EVENT.CATEGORIES.MESSAGES * MetaMetrics: add EVENT.CATEGORIES.RETENTION const * MetaMetrics: add EVENT.CATEGORIES.SETTINGS * MetaMask: add missing EVENT.CATEGORIES.SNAPS * MetaMetrics: add EVENT.CATEGORIES.WALLET const * MetaMetrics: add EVENT.CATEGORIES.ONBOARDING const * MetaMetrics: add EVENT.CATEGORIES.ONBOARDING & EVENT.CATEGORIES.TRANSACTIONS consts * MetaMetrics: use EVENT.CATEGORIES * ducks/swaps: revert slice name * MetaMetrics: add missing EVENT.CATEGORIES.NETWORK
87 lines
3.0 KiB
JavaScript
87 lines
3.0 KiB
JavaScript
import { EVENT, EVENT_NAMES } from '../../../shared/constants/metametrics';
|
|
import { SECOND } from '../../../shared/constants/time';
|
|
|
|
const USER_PROMPTED_EVENT_NAME_MAP = {
|
|
eth_signTypedData_v4: EVENT_NAMES.SIGNATURE_REQUESTED,
|
|
eth_signTypedData_v3: EVENT_NAMES.SIGNATURE_REQUESTED,
|
|
eth_signTypedData: EVENT_NAMES.SIGNATURE_REQUESTED,
|
|
eth_personal_sign: EVENT_NAMES.SIGNATURE_REQUESTED,
|
|
eth_sign: EVENT_NAMES.SIGNATURE_REQUESTED,
|
|
eth_getEncryptionPublicKey: EVENT_NAMES.ENCRYPTION_PUBLIC_KEY_REQUESTED,
|
|
eth_decrypt: EVENT_NAMES.DECRYPTION_REQUESTED,
|
|
wallet_requestPermissions: EVENT_NAMES.PERMISSIONS_REQUESTED,
|
|
eth_requestAccounts: EVENT_NAMES.PERMISSIONS_REQUESTED,
|
|
};
|
|
|
|
const samplingTimeouts = {};
|
|
|
|
/**
|
|
* Returns a middleware that tracks inpage_provider usage using sampling for
|
|
* each type of event except those that require user interaction, such as
|
|
* signature requests
|
|
*
|
|
* @param {object} opts - options for the rpc method tracking middleware
|
|
* @param {Function} opts.trackEvent - trackEvent method from MetaMetricsController
|
|
* @param {Function} opts.getMetricsState - get the state of MetaMetricsController
|
|
* @returns {Function}
|
|
*/
|
|
export default function createRPCMethodTrackingMiddleware({
|
|
trackEvent,
|
|
getMetricsState,
|
|
}) {
|
|
return function rpcMethodTrackingMiddleware(
|
|
/** @type {any} */ req,
|
|
/** @type {any} */ res,
|
|
/** @type {Function} */ next,
|
|
) {
|
|
const startTime = Date.now();
|
|
const { origin } = req;
|
|
|
|
next((callback) => {
|
|
const endTime = Date.now();
|
|
if (!getMetricsState().participateInMetaMetrics) {
|
|
return callback();
|
|
}
|
|
if (USER_PROMPTED_EVENT_NAME_MAP[req.method]) {
|
|
const userRejected = res.error?.code === 4001;
|
|
trackEvent({
|
|
event: USER_PROMPTED_EVENT_NAME_MAP[req.method],
|
|
category: EVENT.CATEGORIES.INPAGE_PROVIDER,
|
|
referrer: {
|
|
url: origin,
|
|
},
|
|
properties: {
|
|
method: req.method,
|
|
status: userRejected ? 'rejected' : 'approved',
|
|
error_code: res.error?.code,
|
|
error_message: res.error?.message,
|
|
has_result: typeof res.result !== 'undefined',
|
|
duration: endTime - startTime,
|
|
},
|
|
});
|
|
} else if (typeof samplingTimeouts[req.method] === 'undefined') {
|
|
trackEvent({
|
|
event: 'Provider Method Called',
|
|
category: EVENT.CATEGORIES.INPAGE_PROVIDER,
|
|
referrer: {
|
|
url: origin,
|
|
},
|
|
properties: {
|
|
method: req.method,
|
|
error_code: res.error?.code,
|
|
error_message: res.error?.message,
|
|
has_result: typeof res.result !== 'undefined',
|
|
duration: endTime - startTime,
|
|
},
|
|
});
|
|
// Only record one call to this method every ten seconds to avoid
|
|
// overloading network requests.
|
|
samplingTimeouts[req.method] = setTimeout(() => {
|
|
delete samplingTimeouts[req.method];
|
|
}, SECOND * 10);
|
|
}
|
|
return callback();
|
|
});
|
|
};
|
|
}
|