123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330 |
- import {Fragment} from 'react';
- import type {RouteComponentProps} from 'react-router';
- import styled from '@emotion/styled';
- import {logout} from 'sentry/actionCreators/account';
- import {Alert} from 'sentry/components/alert';
- import {Button, LinkButton} from 'sentry/components/button';
- import ExternalLink from 'sentry/components/links/externalLink';
- import Link from 'sentry/components/links/link';
- import NarrowLayout from 'sentry/components/narrowLayout';
- import {t, tct} from 'sentry/locale';
- import ConfigStore from 'sentry/stores/configStore';
- import {space} from 'sentry/styles/space';
- import {browserHistory} from 'sentry/utils/browserHistory';
- import DeprecatedAsyncView from 'sentry/views/deprecatedAsyncView';
- import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader';
- type InviteDetails = {
- existingMember: boolean;
- hasAuthProvider: boolean;
- needs2fa: boolean;
- needsAuthentication: boolean;
- needsEmailVerification: boolean;
- orgSlug: string;
- requireSso: boolean;
- ssoProvider?: string;
- };
- type Props = RouteComponentProps<{memberId: string; token: string; orgId?: string}, {}>;
- type State = DeprecatedAsyncView['state'] & {
- acceptError: boolean | undefined;
- accepting: boolean | undefined;
- inviteDetails: InviteDetails;
- };
- class AcceptOrganizationInvite extends DeprecatedAsyncView<Props, State> {
- disableErrorReport = false;
- get orgSlug(): string | null {
- const {params} = this.props;
- if (params.orgId) {
- return params.orgId;
- }
- const customerDomain = ConfigStore.get('customerDomain');
- if (customerDomain?.subdomain) {
- return customerDomain.subdomain;
- }
- return null;
- }
- getEndpoints(): ReturnType<DeprecatedAsyncView['getEndpoints']> {
- const {memberId, token} = this.props.params;
- if (this.orgSlug) {
- return [['inviteDetails', `/accept-invite/${this.orgSlug}/${memberId}/${token}/`]];
- }
- return [['inviteDetails', `/accept-invite/${memberId}/${token}/`]];
- }
- getTitle() {
- return t('Accept Organization Invite');
- }
- handleLogout = async (e: React.MouseEvent) => {
- e.preventDefault();
- await logout(this.api);
- window.location.replace('/auth/login/');
- };
- handleAcceptInvite = async () => {
- const {memberId, token} = this.props.params;
- this.setState({accepting: true});
- try {
- if (this.orgSlug) {
- await this.api.requestPromise(
- `/accept-invite/${this.orgSlug}/${memberId}/${token}/`,
- {
- method: 'POST',
- }
- );
- } else {
- await this.api.requestPromise(`/accept-invite/${memberId}/${token}/`, {
- method: 'POST',
- });
- }
- browserHistory.replace(`/${this.state.inviteDetails.orgSlug}/`);
- } catch {
- this.setState({acceptError: true});
- }
- this.setState({accepting: false});
- };
- get existingMemberAlert() {
- const user = ConfigStore.get('user');
- return (
- <Alert type="warning" data-test-id="existing-member">
- {tct(
- 'Your account ([email]) is already a member of this organization. [switchLink:Switch accounts]?',
- {
- email: user.email,
- switchLink: (
- <Link
- to=""
- data-test-id="existing-member-link"
- onClick={this.handleLogout}
- />
- ),
- }
- )}
- </Alert>
- );
- }
- get authenticationActions() {
- const {inviteDetails} = this.state;
- return (
- <Fragment>
- {!inviteDetails.requireSso && (
- <p data-test-id="action-info-general">
- {t(
- `To continue, you must either create a new account, or login to an
- existing Sentry account.`
- )}
- </p>
- )}
- {inviteDetails.hasAuthProvider && (
- <p data-test-id="action-info-sso">
- {inviteDetails.requireSso
- ? tct(
- `Note that [orgSlug] has required Single Sign-On (SSO) using
- [authProvider]. You may create an account by authenticating with
- the organization's SSO provider.`,
- {
- orgSlug: <strong>{inviteDetails.orgSlug}</strong>,
- authProvider: inviteDetails.ssoProvider,
- }
- )
- : tct(
- `Note that [orgSlug] has enabled Single Sign-On (SSO) using
- [authProvider]. You may create an account by authenticating with
- the organization's SSO provider.`,
- {
- orgSlug: <strong>{inviteDetails.orgSlug}</strong>,
- authProvider: inviteDetails.ssoProvider,
- }
- )}
- </p>
- )}
- <Actions>
- <ActionsLeft>
- {inviteDetails.hasAuthProvider && (
- <LinkButton
- data-test-id="sso-login"
- priority="primary"
- href={`/auth/login/${inviteDetails.orgSlug}/`}
- >
- {t('Join with %s', inviteDetails.ssoProvider)}
- </LinkButton>
- )}
- {!inviteDetails.requireSso && (
- <LinkButton
- data-test-id="create-account"
- priority="primary"
- href="/auth/register/"
- >
- {t('Create a new account')}
- </LinkButton>
- )}
- </ActionsLeft>
- {!inviteDetails.requireSso && (
- <ExternalLink
- href="/auth/login/"
- openInNewTab={false}
- data-test-id="link-with-existing"
- >
- {t('Login using an existing account')}
- </ExternalLink>
- )}
- </Actions>
- </Fragment>
- );
- }
- get warning2fa() {
- const {inviteDetails} = this.state;
- return (
- <Fragment>
- <p data-test-id="2fa-warning">
- {tct(
- 'To continue, [orgSlug] requires all members to configure two-factor authentication.',
- {orgSlug: inviteDetails.orgSlug}
- )}
- </p>
- <Actions>
- <LinkButton priority="primary" to="/settings/account/security/">
- {t('Configure Two-Factor Auth')}
- </LinkButton>
- </Actions>
- </Fragment>
- );
- }
- get warningEmailVerification() {
- const {inviteDetails} = this.state;
- return (
- <Fragment>
- <p data-test-id="email-verification-warning">
- {tct(
- 'To continue, [orgSlug] requires all members to verify their email address.',
- {orgSlug: inviteDetails.orgSlug}
- )}
- </p>
- <Actions>
- <LinkButton priority="primary" to="/settings/account/emails/">
- {t('Verify Email Address')}
- </LinkButton>
- </Actions>
- </Fragment>
- );
- }
- get acceptActions() {
- const {inviteDetails, accepting} = this.state;
- return (
- <Fragment>
- {inviteDetails.hasAuthProvider && !inviteDetails.requireSso && (
- <p data-test-id="action-info-sso">
- {tct(
- `Note that [orgSlug] has enabled Single Sign-On (SSO) using
- [authProvider]. You may join the organization by authenticating with
- the organization's SSO provider or via your standard account authentication.`,
- {
- orgSlug: <strong>{inviteDetails.orgSlug}</strong>,
- authProvider: inviteDetails.ssoProvider,
- }
- )}
- </p>
- )}
- <Actions>
- <ActionsLeft>
- {inviteDetails.hasAuthProvider && !inviteDetails.requireSso && (
- <LinkButton
- data-test-id="sso-login"
- priority="primary"
- href={`/auth/login/${inviteDetails.orgSlug}/`}
- >
- {t('Join with %s', inviteDetails.ssoProvider)}
- </LinkButton>
- )}
- <Button
- data-test-id="join-organization"
- priority="primary"
- disabled={accepting}
- onClick={this.handleAcceptInvite}
- >
- {t('Join the %s organization', inviteDetails.orgSlug)}
- </Button>
- </ActionsLeft>
- </Actions>
- </Fragment>
- );
- }
- renderError() {
- return (
- <NarrowLayout>
- <Alert type="warning">
- {t('This organization invite link is no longer valid.')}
- </Alert>
- </NarrowLayout>
- );
- }
- renderBody() {
- const {inviteDetails, acceptError} = this.state;
- return (
- <NarrowLayout>
- <SettingsPageHeader title={t('Accept organization invite')} />
- {acceptError && (
- <Alert type="error">
- {t('Failed to join this organization. Please try again')}
- </Alert>
- )}
- <InviteDescription data-test-id="accept-invite">
- {tct('[orgSlug] is using Sentry to track and debug errors.', {
- orgSlug: <strong>{inviteDetails.orgSlug}</strong>,
- })}
- </InviteDescription>
- {inviteDetails.needsAuthentication
- ? this.authenticationActions
- : inviteDetails.existingMember
- ? this.existingMemberAlert
- : inviteDetails.needs2fa
- ? this.warning2fa
- : inviteDetails.needsEmailVerification
- ? this.warningEmailVerification
- : inviteDetails.requireSso
- ? this.authenticationActions
- : this.acceptActions}
- </NarrowLayout>
- );
- }
- }
- const Actions = styled('div')`
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: ${space(3)};
- `;
- const ActionsLeft = styled('span')`
- > a {
- margin-right: ${space(1)};
- }
- `;
- const InviteDescription = styled('p')`
- font-size: 1.2em;
- `;
- export default AcceptOrganizationInvite;
|