123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488 |
- import {Fragment} from 'react';
- import {RouteComponentProps} from 'react-router';
- import styled from '@emotion/styled';
- import {addErrorMessage, addSuccessMessage} from 'sentry/actionCreators/indicator';
- import {Client} from 'sentry/api';
- import Access from 'sentry/components/acl/access';
- import {Alert} from 'sentry/components/alert';
- import {Button, LinkButton} from 'sentry/components/button';
- import Confirm from 'sentry/components/confirm';
- import Form from 'sentry/components/forms/form';
- import JsonForm from 'sentry/components/forms/jsonForm';
- import List from 'sentry/components/list';
- import ListItem from 'sentry/components/list/listItem';
- import NavTabs from 'sentry/components/navTabs';
- import {IconAdd, IconArrow} from 'sentry/icons';
- import {t} from 'sentry/locale';
- import {space} from 'sentry/styles/space';
- import {
- IntegrationProvider,
- IntegrationWithConfig,
- Organization,
- PluginWithProjectList,
- } from 'sentry/types';
- import {trackIntegrationAnalytics} from 'sentry/utils/integrationUtil';
- import {singleLineRenderer} from 'sentry/utils/marked';
- import withApi from 'sentry/utils/withApi';
- import {normalizeUrl} from 'sentry/utils/withDomainRequired';
- import withOrganization from 'sentry/utils/withOrganization';
- import DeprecatedAsyncView from 'sentry/views/deprecatedAsyncView';
- import BreadcrumbTitle from 'sentry/views/settings/components/settingsBreadcrumb/breadcrumbTitle';
- import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader';
- import AddIntegration from './addIntegration';
- import IntegrationAlertRules from './integrationAlertRules';
- import IntegrationCodeMappings from './integrationCodeMappings';
- import IntegrationExternalTeamMappings from './integrationExternalTeamMappings';
- import IntegrationExternalUserMappings from './integrationExternalUserMappings';
- import IntegrationItem from './integrationItem';
- import IntegrationMainSettings from './integrationMainSettings';
- import IntegrationRepos from './integrationRepos';
- import IntegrationServerlessFunctions from './integrationServerlessFunctions';
- type RouteParams = {
- integrationId: string;
- providerKey: string;
- };
- type Props = RouteComponentProps<RouteParams, {}> & {
- api: Client;
- organization: Organization;
- };
- type Tab = 'repos' | 'codeMappings' | 'userMappings' | 'teamMappings' | 'settings';
- type State = DeprecatedAsyncView['state'] & {
- config: {providers: IntegrationProvider[]};
- integration: IntegrationWithConfig;
- plugins: PluginWithProjectList[] | null;
- tab?: Tab;
- };
- class ConfigureIntegration extends DeprecatedAsyncView<Props, State> {
- getEndpoints(): ReturnType<DeprecatedAsyncView['getEndpoints']> {
- const {organization} = this.props;
- const {integrationId} = this.props.params;
- return [
- ['config', `/organizations/${organization.slug}/config/integrations/`],
- [
- 'integration',
- `/organizations/${organization.slug}/integrations/${integrationId}/`,
- ],
- ['plugins', `/organizations/${organization.slug}/plugins/configs/`],
- ];
- }
- componentDidMount() {
- super.componentDidMount();
- const {
- location,
- router,
- organization,
- params: {providerKey},
- } = this.props;
- // This page should not be accessible by members (unless its github or gitlab)
- const allowMemberConfiguration = ['github', 'gitlab'].includes(providerKey);
- if (!allowMemberConfiguration && !organization.access.includes('org:integrations')) {
- router.push(
- normalizeUrl({
- pathname: `/settings/${organization.slug}/integrations/${providerKey}/`,
- })
- );
- }
- const value =
- (['codeMappings', 'userMappings', 'teamMappings'] as const).find(
- tab => tab === location.query.tab
- ) || 'repos';
- // eslint-disable-next-line react/no-did-mount-set-state
- this.setState({tab: value});
- }
- onRequestSuccess({stateKey, data}) {
- if (stateKey !== 'integration') {
- return;
- }
- trackIntegrationAnalytics('integrations.details_viewed', {
- integration: data.provider.key,
- integration_type: 'first_party',
- organization: this.props.organization,
- });
- }
- getTitle() {
- return this.state.integration
- ? this.state.integration.provider.name
- : 'Configure Integration';
- }
- hasStacktraceLinking(provider: IntegrationProvider) {
- // CodeOwners will only work if the provider has StackTrace Linking
- return (
- provider.features.includes('stacktrace-link') &&
- this.props.organization.features.includes('integrations-stacktrace-link')
- );
- }
- hasCodeOwners() {
- return this.props.organization.features.includes('integrations-codeowners');
- }
- onTabChange = (value: Tab) => {
- this.setState({tab: value});
- };
- get tab() {
- return this.state.tab || 'repos';
- }
- onUpdateIntegration = () => {
- this.setState(this.getDefaultState(), this.fetchData);
- };
- handleJiraMigration = async () => {
- try {
- const {
- organization,
- params: {integrationId},
- } = this.props;
- await this.api.requestPromise(
- `/organizations/${organization.slug}/integrations/${integrationId}/issues/`,
- {
- method: 'PUT',
- data: {},
- }
- );
- this.setState(
- {
- plugins: (this.state.plugins || []).filter(({id}) => id === 'jira'),
- },
- () => addSuccessMessage(t('Migration in progress.'))
- );
- } catch (error) {
- addErrorMessage(t('Something went wrong! Please try again.'));
- }
- };
- handleOpsgenieMigration = async () => {
- const {
- organization,
- params: {integrationId},
- } = this.props;
- try {
- await this.api.requestPromise(
- `/organizations/${organization.slug}/integrations/${integrationId}/migrate-opsgenie/`,
- {
- method: 'PUT',
- }
- );
- this.setState(
- {
- plugins: (this.state.plugins || []).filter(({id}) => id === 'opsgenie'),
- },
- () => addSuccessMessage(t('Migration in progress.'))
- );
- } catch (error) {
- addErrorMessage(t('Something went wrong! Please try again.'));
- }
- };
- isInstalledOpsgeniePlugin = (plugin: PluginWithProjectList) => {
- return (
- plugin.id === 'opsgenie' &&
- plugin.projectList.length >= 1 &&
- plugin.projectList.find(({enabled}) => enabled === true)
- );
- };
- getAction = (provider: IntegrationProvider | undefined) => {
- const {integration, plugins} = this.state;
- const shouldMigrateJiraPlugin =
- provider &&
- ['jira', 'jira_server'].includes(provider.key) &&
- (plugins || []).find(({id}) => id === 'jira');
- const shouldMigrateOpsgeniePlugin =
- this.props.organization.features.includes('integrations-opsgenie-migration') &&
- provider &&
- provider.key === 'opsgenie' &&
- (plugins || []).find(this.isInstalledOpsgeniePlugin);
- const action =
- provider && provider.key === 'pagerduty' ? (
- <AddIntegration
- provider={provider}
- onInstall={this.onUpdateIntegration}
- account={integration.domainName}
- organization={this.props.organization}
- >
- {onClick => (
- <Button
- priority="primary"
- size="sm"
- icon={<IconAdd size="xs" isCircled />}
- onClick={() => onClick()}
- >
- {t('Add Services')}
- </Button>
- )}
- </AddIntegration>
- ) : shouldMigrateJiraPlugin ? (
- <Access access={['org:integrations']}>
- {({hasAccess}) => (
- <Confirm
- disabled={!hasAccess}
- header="Migrate Linked Issues from Jira Plugins"
- renderMessage={() => (
- <Fragment>
- <p>
- {t(
- 'This will automatically associate all the Linked Issues of your Jira Plugins to this integration.'
- )}
- </p>
- <p>
- {t(
- 'If the Jira Plugins had the option checked to automatically create a Jira ticket for every new Sentry issue checked, you will need to create alert rules to recreate this behavior. Jira Server does not have this feature.'
- )}
- </p>
- <p>
- {t(
- 'Once the migration is complete, your Jira Plugins will be disabled.'
- )}
- </p>
- </Fragment>
- )}
- onConfirm={() => {
- this.handleJiraMigration();
- }}
- >
- <Button priority="primary" size="md" disabled={!hasAccess}>
- {t('Migrate Plugin')}
- </Button>
- </Confirm>
- )}
- </Access>
- ) : provider && provider.key === 'discord' ? (
- <LinkButton
- aria-label="Open this server in the Discord app"
- size="sm"
- // @ts-ignore - the type of integration here is weird.
- href={`discord://discord.com/channels/${integration.externalId}`}
- >
- Open in Discord
- </LinkButton>
- ) : shouldMigrateOpsgeniePlugin ? (
- <Access access={['org:integrations']}>
- {({hasAccess}) => (
- <Confirm
- disabled={!hasAccess}
- header="Migrate API Keys and Alert Rules from Opsgenie"
- renderMessage={() => (
- <Fragment>
- <p>
- {t(
- 'This will automatically associate all the API keys and Alert Rules of your Opsgenie Plugins to this integration.'
- )}
- </p>
- <p>
- {t(
- 'API keys will be automatically named after one of the projects with which they were associated.'
- )}
- </p>
- <p>
- {t(
- 'Once the migration is complete, your Opsgenie Plugins will be disabled.'
- )}
- </p>
- </Fragment>
- )}
- onConfirm={() => {
- this.handleOpsgenieMigration();
- }}
- >
- <Button priority="primary" size="md" disabled={!hasAccess}>
- {t('Migrate Plugin')}
- </Button>
- </Confirm>
- )}
- </Access>
- ) : null;
- return action;
- };
- // TODO(Steve): Refactor components into separate tabs and use more generic tab logic
- renderMainTab(provider: IntegrationProvider) {
- const {organization} = this.props;
- const {integration} = this.state;
- const instructions =
- integration.dynamicDisplayInformation?.configure_integration?.instructions;
- return (
- <Fragment>
- {integration.configOrganization.length > 0 && (
- <Form
- hideFooter
- saveOnBlur
- allowUndo
- apiMethod="POST"
- initialData={integration.configData || {}}
- apiEndpoint={`/organizations/${organization.slug}/integrations/${integration.id}/`}
- >
- <JsonForm
- fields={integration.configOrganization}
- title={
- integration.provider.aspects.configure_integration?.title ||
- t('Organization Integration Settings')
- }
- />
- </Form>
- )}
- {instructions && instructions.length > 0 && (
- <Alert type="info">
- {instructions?.length === 1 ? (
- <span
- dangerouslySetInnerHTML={{__html: singleLineRenderer(instructions[0])}}
- />
- ) : (
- <List symbol={<IconArrow size="xs" direction="right" />}>
- {instructions?.map((instruction, i) => (
- <ListItem key={i}>
- <span
- dangerouslySetInnerHTML={{__html: singleLineRenderer(instruction)}}
- />
- </ListItem>
- )) ?? []}
- </List>
- )}
- </Alert>
- )}
- {provider.features.includes('alert-rule') && <IntegrationAlertRules />}
- {provider.features.includes('commits') && (
- <IntegrationRepos {...this.props} integration={integration} />
- )}
- {provider.features.includes('serverless') && (
- <IntegrationServerlessFunctions integration={integration} />
- )}
- </Fragment>
- );
- }
- renderBody() {
- const {integration} = this.state;
- const {organization, router} = this.props;
- const provider = this.state.config.providers.find(
- p => p.key === integration.provider.key
- );
- if (!provider) {
- return null;
- }
- const title = <IntegrationItem integration={integration} />;
- const header = (
- <SettingsPageHeader noTitleStyles title={title} action={this.getAction(provider)} />
- );
- const backButton = (
- <BackButtonWrapper>
- <Button
- icon={<IconArrow direction="left" size="sm" />}
- size="sm"
- onClick={() => {
- router.push(
- normalizeUrl({
- pathname: `/settings/${organization.slug}/integrations/${provider.key}/`,
- })
- );
- }}
- >
- Back
- </Button>
- </BackButtonWrapper>
- );
- return (
- <Fragment>
- {backButton}
- {header}
- {this.renderMainContent(provider)}
- <BreadcrumbTitle
- routes={this.props.routes}
- title={t('Configure %s', integration.provider.name)}
- />
- </Fragment>
- );
- }
- // renders everything below header
- renderMainContent(provider: IntegrationProvider) {
- // if no code mappings, render the single tab
- if (!this.hasStacktraceLinking(provider)) {
- return this.renderMainTab(provider);
- }
- // otherwise render the tab view
- const tabs = [
- ['repos', t('Repositories')],
- ['codeMappings', t('Code Mappings')],
- ...(this.hasCodeOwners() ? [['userMappings', t('User Mappings')]] : []),
- ...(this.hasCodeOwners() ? [['teamMappings', t('Team Mappings')]] : []),
- ] as [id: Tab, label: string][];
- return (
- <Fragment>
- <NavTabs underlined>
- {tabs.map(tabTuple => (
- <li
- key={tabTuple[0]}
- className={this.tab === tabTuple[0] ? 'active' : ''}
- onClick={() => this.onTabChange(tabTuple[0])}
- >
- <CapitalizedLink>{tabTuple[1]}</CapitalizedLink>
- </li>
- ))}
- </NavTabs>
- {this.renderTabContent(this.tab, provider)}
- </Fragment>
- );
- }
- renderTabContent(tab: Tab, provider: IntegrationProvider) {
- const {integration} = this.state;
- const {organization} = this.props;
- switch (tab) {
- case 'codeMappings':
- return <IntegrationCodeMappings integration={integration} />;
- case 'repos':
- return this.renderMainTab(provider);
- case 'userMappings':
- return <IntegrationExternalUserMappings integration={integration} />;
- case 'teamMappings':
- return <IntegrationExternalTeamMappings integration={integration} />;
- case 'settings':
- return (
- <IntegrationMainSettings
- onUpdate={this.onUpdateIntegration}
- organization={organization}
- integration={integration}
- />
- );
- default:
- return this.renderMainTab(provider);
- }
- }
- }
- export default withOrganization(withApi(ConfigureIntegration));
- const BackButtonWrapper = styled('div')`
- margin-bottom: ${space(2)};
- width: 100%;
- `;
- const CapitalizedLink = styled('a')`
- text-transform: capitalize;
- `;
|