123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- import {Component} from 'react';
- import styled from '@emotion/styled';
- import {logout} from 'sentry/actionCreators/account';
- import {Client} from 'sentry/api';
- import Alert from 'sentry/components/alert';
- import Form from 'sentry/components/forms/form';
- import Hook from 'sentry/components/hook';
- import ThemeAndStyleProvider from 'sentry/components/themeAndStyleProvider';
- import U2fContainer from 'sentry/components/u2f/u2fContainer';
- import {ErrorCodes} from 'sentry/constants/superuserAccessErrors';
- import {t} from 'sentry/locale';
- import ConfigStore from 'sentry/stores/configStore';
- import space from 'sentry/styles/space';
- import {Authenticator} from 'sentry/types';
- import withApi from 'sentry/utils/withApi';
- import Button from './button';
- type OnTapProps = NonNullable<React.ComponentProps<typeof U2fContainer>['onTap']>;
- type Props = {
- api: Client;
- };
- type State = {
- authenticators: Array<Authenticator>;
- error: boolean;
- errorType: string;
- showAccessForms: boolean;
- superuserAccessCategory: string;
- superuserReason: string;
- };
- class SuperuserAccessForm extends Component<Props, State> {
- state: State = {
- authenticators: [],
- error: false,
- errorType: '',
- showAccessForms: true,
- superuserAccessCategory: '',
- superuserReason: '',
- };
- componentDidMount() {
- this.getAuthenticators();
- }
- handleSubmitCOPS = () => {
- this.setState({
- superuserAccessCategory: 'cops_csm',
- superuserReason: 'COPS and CSM use',
- });
- };
- handleSubmit = async data => {
- const {api} = this.props;
- const {superuserAccessCategory, superuserReason, authenticators} = this.state;
- const disableU2FForSUForm = ConfigStore.get('disableU2FForSUForm');
- const suAccessCategory = superuserAccessCategory || data.superuserAccessCategory;
- const suReason = superuserReason || data.superuserReason;
- if (!authenticators.length && !disableU2FForSUForm) {
- this.handleError(ErrorCodes.noAuthenticator);
- return;
- }
- if (this.state.showAccessForms && !disableU2FForSUForm) {
- this.setState({
- showAccessForms: false,
- superuserAccessCategory: suAccessCategory,
- superuserReason: suReason,
- });
- } else {
- await api.requestPromise('/auth/', {method: 'PUT', data});
- this.handleSuccess();
- }
- };
- handleU2fTap = async (data: Parameters<OnTapProps>[0]) => {
- const {api} = this.props;
- try {
- data.isSuperuserModal = true;
- data.superuserAccessCategory = this.state.superuserAccessCategory;
- data.superuserReason = this.state.superuserReason;
- await api.requestPromise('/auth/', {method: 'PUT', data});
- this.handleSuccess();
- } catch (err) {
- this.setState({showAccessForms: true});
- // u2fInterface relies on this
- throw err;
- }
- };
- handleSuccess = () => {
- window.location.reload();
- };
- handleError = err => {
- let errorType = '';
- if (err.status === 403) {
- if (err.responseJSON.detail.code === 'no_u2f') {
- errorType = ErrorCodes.noAuthenticator;
- } else {
- errorType = ErrorCodes.invalidPassword;
- }
- } else if (err.status === 401) {
- errorType = ErrorCodes.invalidSSOSession;
- } else if (err.status === 400) {
- errorType = ErrorCodes.invalidAccessCategory;
- } else if (err === ErrorCodes.noAuthenticator) {
- errorType = ErrorCodes.noAuthenticator;
- } else {
- errorType = ErrorCodes.unknownError;
- }
- this.setState({
- error: true,
- errorType,
- showAccessForms: true,
- });
- };
- handleLogout = async () => {
- const {api} = this.props;
- try {
- await logout(api);
- } catch {
- // ignore errors
- }
- window.location.assign('/auth/login/');
- };
- async getAuthenticators() {
- const {api} = this.props;
- try {
- const authenticators = await api.requestPromise('/authenticators/');
- this.setState({authenticators: authenticators ?? []});
- } catch {
- // ignore errors
- }
- }
- render() {
- const {authenticators, error, errorType, showAccessForms} = this.state;
- if (errorType === ErrorCodes.invalidSSOSession) {
- this.handleLogout();
- return null;
- }
- return (
- <ThemeAndStyleProvider>
- <Form
- submitLabel={t('Continue')}
- onSubmit={this.handleSubmit}
- initialData={{isSuperuserModal: true}}
- extraButton={
- <BackWrapper>
- <Button onClick={this.handleSubmitCOPS}>{t('COPS/CSM')}</Button>
- </BackWrapper>
- }
- resetOnError
- >
- {error && (
- <StyledAlert type="error" showIcon>
- {errorType}
- </StyledAlert>
- )}
- {showAccessForms && <Hook name="component:superuser-access-category" />}
- {!showAccessForms && (
- <U2fContainer
- authenticators={authenticators}
- displayMode="sudo"
- onTap={this.handleU2fTap}
- />
- )}
- </Form>
- </ThemeAndStyleProvider>
- );
- }
- }
- const StyledAlert = styled(Alert)`
- margin-bottom: 0;
- `;
- const BackWrapper = styled('div')`
- width: 100%;
- margin-left: ${space(4)};
- `;
- export default withApi(SuperuserAccessForm);
|