123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- import {RouteComponentProps} from 'react-router';
- import styled from '@emotion/styled';
- import Button from 'sentry/components/button';
- import {Panel, PanelBody, PanelHeader, PanelItem} from 'sentry/components/panels';
- import {t, tct} from 'sentry/locale';
- import {ProjectKey} from 'sentry/types';
- import recreateRoute from 'sentry/utils/recreateRoute';
- import routeTitleGen from 'sentry/utils/routeTitle';
- import AsyncView from 'sentry/views/asyncView';
- import SettingsPageHeader from 'sentry/views/settings/components/settingsPageHeader';
- import TextBlock from 'sentry/views/settings/components/text/textBlock';
- import ReportUri from 'sentry/views/settings/projectSecurityHeaders/reportUri';
- type Props = RouteComponentProps<{orgId: string; projectId: string}, {}>;
- type State = {
- keyList: null | ProjectKey[];
- } & AsyncView['state'];
- export default class ProjectSecurityHeaders extends AsyncView<Props, State> {
- getEndpoints(): ReturnType<AsyncView['getEndpoints']> {
- const {orgId, projectId} = this.props.params;
- return [['keyList', `/projects/${orgId}/${projectId}/keys/`]];
- }
- getTitle() {
- const {projectId} = this.props.params;
- return routeTitleGen(t('Security Headers'), projectId, false);
- }
- getReports() {
- return [
- {
- name: 'Content Security Policy (CSP)',
- url: recreateRoute('csp/', this.props),
- },
- {
- name: 'Certificate Transparency (Expect-CT)',
- url: recreateRoute('expect-ct/', this.props),
- },
- {
- name: 'HTTP Public Key Pinning (HPKP)',
- url: recreateRoute('hpkp/', this.props),
- },
- ];
- }
- renderBody() {
- const {params} = this.props;
- const {keyList} = this.state;
- if (keyList === null) {
- return null;
- }
- return (
- <div>
- <SettingsPageHeader title={t('Security Header Reports')} />
- <ReportUri keyList={keyList} projectId={params.projectId} orgId={params.orgId} />
- <Panel>
- <PanelHeader>{t('Additional Configuration')}</PanelHeader>
- <PanelBody withPadding>
- <TextBlock style={{marginBottom: 20}}>
- {tct(
- 'In addition to the [key_param] parameter, you may also pass the following within the querystring for the report URI:',
- {
- key_param: <code>sentry_key</code>,
- }
- )}
- </TextBlock>
- <table className="table" style={{marginBottom: 0}}>
- <tbody>
- <tr>
- <th style={{padding: '8px 5px'}}>sentry_environment</th>
- <td style={{padding: '8px 5px'}}>
- {t('The environment name (e.g. production)')}.
- </td>
- </tr>
- <tr>
- <th style={{padding: '8px 5px'}}>sentry_release</th>
- <td style={{padding: '8px 5px'}}>
- {t('The version of the application.')}
- </td>
- </tr>
- </tbody>
- </table>
- </PanelBody>
- </Panel>
- <Panel>
- <PanelHeader>{t('Supported Formats')}</PanelHeader>
- <PanelBody>
- {this.getReports().map(({name, url}) => (
- <ReportItem key={url}>
- <HeaderName>{name}</HeaderName>
- <Button to={url} priority="primary">
- {t('Instructions')}
- </Button>
- </ReportItem>
- ))}
- </PanelBody>
- </Panel>
- </div>
- );
- }
- }
- const ReportItem = styled(PanelItem)`
- align-items: center;
- justify-content: space-between;
- `;
- const HeaderName = styled('span')`
- font-size: 1.2em;
- `;
|