123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- import {Fragment} from 'react';
- import styled from '@emotion/styled';
- import {addErrorMessage} from 'sentry/actionCreators/indicator';
- import {openModal} from 'sentry/actionCreators/modal';
- import {Alert} from 'sentry/components/alert';
- import {Button} from 'sentry/components/button';
- import Confirm from 'sentry/components/confirm';
- import Form from 'sentry/components/forms/form';
- import FormField from 'sentry/components/forms/formField';
- import JsonForm from 'sentry/components/forms/jsonForm';
- 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 SentryDocumentTitle from 'sentry/components/sentryDocumentTitle';
- import TextCopyInput from 'sentry/components/textCopyInput';
- import apiApplication from 'sentry/data/forms/apiApplication';
- import {t} from 'sentry/locale';
- import ConfigStore from 'sentry/stores/configStore';
- import type {ApiApplication} from 'sentry/types/user';
- import getDynamicText from 'sentry/utils/getDynamicText';
- import {
- type ApiQueryKey,
- useApiQuery,
- useMutation,
- useQueryClient,
- } from 'sentry/utils/queryClient';
- import useApi from 'sentry/utils/useApi';
- import {useParams} from 'sentry/utils/useParams';
- import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader';
- const PAGE_TITLE = t('Application Details');
- function getAppQueryKey(appId: string): ApiQueryKey {
- return [`/api-applications/${appId}/`];
- }
- interface RotateClientSecretResponse {
- clientSecret: string;
- }
- function ApiApplicationsDetails() {
- const api = useApi();
- const {appId} = useParams<{appId: string}>();
- const queryClient = useQueryClient();
- const urlPrefix = ConfigStore.get('urlPrefix');
- const {
- data: app,
- isPending,
- isError,
- refetch,
- } = useApiQuery<ApiApplication>(getAppQueryKey(appId), {
- staleTime: 0,
- });
- const {mutate: rotateClientSecret} = useMutation<RotateClientSecretResponse>(
- () => {
- return api.requestPromise(`/api-applications/${appId}/rotate-secret/`, {
- method: 'POST',
- });
- },
- {
- onSuccess: data => {
- openModal(({Body, Header}) => (
- <Fragment>
- <Header>{t('Your new Client Secret')}</Header>
- <Body>
- <Alert type="info" showIcon>
- {t('This will be the only time your client secret is visible!')}
- </Alert>
- <TextCopyInput aria-label={t('new-client-secret')}>
- {data.clientSecret}
- </TextCopyInput>
- </Body>
- </Fragment>
- ));
- },
- onError: () => {
- addErrorMessage(t('Error rotating secret'));
- },
- onSettled: () => {
- queryClient.invalidateQueries(getAppQueryKey(appId));
- },
- }
- );
- if (isPending) {
- return <LoadingIndicator />;
- }
- if (isError) {
- return <LoadingError onRetry={refetch} />;
- }
- return (
- <SentryDocumentTitle title={PAGE_TITLE}>
- <SettingsPageHeader title={PAGE_TITLE} />
- <Form
- apiMethod="PUT"
- apiEndpoint={`/api-applications/${appId}/`}
- saveOnBlur
- allowUndo
- initialData={app}
- onSubmitError={() => addErrorMessage('Unable to save change')}
- >
- <JsonForm forms={apiApplication} />
- <Panel>
- <PanelHeader>{t('Credentials')}</PanelHeader>
- <PanelBody>
- <FormField name="clientID" label="Client ID">
- {({value}) => (
- <TextCopyInput>
- {getDynamicText({value, fixed: 'CI_CLIENT_ID'})}
- </TextCopyInput>
- )}
- </FormField>
- <FormField
- name="clientSecret"
- label="Client Secret"
- help={t(`Your secret is only available briefly after application creation. Make
- sure to save this value!`)}
- >
- {({value}) =>
- value ? (
- <TextCopyInput>
- {getDynamicText({value, fixed: 'CI_CLIENT_SECRET'})}
- </TextCopyInput>
- ) : (
- <ClientSecret>
- <HiddenSecret>{t('hidden')}</HiddenSecret>
- <Confirm
- onConfirm={rotateClientSecret}
- message={t(
- 'Are you sure you want to rotate the client secret? The current one will not be usable anymore, and this cannot be undone.'
- )}
- >
- <Button size="xs" priority="danger">
- Rotate client secret
- </Button>
- </Confirm>
- </ClientSecret>
- )
- }
- </FormField>
- <FormField name="" label="Authorization URL">
- {() => <TextCopyInput>{`${urlPrefix}/oauth/authorize/`}</TextCopyInput>}
- </FormField>
- <FormField name="" label="Token URL">
- {() => <TextCopyInput>{`${urlPrefix}/oauth/token/`}</TextCopyInput>}
- </FormField>
- </PanelBody>
- </Panel>
- </Form>
- </SentryDocumentTitle>
- );
- }
- const HiddenSecret = styled('span')`
- width: 100px;
- font-style: italic;
- `;
- const ClientSecret = styled('div')`
- display: flex;
- justify-content: right;
- align-items: center;
- margin-right: 0;
- `;
- export default ApiApplicationsDetails;
|