123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264 |
- import {addErrorMessage, addSuccessMessage} from 'sentry/actionCreators/indicator';
- import {hasEveryAccess} from 'sentry/components/acl/access';
- import {Alert} from 'sentry/components/alert';
- import AutoSelectText from 'sentry/components/autoSelectText';
- import {Button} from 'sentry/components/button';
- import Confirm from 'sentry/components/confirm';
- import FieldGroup from 'sentry/components/forms/fieldGroup';
- import ExternalLink from 'sentry/components/links/externalLink';
- import LoadingError from 'sentry/components/loadingError';
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import Panel from 'sentry/components/panels/panel';
- import PanelBody from 'sentry/components/panels/panelBody';
- import PanelHeader from 'sentry/components/panels/panelHeader';
- import PluginList from 'sentry/components/pluginList';
- import SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
- import TextCopyInput from 'sentry/components/textCopyInput';
- import {t, tct} from 'sentry/locale';
- import type {Plugin} from 'sentry/types/integrations';
- import type {Organization} from 'sentry/types/organization';
- import type {Project} from 'sentry/types/project';
- import getDynamicText from 'sentry/utils/getDynamicText';
- import {
- type ApiQueryKey,
- setApiQueryData,
- useApiQuery,
- useQueryClient,
- } from 'sentry/utils/queryClient';
- import useApi from 'sentry/utils/useApi';
- import {useParams} from 'sentry/utils/useParams';
- import withPlugins from 'sentry/utils/withPlugins';
- import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader';
- import TextBlock from 'sentry/views/settings/components/text/textBlock';
- type Props = {
- organization: Organization;
- plugins: {loading: boolean; plugins: Plugin[]};
- project: Project;
- };
- type TokenResponse = {
- token: string;
- webhookUrl: string;
- };
- const TOKEN_PLACEHOLDER = 'YOUR_TOKEN';
- const WEBHOOK_PLACEHOLDER = 'YOUR_WEBHOOK_URL';
- const placeholderData = {
- token: TOKEN_PLACEHOLDER,
- webhookUrl: WEBHOOK_PLACEHOLDER,
- };
- function getReleaseTokenQueryKey(
- organization: Organization,
- projectId: string
- ): ApiQueryKey {
- return [`/projects/${organization.slug}/${projectId}/releases/token/`];
- }
- function ProjectReleaseTracking({organization, project, plugins}: Props) {
- const api = useApi({persistInFlight: true});
- const {projectId} = useParams<{projectId: string}>();
- const queryClient = useQueryClient();
- const {
- data: releaseTokenData = placeholderData,
- isFetching,
- isError,
- error,
- } = useApiQuery<TokenResponse>(getReleaseTokenQueryKey(organization, projectId), {
- staleTime: 0,
- retry: false,
- });
- const handleRegenerateToken = () => {
- api.request(`/projects/${organization.slug}/${projectId}/releases/token/`, {
- method: 'POST',
- data: {project: projectId},
- success: data => {
- setApiQueryData<TokenResponse>(
- queryClient,
- getReleaseTokenQueryKey(organization, projectId),
- data
- );
- addSuccessMessage(
- t(
- 'Your deploy token has been regenerated. You will need to update any existing deploy hooks.'
- )
- );
- },
- error: () => {
- addErrorMessage(t('Unable to regenerate deploy token, please try again'));
- },
- });
- };
- function getReleaseWebhookIntructions() {
- return (
- 'curl ' +
- releaseTokenData?.webhookUrl +
- ' \\' +
- '\n ' +
- '-X POST \\' +
- '\n ' +
- "-H 'Content-Type: application/json' \\" +
- '\n ' +
- '-d \'{"version": "abcdefg"}\''
- );
- }
- if (isError && error?.status !== 403) {
- return <LoadingError />;
- }
- // Using isFetching instead of isPending to avoid showing loading indicator when 403
- if (isFetching || plugins.loading) {
- return <LoadingIndicator />;
- }
- const pluginList = plugins.plugins.filter(
- (p: Plugin) => p.type === 'release-tracking' && p.hasConfiguration
- );
- const hasWrite = hasEveryAccess(['project:write'], {organization, project});
- return (
- <div>
- <SentryDocumentTitle title={t('Releases')} projectSlug={project.slug} />
- <SettingsPageHeader title={t('Release Tracking')} />
- <TextBlock>
- {t(
- 'Configure release tracking for this project to automatically record new releases of your application.'
- )}
- </TextBlock>
- {!hasWrite && (
- <Alert type="warning">
- {t(
- 'You do not have sufficient permissions to access Release tokens, placeholders are displayed below.'
- )}
- </Alert>
- )}
- <Panel>
- <PanelHeader>{t('Client Configuration')}</PanelHeader>
- <PanelBody withPadding>
- <p>
- {tct(
- 'Start by binding the [release] attribute in your application, take a look at [link] to see how to configure this for the SDK you are using.',
- {
- link: (
- <ExternalLink href="https://docs.sentry.io/platform-redirect/?next=/configuration/releases/">
- our docs
- </ExternalLink>
- ),
- release: <code>release</code>,
- }
- )}
- </p>
- <p>
- {t(
- "This will annotate each event with the version of your application, as well as automatically create a release entity in the system the first time it's seen."
- )}
- </p>
- <p>
- {t(
- 'In addition you may configure a release hook (or use our API) to push a release and include additional metadata with it.'
- )}
- </p>
- </PanelBody>
- </Panel>
- <Panel>
- <PanelHeader>{t('Deploy Token')}</PanelHeader>
- <PanelBody>
- <FieldGroup
- label={t('Token')}
- help={t('A unique secret which is used to generate deploy hook URLs')}
- >
- <TextCopyInput>{releaseTokenData.token}</TextCopyInput>
- </FieldGroup>
- <FieldGroup
- label={t('Regenerate Token')}
- help={t(
- 'If a service becomes compromised, you should regenerate the token and re-configure any deploy hooks with the newly generated URL.'
- )}
- >
- <div>
- <Confirm
- disabled={!hasWrite}
- priority="danger"
- onConfirm={handleRegenerateToken}
- message={t(
- 'Are you sure you want to regenerate your token? Your current token will no longer be usable.'
- )}
- >
- <Button priority="danger">{t('Regenerate Token')}</Button>
- </Confirm>
- </div>
- </FieldGroup>
- </PanelBody>
- </Panel>
- <Panel>
- <PanelHeader>{t('Webhook')}</PanelHeader>
- <PanelBody withPadding>
- <p>
- {t(
- 'If you simply want to integrate with an existing system, sometimes its easiest just to use a webhook.'
- )}
- </p>
- <AutoSelectText>
- <pre>{releaseTokenData?.webhookUrl}</pre>
- </AutoSelectText>
- <p>
- {t(
- 'The release webhook accepts the same parameters as the "Create a new Release" API endpoint.'
- )}
- </p>
- {getDynamicText({
- value: (
- <AutoSelectText>
- <pre>{getReleaseWebhookIntructions()}</pre>
- </AutoSelectText>
- ),
- fixed: (
- <pre>
- {`curl __WEBHOOK_URL__ \\
- -X POST \\
- -H 'Content-Type: application/json' \\
- -d \'{"version": "abcdefg"}\'`}
- </pre>
- ),
- })}
- </PanelBody>
- </Panel>
- <PluginList organization={organization} project={project} pluginList={pluginList} />
- <Panel>
- <PanelHeader>{t('API')}</PanelHeader>
- <PanelBody withPadding>
- <p>
- {t(
- 'You can notify Sentry when you release new versions of your application via our HTTP API.'
- )}
- </p>
- <p>
- {tct('See the [link:releases documentation] for more information.', {
- link: <ExternalLink href="https://docs.sentry.io/workflow/releases/" />,
- })}
- </p>
- </PanelBody>
- </Panel>
- </div>
- );
- }
- export default withPlugins(ProjectReleaseTracking);
- // Export for tests
- export {ProjectReleaseTracking};
|