import deepFreeze from 'deep-freeze-strict'; import React from 'react'; ///: BEGIN:ONLY_INCLUDE_IN(flask) import { getRpcCaveatOrigins } from '@metamask/snaps-controllers/dist/snaps/endowments/rpc'; import { SnapCaveatType } from '@metamask/snaps-utils'; import { isNonEmptyArray } from '@metamask/controller-utils'; ///: END:ONLY_INCLUDE_IN import classnames from 'classnames'; import { RestrictedMethods, ///: BEGIN:ONLY_INCLUDE_IN(flask) EndowmentPermissions, ///: END:ONLY_INCLUDE_IN } from '../../../shared/constants/permissions'; import Tooltip from '../../components/ui/tooltip'; import { AvatarIcon, ///: BEGIN:ONLY_INCLUDE_IN(flask) Text, Icon, ///: END:ONLY_INCLUDE_IN } from '../../components/component-library'; import { ICON_NAMES, ICON_SIZES, } from '../../components/component-library/icon/deprecated'; ///: BEGIN:ONLY_INCLUDE_IN(flask) import { Color, FONT_WEIGHT, IconColor, TextVariant, } from '../constants/design-system'; import { coinTypeToProtocolName, getSnapDerivationPathName, getSnapName, } from './util'; ///: END:ONLY_INCLUDE_IN const UNKNOWN_PERMISSION = Symbol('unknown'); ///: BEGIN:ONLY_INCLUDE_IN(flask) const RIGHT_INFO_ICON = ( ); ///: END:ONLY_INCLUDE_IN function getLeftIcon(iconName) { return ( ); } export const PERMISSION_DESCRIPTIONS = deepFreeze({ [RestrictedMethods.eth_accounts]: ({ t }) => ({ label: t('permission_ethereumAccounts'), leftIcon: getLeftIcon(ICON_NAMES.EYE), rightIcon: null, weight: 2, }), ///: BEGIN:ONLY_INCLUDE_IN(flask) [RestrictedMethods.snap_dialog]: ({ t }) => ({ label: t('permission_dialog'), description: t('permission_dialogDescription'), leftIcon: ICON_NAMES.MESSAGES, weight: 3, }), [RestrictedMethods.snap_notify]: ({ t }) => ({ label: t('permission_notifications'), description: t('permission_notificationsDescription'), leftIcon: ICON_NAMES.NOTIFICATION, weight: 3, }), [RestrictedMethods.snap_getBip32PublicKey]: ({ t, permissionValue, targetSubjectMetadata, }) => permissionValue.caveats[0].value.map(({ path, curve }, i) => { const baseDescription = { leftIcon: ICON_NAMES.SECURITY_SEARCH, weight: 1, id: `public-key-access-bip32-${path .join('-') ?.replace(/'/gu, 'h')}-${curve}-${i}`, message: t('snapInstallWarningPublicKeyAccess', [ {getSnapName(targetSubjectMetadata?.origin)} , {getSnapDerivationPathName(path, curve) ?? `${path.join('/')} (${curve})`} , ]), }; const friendlyName = getSnapDerivationPathName(path, curve); if (friendlyName) { return { ...baseDescription, label: t('permission_viewNamedBip32PublicKeys', [ {friendlyName} , path.join('/'), ]), description: t('permission_viewBip32PublicKeysDescription', [ {friendlyName} , path.join('/'), ]), }; } return { ...baseDescription, label: t('permission_viewBip32PublicKeys', [ {path.join('/')} , curve, ]), description: t('permission_viewBip32PublicKeysDescription', [ {path.join('/')} , path.join('/'), ]), }; }), [RestrictedMethods.snap_getBip32Entropy]: ({ t, permissionValue, targetSubjectMetadata, }) => permissionValue.caveats[0].value.map(({ path, curve }, i) => { const baseDescription = { leftIcon: ICON_NAMES.KEY, weight: 1, id: `key-access-bip32-${path .join('-') ?.replace(/'/gu, 'h')}-${curve}-${i}`, message: t('snapInstallWarningKeyAccess', [ {getSnapName(targetSubjectMetadata?.origin)} , {getSnapDerivationPathName(path, curve) ?? `${path.join('/')} (${curve})`} , ]), }; const friendlyName = getSnapDerivationPathName(path, curve); if (friendlyName) { return { ...baseDescription, label: t('permission_manageNamedBip32Keys', [ {friendlyName} , path.join('/'), ]), description: t('permission_manageBip32KeysDescription', [ {friendlyName} , curve, ]), }; } return { ...baseDescription, label: t('permission_manageBip32Keys', [ {path.join('/')} , curve, ]), description: t('permission_manageBip32KeysDescription', [ {path.join('/')} , curve, ]), }; }), [RestrictedMethods.snap_getBip44Entropy]: ({ t, permissionValue, targetSubjectMetadata, }) => permissionValue.caveats[0].value.map(({ coinType }, i) => ({ label: t('permission_manageBip44Keys', [ {coinTypeToProtocolName(coinType) || t('unrecognizedProtocol', [coinType])} , ]), description: t('permission_manageBip44KeysDescription', [ {coinTypeToProtocolName(coinType) || t('unrecognizedProtocol', [coinType])} , ]), leftIcon: ICON_NAMES.KEY, weight: 1, id: `key-access-bip44-${coinType}-${i}`, message: t('snapInstallWarningKeyAccess', [ {getSnapName(targetSubjectMetadata?.origin)} , {coinTypeToProtocolName(coinType) || t('unrecognizedProtocol', [coinType])} , ]), })), [RestrictedMethods.snap_getEntropy]: ({ t }) => ({ label: t('permission_getEntropy'), description: t('permission_getEntropyDescription'), leftIcon: ICON_NAMES.SECURITY_KEY, weight: 3, }), [RestrictedMethods.snap_manageState]: ({ t }) => ({ label: t('permission_manageState'), description: t('permission_manageStateDescription'), leftIcon: ICON_NAMES.ADD_SQUARE, weight: 3, }), [RestrictedMethods.wallet_snap]: ({ t, permissionValue }) => { const snaps = permissionValue.caveats[0].value; const baseDescription = { leftIcon: getLeftIcon(ICON_NAMES.FLASH), rightIcon: RIGHT_INFO_ICON, }; return Object.keys(snaps).map((snapId) => { const friendlyName = getSnapName(snapId); if (friendlyName) { return { ...baseDescription, label: t('permission_accessNamedSnap', [ {friendlyName} , ]), description: t('permission_accessSnapDescription', [friendlyName]), }; } return { ...baseDescription, label: t('permission_accessSnap', [snapId]), description: t('permission_accessSnapDescription', [snapId]), }; }); }, [EndowmentPermissions['endowment:network-access']]: ({ t }) => ({ label: t('permission_accessNetwork'), description: t('permission_accessNetworkDescription'), leftIcon: ICON_NAMES.GLOBAL, weight: 2, }), [EndowmentPermissions['endowment:webassembly']]: ({ t }) => ({ label: t('permission_webAssembly'), description: t('permission_webAssemblyDescription'), leftIcon: 'fas fa-microchip', rightIcon: null, weight: 2, }), [EndowmentPermissions['endowment:long-running']]: ({ t }) => ({ label: t('permission_longRunning'), description: t('permission_longRunningDescription'), leftIcon: ICON_NAMES.LINK, weight: 3, }), [EndowmentPermissions['endowment:transaction-insight']]: ({ t, permissionValue, }) => { const baseDescription = { leftIcon: ICON_NAMES.SPEEDOMETER, weight: 3, }; const result = [ { ...baseDescription, label: t('permission_transactionInsight'), description: t('permission_transactionInsightDescription'), }, ]; if ( isNonEmptyArray(permissionValue.caveats) && permissionValue.caveats[0].type === SnapCaveatType.TransactionOrigin && permissionValue.caveats[0].value ) { result.push({ ...baseDescription, label: t('permission_transactionInsightOrigin'), description: t('permission_transactionInsightOriginDescription'), leftIcon: ICON_NAMES.EXPLORE, }); } return result; }, [EndowmentPermissions['endowment:cronjob']]: ({ t }) => ({ label: t('permission_cronjob'), description: t('permission_cronjobDescription'), leftIcon: ICON_NAMES.CLOCK, weight: 2, }), [EndowmentPermissions['endowment:ethereum-provider']]: ({ t, targetSubjectMetadata, }) => ({ label: t('permission_ethereumProvider'), description: t('permission_ethereumProviderDescription'), leftIcon: ICON_NAMES.ETHEREUM, weight: 1, id: 'ethereum-provider-access', message: t('ethereumProviderAccess', [targetSubjectMetadata?.origin]), }), [EndowmentPermissions['endowment:rpc']]: ({ t, permissionValue }) => { const baseDescription = { leftIcon: ICON_NAMES.HIERARCHY, weight: 2, }; const { snaps, dapps } = getRpcCaveatOrigins(permissionValue); const results = []; if (snaps) { results.push({ ...baseDescription, label: t('permission_rpc', [t('otherSnaps')]), description: t('permission_rpcDescription', [t('otherSnaps')]), }); } if (dapps) { results.push({ ...baseDescription, label: t('permission_rpc', [t('websites')]), description: t('permission_rpcDescription', [t('websites')]), }); } return results; }, ///: END:ONLY_INCLUDE_IN [UNKNOWN_PERMISSION]: ({ t, permissionName }) => ({ label: t('permission_unknown', [permissionName ?? 'undefined']), leftIcon: getLeftIcon(ICON_NAMES.QUESTION), rightIcon: null, weight: 4, }), }); /** * @typedef {object} PermissionLabelObject * @property {string} label - The text label. * @property {string} [description] - An optional description, shown when the * `rightIcon` is hovered. * @property {string} leftIcon - The left icon. * @property {string} rightIcon - The right icon. * @property {number} weight - The weight of the permission. * @property {string} permissionName - The name of the permission. * @property {string} permissionValue - The raw value of the permission. */ /** * @typedef {object} PermissionDescriptionParamsObject * @property {Function} t - The translation function. * @property {string} permissionName - The name of the permission. * @property {object} permissionValue - The permission object. * @property {object} targetSubjectMetadata - Subject metadata. */ /** * @param {PermissionDescriptionParamsObject} params - The permission description params object. * @param {Function} params.t - The translation function. * @param {string} params.permissionName - The name of the permission to request * @param {object} params.permissionValue - The value of the permission to request * @returns {PermissionLabelObject[]} */ export const getPermissionDescription = ({ t, permissionName, permissionValue, targetSubjectMetadata, }) => { let value = PERMISSION_DESCRIPTIONS[UNKNOWN_PERMISSION]; if (Object.hasOwnProperty.call(PERMISSION_DESCRIPTIONS, permissionName)) { value = PERMISSION_DESCRIPTIONS[permissionName]; } const result = value({ t, permissionName, permissionValue, targetSubjectMetadata, }); if (!Array.isArray(result)) { return [{ ...result, permissionName, permissionValue }]; } return result.map((item) => ({ ...item, permissionName, permissionValue, })); }; /** * Get the weighted permissions from a permissions object. The weight is used to * sort the permissions in the UI. * * @param {Function} t - The translation function * @param {object} permissions - The permissions object. * @param {object} targetSubjectMetadata - The subject metadata. * @returns {PermissionLabelObject[]} */ export function getWeightedPermissions(t, permissions, targetSubjectMetadata) { return Object.entries(permissions) .reduce( (target, [permissionName, permissionValue]) => target.concat( getPermissionDescription({ t, permissionName, permissionValue, targetSubjectMetadata, }), ), [], ) .sort((left, right) => left.weight - right.weight); } /** * Get the right icon for a permission. If a description is provided, the icon * will be wrapped in a tooltip. Otherwise, the icon will be rendered as-is. If * there's no right icon, this function will return null. * * If the weight is 1, the icon will be rendered with a warning color. * * @param {PermissionLabelObject} permission - The permission object. * @param {JSX.Element | string} permission.rightIcon - The right icon. * @param {string} permission.description - The description. * @param {number} permission.weight - The weight. * @returns {JSX.Element | null} The right icon, or null if there's no * right icon. */ export function getRightIcon({ rightIcon, description, weight }) { if (rightIcon && description) { return ( {description}} position="bottom" > {typeof rightIcon === 'string' ? ( ) : ( rightIcon )} ); } if (rightIcon) { if (typeof rightIcon === 'string') { return ( ); } return rightIcon; } return null; }