File size: 3,586 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
import page from '@automattic/calypso-router';
import { useTranslate } from 'i18n-calypso';
import { useMemo } from 'react';
import { HostingProvider } from 'calypso/data/site-profiler/types';
import { useUrlSecurityMetricsQuery } from 'calypso/data/site-profiler/use-url-security-metrics-query';
import { MetricsInsight } from 'calypso/site-profiler/components/metrics-insight';
import { InsightContent } from 'calypso/site-profiler/components/metrics-insight/insight-content';
import { InsightHeader } from 'calypso/site-profiler/components/metrics-insight/insight-header';
import { MetricsSection } from 'calypso/site-profiler/components/metrics-section';
import { getTitleTranslateOptions } from 'calypso/site-profiler/utils/get-title-translate-options';
interface SecuritySectionProps {
url?: string;
hash?: string;
hostingProvider?: HostingProvider;
securityMetricsRef: React.RefObject< HTMLObjectElement >;
setIsGetReportFormOpen?: ( isOpen: boolean ) => void;
}
export const SecuritySection: React.FC< SecuritySectionProps > = ( props ) => {
const translate = useTranslate();
const { url, hash, hostingProvider, securityMetricsRef, setIsGetReportFormOpen } = props;
const { data }: { data: any } = useUrlSecurityMetricsQuery( url, hash );
const { truncated, fail: securityData = {} } = data?.report?.audits ?? {};
const overallVulnerabilities = data?.report?.ovc ?? 0;
const { errors = {} } = data ?? {};
const noWordPressFound = Object.keys( errors ).find( ( error ) => error === 'no_wordpress' );
const isWPcom = hostingProvider?.slug?.toLowerCase() === 'automattic';
const isSecurityGood = overallVulnerabilities === 0;
const title = useMemo( () => {
if ( ! isSecurityGood && ! isWPcom ) {
return translate(
'Security vulnerabilities are {{poor}}exposing your site to risks{{/poor}}. Migrate to WordPress.com for robust security measures.',
getTitleTranslateOptions()
);
}
if ( isSecurityGood && ! isWPcom ) {
return translate(
'Your site is well-secured, but enhancing it further will {{good}}protect your data more effectively{{/good}}. Continue improving security for optimal protection.',
getTitleTranslateOptions()
);
}
if ( isSecurityGood && isWPcom ) {
return translate(
'Your site is well-secured, effectively {{good}}protecting against risks{{/good}} and maintaining its integrity. Continue to enhance security measures for optimal protection.',
getTitleTranslateOptions()
);
}
return translate(
'Your site has some {{poor}}security vulnerabilities{{/poor}} that could expose it to risks. Strengthen your site further with our advanced protection.',
getTitleTranslateOptions()
);
}, [ isSecurityGood, isWPcom, translate ] );
if ( noWordPressFound ) {
return;
}
return (
<MetricsSection
name={ translate( 'Security' ) }
title={ title }
subtitle={ ! isWPcom ? translate( 'Migrate for Better Security' ) : null }
subtitleOnClick={ () => page( `/setup/site-migration?ref=site-profiler&from=${ url }` ) }
ref={ securityMetricsRef }
>
{ Object.values( securityData ).map( ( metric: any ) => (
<MetricsInsight
key={ `insight-${ metric.id }` }
insight={ {
header: <InsightHeader data={ metric } />,
description: <InsightContent data={ metric } />,
} }
/>
) ) }
{ truncated &&
Array( 10 )
.fill( {} )
.map( ( _, index ) => (
<MetricsInsight
key={ `locked-${ index }` }
locked
onClick={ () => setIsGetReportFormOpen?.( true ) }
/>
) ) }
</MetricsSection>
);
};
|