File size: 12,612 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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 | import { isEnabled } from '@automattic/calypso-config';
import { Button, ProgressBar, Gridicon, Card } from '@automattic/components';
import clsx from 'clsx';
import { translate } from 'i18n-calypso';
import { Component } from 'react';
import { connect } from 'react-redux';
import JetpackReviewPrompt from 'calypso/blocks/jetpack-review-prompt';
import TimeMismatchWarning from 'calypso/blocks/time-mismatch-warning';
import DocumentHead from 'calypso/components/data/document-head';
import QueryJetpackScan from 'calypso/components/data/query-jetpack-scan';
import ScanPlaceholder from 'calypso/components/jetpack/scan-placeholder';
import ScanThreats from 'calypso/components/jetpack/scan-threats';
import SecurityIcon from 'calypso/components/jetpack/security-icon';
import { withLocalizedMoment } from 'calypso/components/localized-moment';
import Main from 'calypso/components/main';
import NavigationHeader from 'calypso/components/navigation-header';
import SidebarNavigation from 'calypso/components/sidebar-navigation';
import { withApplySiteOffset, applySiteOffsetType } from 'calypso/components/site-offset';
import isA8CForAgencies from 'calypso/lib/a8c-for-agencies/is-a8c-for-agencies';
import PageViewTracker from 'calypso/lib/analytics/page-view-tracker';
import contactSupportUrl from 'calypso/lib/jetpack/contact-support-url';
import isJetpackCloud from 'calypso/lib/jetpack/is-jetpack-cloud';
import { triggerScanRun } from 'calypso/lib/jetpack/trigger-scan-run';
import { Scan, Site } from 'calypso/my-sites/scan/types';
import { recordTracksEvent } from 'calypso/state/analytics/actions';
import { setValidFrom } from 'calypso/state/jetpack-review-prompt/actions';
import { incrementCounter } from 'calypso/state/persistent-counter/actions';
import { getCount } from 'calypso/state/persistent-counter/selectors';
import getSettingsUrl from 'calypso/state/selectors/get-settings-url';
import getSiteScanIsInitial from 'calypso/state/selectors/get-site-scan-is-initial';
import getSiteScanProgress from 'calypso/state/selectors/get-site-scan-progress';
import getSiteScanRequestStatus from 'calypso/state/selectors/get-site-scan-request-status';
import getSiteScanState from 'calypso/state/selectors/get-site-scan-state';
import isRequestingJetpackScan from 'calypso/state/selectors/is-requesting-jetpack-scan';
import getSiteUrl from 'calypso/state/sites/selectors/get-site-url';
import { IAppState } from 'calypso/state/types';
import { getSelectedSite, getSelectedSiteId } from 'calypso/state/ui/selectors';
import ScanNavigation from './navigation';
import type { TranslateResult } from 'i18n-calypso';
import type { utc } from 'moment';
import './style.scss';
interface Props {
site: Site | null;
siteId: number | null;
siteSlug: string | null;
siteUrl?: string;
scanState?: Scan;
scanProgress?: number;
isInitialScan?: boolean;
isRequestingScan?: boolean;
scanPageVisitCount?: number;
scanRequestStatus?: 'pending' | 'success' | 'failed';
timezone: string | null;
gmtOffset: number | null;
moment: {
utc: typeof utc;
};
applySiteOffset: applySiteOffsetType | null;
dispatchRecordTracksEvent: typeof recordTracksEvent;
dispatchScanRun: ( arg0: number ) => void;
dispatchIncrementCounter: ( arg0: string, arg1: boolean, arg2: boolean ) => void;
dispatchSetReviewPromptValid: ( arg0: 'restore' | 'scan', arg1: number | null ) => void;
isAdmin: boolean;
siteSettingsUrl?: string | null;
}
const SCAN_VISIT_COUNTER_NAME = 'scan-page-visit';
class ScanPage extends Component< Props > {
componentDidMount() {
const { scanState, dispatchIncrementCounter } = this.props;
if ( scanState?.state && scanState?.state !== 'unavailable' ) {
// Counting visits to the scan page for the Jetpack (Scan) Review Prompt.
// Review Prompt should appear after 3 visits (not including same day visits)
dispatchIncrementCounter( SCAN_VISIT_COUNTER_NAME, false, false );
}
}
componentDidUpdate( prevProps: Props ) {
if ( prevProps.scanPageVisitCount !== this.props.scanPageVisitCount ) {
// After 3 Scan page visits, trigger the Jetpack Review Prompt.
if ( this.props.scanPageVisitCount === 3 ) {
this.props.dispatchSetReviewPromptValid( 'scan', Date.now() );
}
}
}
renderProvisioning() {
return (
<>
<SecurityIcon />
{ this.renderHeader( translate( 'Preparing to scan' ) ) }
<p>
{ translate(
"Welcome to Jetpack Scan! We're scoping out your site, setting up to do a full scan. " +
"We'll let you know if we spot any issues that might impact a scan, " +
'then your first full scan will start.'
) }
</p>
</>
);
}
renderHeader( text: TranslateResult ) {
return <h1 className="scan__header">{ text }</h1>;
}
renderContactSupportButton() {
const { dispatchRecordTracksEvent, siteUrl, siteId, scanState } = this.props;
const scanStateType = scanState?.state;
return (
<Button
primary
target="_blank"
rel="noopener noreferrer"
href={ contactSupportUrl( siteUrl, scanStateType ) }
className="scan__button"
onClick={ () =>
dispatchRecordTracksEvent( 'calypso_jetpack_scan_error_contact', {
scan_state: scanStateType,
site_id: siteId,
} )
}
>
{ translate( 'Contact support {{externalIcon/}}', {
components: { externalIcon: <Gridicon icon="external" size={ 24 } /> },
} ) }
</Button>
);
}
renderScanOkay() {
const { scanState, siteId, moment, dispatchScanRun, applySiteOffset } = this.props;
const lastScanStartTime = scanState?.mostRecent?.timestamp;
const lastScanDuration = scanState?.mostRecent?.duration;
let lastScanFinishTime = '';
if ( lastScanStartTime && applySiteOffset ) {
lastScanFinishTime = applySiteOffset(
moment.utc( lastScanStartTime ).add( lastScanDuration, 'seconds' )
).fromNow();
}
return (
<>
<SecurityIcon />
{ this.renderHeader( translate( 'Don’t worry about a thing' ) ) }
<p>
{ translate(
/* translators: %s is a time string relative to now */
'The last Jetpack scan ran {{strong}}%s{{/strong}} and everything ' +
'looked great.' +
'{{br/}}' +
'Run a manual scan now or wait for Jetpack to scan your site later today.',
{
args: [ lastScanFinishTime ],
components: {
strong: <strong />,
br: <br />,
},
}
) }
</p>
<Button
primary
className="scan__button"
onClick={ () => siteId && dispatchScanRun( siteId ) }
>
{ translate( 'Scan now' ) }
</Button>
</>
);
}
renderScanning() {
const { scanProgress = 0, isInitialScan } = this.props;
const heading =
scanProgress === 0 ? translate( 'Preparing to scan' ) : translate( 'Scanning files' );
return (
<>
<Card>
<SecurityIcon icon="in-progress" />
{ this.renderHeader( heading ) }
{ isInitialScan && (
<p className="scan__initial-scan-message">
{ translate(
'Welcome to Jetpack Scan. We are starting your first scan now. ' +
'Scan results will be ready soon.'
) }
</p>
) }
<p className="scan__progress-bar-percent">{ scanProgress }%</p>
<ProgressBar value={ scanProgress } total={ 100 } color="#069E08" />
<p>
{ translate(
'{{strong}}Did you know{{/strong}} {{br/}}' +
'We will send you an email if security threats are found. In the meantime feel ' +
'free to continue to use your site as normal, you can check back on ' +
'progress at any time.',
{
components: {
strong: <strong />,
br: <br />,
},
}
) }
</p>
</Card>
</>
);
}
renderScanError() {
const { siteId, dispatchScanRun } = this.props;
return (
<>
<SecurityIcon icon="scan-error" />
{ this.renderHeader( translate( 'Something went wrong' ) ) }
<p>
{ translate(
"Jetpack Scan couldn't complete a scan of your site. Please check to see if your site is down " +
"– if it's not, try again. If it is, or if Jetpack Scan is still having problems, contact our support team."
) }
</p>
{ this.renderContactSupportButton() }
<Button
className="scan__button scan__retry-bottom"
onClick={ () => siteId && dispatchScanRun( siteId ) }
>
{ translate( 'Retry scan' ) }
</Button>
</>
);
}
renderScanState() {
const { site, scanState, isRequestingScan, scanRequestStatus } = this.props;
// Show the loading placeholder until we have a site to work with.
if ( ! site ) {
return <ScanPlaceholder />;
}
// Show scanning states first - provisioning or in-progress scans take priority.
if ( scanState?.state === 'provisioning' ) {
return (
<>
{ ' ' }
<Card> { this.renderProvisioning() } </Card>{ ' ' }
</>
);
}
if ( scanState?.state === 'scanning' ) {
return this.renderScanning();
}
// Show the loading placeholder if we're requesting an update, and have no data to show yet.
if ( ! scanState && isRequestingScan ) {
return <ScanPlaceholder />;
}
// We should have a scanState by now, since we're not requesting an update;
// if we don't, that's an error condition and we should display that
if ( ! scanState || scanRequestStatus === 'failed' ) {
return (
<>
{ ' ' }
<Card> { this.renderScanError() } </Card>{ ' ' }
</>
);
}
const { threats, mostRecent } = scanState;
const threatsFound = threats.length > 0;
const errorFound = !! mostRecent?.error;
// If we found threats, show them whether or not Scan encountered an error
if ( threatsFound ) {
return <ScanThreats threats={ threats } error={ errorFound } site={ site } />;
}
if ( errorFound ) {
return (
<>
{ ' ' }
<Card> { this.renderScanError() } </Card>{ ' ' }
</>
);
}
return (
<>
{ ' ' }
<Card> { this.renderScanOkay() } </Card>{ ' ' }
</>
);
}
renderJetpackReviewPrompt() {
const { scanState, isRequestingScan } = this.props;
if ( ! scanState ) {
return;
}
const { threats, mostRecent } = scanState;
const threatsFound = threats?.length;
const errorFound = !! mostRecent?.error;
// Only render JetpackReviewPrompt after this.renderScanOkay() is called.
if ( isRequestingScan || threatsFound || errorFound || scanState?.state !== 'idle' ) {
return;
}
return <JetpackReviewPrompt type="scan" align="left" />;
}
render() {
const { siteId, siteSettingsUrl } = this.props;
const isJetpackPlatform = isJetpackCloud();
let mainClass = 'scan';
if ( ! siteId ) {
return;
}
if ( isEnabled( 'jetpack/more-informative-scan' ) ) {
mainClass = 'scan-new';
}
return (
<Main
className={ clsx( mainClass, {
is_jetpackcom: isJetpackPlatform,
} ) }
>
<DocumentHead title="Scan" />
{ isJetpackPlatform && <SidebarNavigation /> }
<PageViewTracker path="/scan/:site" title="Scanner" />
<TimeMismatchWarning siteId={ siteId } settingsUrl={ siteSettingsUrl } />
{ ! ( isJetpackPlatform || isA8CForAgencies() ) && (
<NavigationHeader navigationItems={ [] } title={ translate( 'Jetpack Scan' ) } />
) }
<QueryJetpackScan siteId={ siteId } />
<ScanNavigation section="scanner" />
<div className="scan__content">{ this.renderScanState() }</div>
{ this.renderJetpackReviewPrompt() }
</Main>
);
}
}
export default connect(
( state: IAppState ) => {
const site = getSelectedSite( state ) as Site;
const siteId = getSelectedSiteId( state );
if ( ! siteId ) {
return {
site,
siteId,
};
}
const siteUrl = getSiteUrl( state, siteId ) ?? undefined;
const siteSettingsUrl = getSettingsUrl( state, siteId, 'general' );
const scanState = ( getSiteScanState( state, siteId ) as Scan ) ?? undefined;
const scanProgress = getSiteScanProgress( state, siteId ) ?? undefined;
const isRequestingScan = !! isRequestingJetpackScan( state, siteId );
const isInitialScan = getSiteScanIsInitial( state, siteId );
const scanPageVisitCount = getCount( state, SCAN_VISIT_COUNTER_NAME, false );
const scanRequestStatus = getSiteScanRequestStatus( state, siteId );
return {
site,
siteId,
siteUrl,
scanState,
scanProgress,
isInitialScan,
siteSettingsUrl,
isRequestingScan,
scanPageVisitCount,
scanRequestStatus,
};
},
{
dispatchRecordTracksEvent: recordTracksEvent,
dispatchScanRun: triggerScanRun,
dispatchIncrementCounter: incrementCounter,
dispatchSetReviewPromptValid: setValidFrom,
}
)( withLocalizedMoment( withApplySiteOffset( ScanPage ) ) );
|