123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- /**
- * AccountSecurityDetails is only displayed when user is enrolled in the 2fa method.
- * It displays created + last used time of the 2fa method.
- *
- * Also displays 2fa method specific details.
- */
- import {Fragment} from 'react';
- import type {RouteComponentProps} from 'react-router';
- import styled from '@emotion/styled';
- import {addErrorMessage, addSuccessMessage} from 'sentry/actionCreators/indicator';
- import {Button} from 'sentry/components/button';
- import CircleIndicator from 'sentry/components/circleIndicator';
- import DateTime from 'sentry/components/dateTime';
- import {Tooltip} from 'sentry/components/tooltip';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import type {Authenticator, AuthenticatorDevice} from 'sentry/types';
- import DeprecatedAsyncView from 'sentry/views/deprecatedAsyncView';
- import RecoveryCodes from 'sentry/views/settings/account/accountSecurity/components/recoveryCodes';
- import RemoveConfirm from 'sentry/views/settings/account/accountSecurity/components/removeConfirm';
- import U2fEnrolledDetails from 'sentry/views/settings/account/accountSecurity/components/u2fEnrolledDetails';
- import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader';
- import TextBlock from 'sentry/views/settings/components/text/textBlock';
- const ENDPOINT = '/users/me/authenticators/';
- type AuthenticatorDateProps = {
- /**
- * Can be null or a Date object.
- * Component will have value "never" if it is null
- */
- date: string | null;
- label: string;
- };
- function AuthenticatorDate({label, date}: AuthenticatorDateProps) {
- return (
- <Fragment>
- <DateLabel>{label}</DateLabel>
- <div>{date ? <DateTime date={date} /> : t('never')}</div>
- </Fragment>
- );
- }
- type Props = {
- deleteDisabled: boolean;
- onRegenerateBackupCodes: () => void;
- } & RouteComponentProps<{authId: string}, {}>;
- type State = {
- authenticator: Authenticator | null;
- } & DeprecatedAsyncView['state'];
- class AccountSecurityDetails extends DeprecatedAsyncView<Props, State> {
- getTitle() {
- return t('Security');
- }
- getEndpoints(): ReturnType<DeprecatedAsyncView['getEndpoints']> {
- const {params} = this.props;
- const {authId} = params;
- return [['authenticator', `${ENDPOINT}${authId}/`]];
- }
- handleRemove = async (device?: AuthenticatorDevice) => {
- const {authenticator} = this.state;
- if (!authenticator || !authenticator.authId) {
- return;
- }
- // if the device is defined, it means that U2f is being removed
- // reason for adding a trailing slash is a result of the endpoint on line 109 needing it but it can't be set there as if deviceId is None, the route will end with '//'
- const deviceId = device ? `${device.key_handle}/` : '';
- const deviceName = device ? device.name : t('Authenticator');
- this.setState({loading: true});
- try {
- await this.api.requestPromise(`${ENDPOINT}${authenticator.authId}/${deviceId}`, {
- method: 'DELETE',
- });
- this.props.router.push('/settings/account/security');
- addSuccessMessage(t('%s has been removed', deviceName));
- } catch {
- // Error deleting authenticator
- this.setState({loading: false});
- addErrorMessage(t('Error removing %s', deviceName));
- }
- };
- handleRename = async (device: AuthenticatorDevice, deviceName: string) => {
- const {authenticator} = this.state;
- if (!authenticator?.authId) {
- return;
- }
- // if the device is defined, it means that U2f is being renamed
- // reason for adding a trailing slash is a result of the endpoint on line 109 needing it but it can't be set there as if deviceId is None, the route will end with '//'
- const deviceId = device ? `${device.key_handle}/` : '';
- this.setState({loading: true});
- const data = {
- name: deviceName,
- };
- try {
- await this.api.requestPromise(`${ENDPOINT}${authenticator.authId}/${deviceId}`, {
- method: 'PUT',
- data,
- });
- this.props.router.push(`/settings/account/security/mfa/${authenticator.authId}`);
- addSuccessMessage(t('Device was renamed'));
- } catch {
- this.setState({loading: false});
- addErrorMessage(t('Error renaming the device'));
- }
- };
- renderBody() {
- const {authenticator} = this.state;
- if (!authenticator) {
- return null;
- }
- const {deleteDisabled, onRegenerateBackupCodes} = this.props;
- return (
- <Fragment>
- <SettingsPageHeader
- title={
- <Fragment>
- <span>{authenticator.name}</span>
- <AuthenticatorStatus
- data-test-id={`auth-status-${
- authenticator.isEnrolled ? 'enabled' : 'disabled'
- }`}
- enabled={authenticator.isEnrolled}
- />
- </Fragment>
- }
- action={
- <AuthenticatorActions>
- {authenticator.isEnrolled && authenticator.allowRotationInPlace && (
- <Button to={`/settings/account/security/mfa/${authenticator.id}/enroll/`}>
- {t('Rotate Secret Key')}
- </Button>
- )}
- {authenticator.isEnrolled && authenticator.removeButton && (
- <Tooltip
- title={t(
- "Two-factor authentication is required for at least one organization you're a member of."
- )}
- disabled={!deleteDisabled}
- >
- <RemoveConfirm onConfirm={this.handleRemove} disabled={deleteDisabled}>
- <Button priority="danger">{authenticator.removeButton}</Button>
- </RemoveConfirm>
- </Tooltip>
- )}
- </AuthenticatorActions>
- }
- />
- <TextBlock>{authenticator.description}</TextBlock>
- <AuthenticatorDates>
- <AuthenticatorDate label={t('Created at')} date={authenticator.createdAt} />
- <AuthenticatorDate label={t('Last used')} date={authenticator.lastUsedAt} />
- </AuthenticatorDates>
- <U2fEnrolledDetails
- isEnrolled={authenticator.isEnrolled}
- id={authenticator.id}
- devices={authenticator.devices}
- onRemoveU2fDevice={this.handleRemove}
- onRenameU2fDevice={this.handleRename}
- />
- {authenticator.isEnrolled && authenticator.phone && (
- <PhoneWrapper>
- {t('Confirmation codes are sent to the following phone number')}:
- <Phone>{authenticator.phone}</Phone>
- </PhoneWrapper>
- )}
- <RecoveryCodes
- onRegenerateBackupCodes={onRegenerateBackupCodes}
- isEnrolled={authenticator.isEnrolled}
- codes={authenticator.codes}
- />
- </Fragment>
- );
- }
- }
- export default AccountSecurityDetails;
- const AuthenticatorStatus = styled(CircleIndicator)`
- margin-left: ${space(1)};
- `;
- const AuthenticatorActions = styled('div')`
- display: flex;
- justify-content: center;
- align-items: center;
- > * {
- margin-left: ${space(1)};
- }
- `;
- const AuthenticatorDates = styled('div')`
- display: grid;
- gap: ${space(2)};
- grid-template-columns: max-content auto;
- `;
- const DateLabel = styled('span')`
- font-weight: bold;
- `;
- const PhoneWrapper = styled('div')`
- margin-top: ${space(4)};
- `;
- const Phone = styled('span')`
- font-weight: bold;
- margin-left: ${space(1)};
- `;
|