mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 21:57:06 +01:00
7086494b72
* updated snap permission to wallet_snap, updated tests and added migration * updated snap packages * yarn.lock fix * fixed errors * override policy * update policy * undo override * updated localization message descriptions * updated lavamoat policy * more policy updates * update permission controller version * update policy * update fixture builder * updated code to include permission value to satisfy wallet_snap permission description call * fix import issue * update test-snaps version * added missing actions, added snap permission dedupe function * prettier fix * fix fencing * add more fencing * prettier fix * fix fencing (again) * added new action and selector and updated view snap accordingly * update test snaps website version * unfence request variable * add fencing * add optional chaining to fix type error * update migration # * remove old migration * prettier fix * fix migration test * fix fencing * added missing fencing * updated code to workaround fencing * update test-snaps site version and remove snap confirm test * update snap packages * update policies * fix merge marker issue * update test * more fixes * fix permissions * update test * fixed test * Bump test-snaps and iframe-execution-environment * remove unused snap permission from fixture builder * update policies * undo comment removal, update selector implementation * removed unnecessary function, updated migration, updated caveat action * remove optional chaining * fix type issue * more type fixes * fix migration test * remove isFlask check, make migration logic more robust * update coverage * Update LavaMoat policies * Update test/e2e/snaps/enums.js * add extra bail condition * Revert "add extra bail condition" This reverts commit b45c53dcfc6e6e35a5e283d4955d6d6ea9ca5965. * Revert "Revert "add extra bail condition"" This reverts commit cd2ded677935c9cdab0c02b6af55474c83727f60. * fix test * add SnapController entry to state object * updated permission name and caveat type with hardcoded values * add extra test for non-flask scenario * update lavamoat policies * fix locale messages * change coverage target * re-enable rpc snap test * revert locale message change * fix el message * reverted changes --------- Co-authored-by: Frederik Bolding <frederik.bolding@gmail.com>
194 lines
5.5 KiB
JavaScript
194 lines
5.5 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
import React, { Component } from 'react';
|
|
import { isEqual } from 'lodash';
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
import { isObject } from '@metamask/utils';
|
|
import {
|
|
SnapCaveatType,
|
|
WALLET_SNAP_PERMISSION_KEY,
|
|
} from '@metamask/rpc-methods';
|
|
///: END:ONLY_INCLUDE_IN
|
|
import { EVENT } from '../../../../shared/constants/metametrics';
|
|
import { PageContainerFooter } from '../../ui/page-container';
|
|
import PermissionsConnectFooter from '../permissions-connect-footer';
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
import { RestrictedMethods } from '../../../../shared/constants/permissions';
|
|
///: END:ONLY_INCLUDE_IN
|
|
import { PermissionPageContainerContent } from '.';
|
|
|
|
export default class PermissionPageContainer extends Component {
|
|
static propTypes = {
|
|
approvePermissionsRequest: PropTypes.func.isRequired,
|
|
rejectPermissionsRequest: PropTypes.func.isRequired,
|
|
selectedIdentities: PropTypes.array,
|
|
allIdentitiesSelected: PropTypes.bool,
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
currentPermissions: PropTypes.object,
|
|
///: END:ONLY_INCLUDE_IN
|
|
request: PropTypes.object,
|
|
requestMetadata: PropTypes.object,
|
|
targetSubjectMetadata: PropTypes.shape({
|
|
name: PropTypes.string,
|
|
origin: PropTypes.string.isRequired,
|
|
subjectType: PropTypes.string.isRequired,
|
|
extensionId: PropTypes.string,
|
|
iconUrl: PropTypes.string,
|
|
}),
|
|
};
|
|
|
|
static defaultProps = {
|
|
request: {},
|
|
requestMetadata: {},
|
|
selectedIdentities: [],
|
|
allIdentitiesSelected: false,
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
currentPermissions: {},
|
|
///: END:ONLY_INCLUDE_IN
|
|
};
|
|
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
trackEvent: PropTypes.func,
|
|
};
|
|
|
|
state = {
|
|
selectedPermissions: this.getRequestedMethodState(
|
|
this.getRequestedMethodNames(this.props),
|
|
),
|
|
};
|
|
|
|
componentDidUpdate() {
|
|
const newMethodNames = this.getRequestedMethodNames(this.props);
|
|
|
|
if (!isEqual(Object.keys(this.state.selectedPermissions), newMethodNames)) {
|
|
// this should be a new request, so just overwrite
|
|
this.setState({
|
|
selectedPermissions: this.getRequestedMethodState(newMethodNames),
|
|
});
|
|
}
|
|
}
|
|
|
|
getRequestedMethodState(methodNames) {
|
|
return methodNames.reduce((acc, methodName) => {
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
if (methodName === RestrictedMethods.wallet_snap) {
|
|
acc[methodName] = this.getDedupedSnapPermissions();
|
|
return acc;
|
|
}
|
|
///: END:ONLY_INCLUDE_IN
|
|
acc[methodName] = true;
|
|
return acc;
|
|
}, {});
|
|
}
|
|
|
|
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
getDedupedSnapPermissions() {
|
|
const permission =
|
|
this.props.request.permissions[WALLET_SNAP_PERMISSION_KEY];
|
|
const requestedSnaps = permission?.caveats[0].value;
|
|
const currentSnaps =
|
|
this.props.currentPermissions[WALLET_SNAP_PERMISSION_KEY]?.caveats[0]
|
|
.value;
|
|
|
|
if (!isObject(currentSnaps)) {
|
|
return permission;
|
|
}
|
|
|
|
const requestedSnapKeys = requestedSnaps ? Object.keys(requestedSnaps) : [];
|
|
const currentSnapKeys = currentSnaps ? Object.keys(currentSnaps) : [];
|
|
const dedupedCaveats = requestedSnapKeys.reduce((acc, snapId) => {
|
|
if (!currentSnapKeys.includes(snapId)) {
|
|
acc[snapId] = {};
|
|
}
|
|
return acc;
|
|
}, {});
|
|
|
|
return {
|
|
...permission,
|
|
caveats: [{ type: SnapCaveatType.SnapIds, value: dedupedCaveats }],
|
|
};
|
|
}
|
|
///: END:ONLY_INCLUDE_IN
|
|
|
|
getRequestedMethodNames(props) {
|
|
return Object.keys(props.request.permissions || {});
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.context.trackEvent({
|
|
category: EVENT.CATEGORIES.AUTH,
|
|
event: 'Tab Opened',
|
|
properties: {
|
|
action: 'Connect',
|
|
legacy_event: true,
|
|
},
|
|
});
|
|
}
|
|
|
|
onCancel = () => {
|
|
const { request, rejectPermissionsRequest } = this.props;
|
|
rejectPermissionsRequest(request.metadata.id);
|
|
};
|
|
|
|
onSubmit = () => {
|
|
const {
|
|
request: _request,
|
|
approvePermissionsRequest,
|
|
rejectPermissionsRequest,
|
|
selectedIdentities,
|
|
} = this.props;
|
|
|
|
const request = {
|
|
..._request,
|
|
permissions: { ..._request.permissions },
|
|
approvedAccounts: selectedIdentities.map(
|
|
(selectedIdentity) => selectedIdentity.address,
|
|
),
|
|
};
|
|
|
|
Object.keys(this.state.selectedPermissions).forEach((key) => {
|
|
if (!this.state.selectedPermissions[key]) {
|
|
delete request.permissions[key];
|
|
}
|
|
});
|
|
|
|
if (Object.keys(request.permissions).length > 0) {
|
|
approvePermissionsRequest(request);
|
|
} else {
|
|
rejectPermissionsRequest(request.metadata.id);
|
|
}
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
requestMetadata,
|
|
targetSubjectMetadata,
|
|
selectedIdentities,
|
|
allIdentitiesSelected,
|
|
} = this.props;
|
|
|
|
return (
|
|
<div className="page-container permission-approval-container">
|
|
<PermissionPageContainerContent
|
|
requestMetadata={requestMetadata}
|
|
subjectMetadata={targetSubjectMetadata}
|
|
selectedPermissions={this.state.selectedPermissions}
|
|
selectedIdentities={selectedIdentities}
|
|
allIdentitiesSelected={allIdentitiesSelected}
|
|
/>
|
|
<div className="permission-approval-container__footers">
|
|
<PermissionsConnectFooter />
|
|
<PageContainerFooter
|
|
cancelButtonType="default"
|
|
onCancel={() => this.onCancel()}
|
|
cancelText={this.context.t('cancel')}
|
|
onSubmit={() => this.onSubmit()}
|
|
submitText={this.context.t('connect')}
|
|
buttonSizeLarge={false}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|