Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import config from '@automattic/calypso-config';
import { Button, Card, Gridicon } from '@automattic/components';
import { ExternalLink } from '@wordpress/components';
import { usePrevious } from '@wordpress/compose';
import { useEffect } from '@wordpress/element';
import { useTranslate } from 'i18n-calypso';
import { FunctionComponent, useCallback, useState } from 'react';
import restoreSuccessImage from 'calypso/assets/images/illustrations/jetpack-restore-success.svg';
import JetpackReviewPrompt from 'calypso/blocks/jetpack-review-prompt';
import QueryJetpackCredentialsStatus from 'calypso/components/data/query-jetpack-credentials-status';
import QueryRewindBackups from 'calypso/components/data/query-rewind-backups';
import QueryRewindRestoreStatus from 'calypso/components/data/query-rewind-restore-status';
import QueryRewindState from 'calypso/components/data/query-rewind-state';
import { BackupRealtimeMessage } from 'calypso/components/jetpack/daily-backup-status/status-card/backup-realtime-message';
import { useLocalizedMoment } from 'calypso/components/localized-moment';
import { Interval, EVERY_FIVE_SECONDS } from 'calypso/lib/interval';
import { backupPath, settingsPath } from 'calypso/lib/jetpack/paths';
import { useDispatch, useSelector } from 'calypso/state';
import { rewindRestore } from 'calypso/state/activity-log/actions';
import { recordTracksEvent } from 'calypso/state/analytics/actions/record';
import {
areJetpackCredentialsInvalid,
hasJetpackCredentials,
} from 'calypso/state/jetpack/credentials/selectors';
import { setValidFrom } from 'calypso/state/jetpack-review-prompt/actions';
import { requestRewindBackups } from 'calypso/state/rewind/backups/actions';
import {
usePreflightStatusQuery,
useEnqueuePreflightCheck,
} from 'calypso/state/rewind/preflight/hooks';
import { getPreflightStatus } from 'calypso/state/rewind/preflight/selectors';
import { PreflightTestStatus } from 'calypso/state/rewind/preflight/types';
import { getInProgressBackupForSite } from 'calypso/state/rewind/selectors';
import getDoesRewindNeedCredentials from 'calypso/state/selectors/get-does-rewind-need-credentials';
import getInProgressRewindStatus from 'calypso/state/selectors/get-in-progress-rewind-status';
import getIsRestoreInProgress from 'calypso/state/selectors/get-is-restore-in-progress';
import getRestoreProgress from 'calypso/state/selectors/get-restore-progress';
import getRewindState from 'calypso/state/selectors/get-rewind-state';
import isSiteAutomatedTransfer from 'calypso/state/selectors/is-site-automated-transfer';
import { getSiteSlug } from 'calypso/state/sites/selectors';
import { backupMainPath } from '../paths';
import Error from './error';
import Loading from './loading';
import ProgressBar from './progress-bar';
import RewindConfigEditor from './rewind-config-editor';
import RewindFlowNotice, { RewindFlowNoticeLevel } from './rewind-flow-notice';
import CheckYourEmail from './rewind-flow-notice/check-your-email';
import MissingCredentials from './steps/missing-credentials';
import { defaultRewindConfig, RewindConfig } from './types';
import type { RestoreProgress } from 'calypso/state/data-layer/wpcom/activity-log/rewind/restore-status/type';
import type { RewindState } from 'calypso/state/data-layer/wpcom/sites/rewind/type';
interface Props {
backup: any;
backupDisplayDate: string;
rewindId: string;
siteId: number;
siteUrl: string;
}
const BackupRestoreFlow: FunctionComponent< Props > = ( {
backup,
backupDisplayDate,
rewindId,
siteId,
siteUrl,
} ) => {
const dispatch = useDispatch();
const translate = useTranslate();
const moment = useLocalizedMoment();
const [ rewindConfig, setRewindConfig ] = useState< RewindConfig >( defaultRewindConfig );
const refreshBackups = useCallback(
() => dispatch( requestRewindBackups( siteId ) ),
[ dispatch, siteId ]
);
const backupCurrentlyInProgress = useSelector( ( state ) =>
getInProgressBackupForSite( state, siteId )
);
const isAtomic = useSelector( ( state ) => isSiteAutomatedTransfer( state, siteId ) );
const areCredentialsInvalid = useSelector( ( state ) =>
areJetpackCredentialsInvalid( state, siteId, 'main' )
);
const [ userHasRequestedRestore, setUserHasRequestedRestore ] = useState< boolean >( false );
const [ restoreInitiated, setRestoreInitiated ] = useState( false );
const [ restoreFailed, setRestoreFailed ] = useState( false );
const [ showConfirm, setShowConfirm ] = useState( false );
const [ showFinishedScreen, setShowFinishedScreen ] = useState( false );
const rewindState = useSelector( ( state ) => getRewindState( state, siteId ) ) as RewindState;
const inProgressRewindStatus = useSelector( ( state ) =>
getInProgressRewindStatus( state, siteId, rewindId )
);
// Keep track of the previous restore status so we can detect when it transitions
// from 'queued'/'running' to 'finished' during this session (rather than being
// 'finished' from a past session).
const previousRestoreStatus = usePrevious( inProgressRewindStatus );
const { message, percent, currentEntry, status } = useSelector(
( state ) => getRestoreProgress( state, siteId ) || ( {} as RestoreProgress )
);
const requestRestore = useCallback(
() => dispatch( rewindRestore( siteId, rewindId, rewindConfig ) ),
[ dispatch, rewindConfig, rewindId, siteId ]
);
const preflightStatus = useSelector( ( state ) => getPreflightStatus( state, siteId ) );
const hasCredentials = useSelector( ( state ) => hasJetpackCredentials( state, siteId ) );
const credentialsAreValid = hasCredentials && ! areCredentialsInvalid;
const isRestoreInProgress = useSelector( ( state ) => getIsRestoreInProgress( state, siteId ) );
const needCredentials = useSelector( ( state ) => getDoesRewindNeedCredentials( state, siteId ) );
const isPreflightEnabled = config.isEnabled( 'jetpack/backup-restore-preflight-checks' );
const { refetch: refetchPreflightStatus } = usePreflightStatusQuery(
siteId,
// Only enable the preflight check if the user has requested a restore and we don't need credentials.
userHasRequestedRestore && ! needCredentials
);
const preflightCheck = useEnqueuePreflightCheck( siteId );
useEffect( () => {
const preflightPassed = isPreflightEnabled && preflightStatus === PreflightTestStatus.SUCCESS;
if ( userHasRequestedRestore && ! isRestoreInProgress && ! restoreInitiated ) {
if ( credentialsAreValid || preflightPassed ) {
setRestoreInitiated( true );
dispatch( setValidFrom( 'restore', Date.now() ) );
requestRestore();
}
}
}, [
credentialsAreValid,
dispatch,
isPreflightEnabled,
isRestoreInProgress,
preflightStatus,
requestRestore,
restoreInitiated,
userHasRequestedRestore,
] );
const onConfirm = useCallback( () => {
// Queue preflight
if ( isPreflightEnabled && ! credentialsAreValid ) {
preflightCheck.mutate(
{ siteId },
{
onSuccess: () => {
refetchPreflightStatus();
},
}
);
}
// Mark that the user has requested a restore
setUserHasRequestedRestore( true );
// Show the confirmation screen
setShowConfirm( false );
// Track the restore confirmation event.
dispatch(
recordTracksEvent( 'calypso_jetpack_backup_restore_confirm', {
has_credentials: hasCredentials,
} )
);
}, [
isPreflightEnabled,
credentialsAreValid,
dispatch,
hasCredentials,
preflightCheck,
siteId,
refetchPreflightStatus,
] );
const onRetryClick = useCallback( () => {
// Reset the restore state
setRestoreInitiated( false );
setRestoreFailed( false );
setUserHasRequestedRestore( false );
// Show the restore confirmation screen
setShowConfirm( true );
// Track the restore retry event.
dispatch(
recordTracksEvent( 'calypso_jetpack_backup_restore_failed_retry', {
has_credentials: hasCredentials,
} )
);
}, [ dispatch ] );
const onGoBack = useCallback( () => {
dispatch(
recordTracksEvent( 'calypso_jetpack_backup_restore_goback', {
has_credentials: hasCredentials,
} )
);
}, [ dispatch, hasCredentials ] );
const onAddingCredentialsClick = useCallback( () => {
dispatch(
recordTracksEvent( 'calypso_jetpack_backup_restore_adding_credentials', {
has_credentials: hasCredentials,
} )
);
}, [ dispatch, hasCredentials ] );
const onLearnAddingCredentialsClick = useCallback( () => {
dispatch(
recordTracksEvent( 'calypso_jetpack_backup_restore_learn_adding_credentials', {
has_credentials: hasCredentials,
} )
);
}, [ dispatch, hasCredentials ] );
const onViewSiteClick = useCallback( () => {
dispatch(
recordTracksEvent( 'calypso_jetpack_restore_completed_view_site', {
has_credentials: hasCredentials,
} )
);
}, [ dispatch, hasCredentials ] );
const siteSlug = useSelector( ( state ) => getSiteSlug( state, siteId ) );
const loading = rewindState.state === 'uninitialized';
const { restoreId } = rewindState.rewind || {};
const disableRestore =
( ! isAtomic && areCredentialsInvalid ) ||
Object.values( rewindConfig ).every( ( setting ) => ! setting );
const selectedDate = moment( rewindId, 'X' );
const baseBackupDate = backup.baseRewindId ? moment.unix( backup.baseRewindId ) : null;
const showRealTimeMessage = backup.baseRewindId && baseBackupDate && backup.rewindStepCount > 0;
const onLearnAboutClick = useCallback( () => {
dispatch(
recordTracksEvent( 'calypso_jetpack_backup_restore_learn_about_click', {
has_credentials: hasCredentials,
} )
);
}, [ dispatch, hasCredentials ] );
const renderConfirm = () => {
let restoreWarning = translate(
'Important: This action will replace the selected content with the content from the selected restore point.'
);
if ( rewindConfig.sqls ) {
restoreWarning = translate(
'Important: This action will replace all settings, posts, pages and other site content with the information from the selected restore point.'
);
}
return (
<>
{ ! isAtomic && <QueryJetpackCredentialsStatus siteId={ siteId } role="main" /> }
<div className="rewind-flow__header">
<Gridicon icon="history" size={ 48 } />
<div className="rewind-flow__learn-about">
<ExternalLink
href="https://jetpack.com/support/backup/restoring-with-jetpack-backup/"
onClick={ onLearnAboutClick }
>
{ translate( 'Learn about restores' ) }
</ExternalLink>
</div>
</div>
<h3 className="rewind-flow__title">{ translate( 'Restore your site' ) }</h3>
<p className="rewind-flow__info">
{ translate( 'Selected restore point: {{strong}}%(backupDisplayDate)s{{/strong}}', {
args: {
backupDisplayDate,
},
components: {
strong: <strong />,
},
} ) }
</p>
{ showRealTimeMessage && (
<BackupRealtimeMessage
baseBackupDate={ baseBackupDate }
eventsCount={ backup.rewindStepCount }
selectedBackupDate={ selectedDate }
/>
) }
<h4 className="rewind-flow__cta">
{ translate( 'Choose the items you wish to restore:' ) }
</h4>
<RewindConfigEditor currentConfig={ rewindConfig } onConfigChange={ setRewindConfig } />
<RewindFlowNotice
gridicon="notice"
title={ restoreWarning }
type={ RewindFlowNoticeLevel.WARNING }
/>
<>
{ backupCurrentlyInProgress && (
<RewindFlowNotice
gridicon="notice"
title={ translate(
'A backup is currently in progress; restoring now will stop the backup.'
) }
type={ RewindFlowNoticeLevel.WARNING }
/>
) }
</>
<div className="rewind-flow__btn-group">
<Button
className="rewind-flow__back-button"
href={ backupMainPath( siteSlug ) }
onClick={ onGoBack }
>
{ translate( 'Go back' ) }
</Button>
<Button
className="rewind-flow__primary-button"
primary
onClick={ onConfirm }
disabled={ disableRestore }
>
{ translate( 'Restore now' ) }
</Button>
</div>
<Interval onTick={ refreshBackups } period={ EVERY_FIVE_SECONDS } />
</>
);
};
const renderInProgress = () => (
<>
<div className="rewind-flow__header">
<Gridicon icon="history" size={ 48 } />
</div>
<h3 className="rewind-flow__title">{ translate( 'Currently restoring your site' ) }</h3>
<ProgressBar
isReady={ 'running' === status }
initializationMessage={ translate( 'Initializing the restore process' ) }
message={ message }
entry={ currentEntry }
percent={ percent }
/>
<p className="rewind-flow__info">
{ translate(
'We are restoring your site back to {{strong}}%(backupDisplayDate)s{{/strong}}.',
{
args: {
backupDisplayDate,
},
components: {
strong: <strong />,
},
}
) }
</p>
<CheckYourEmail
message={ translate(
"Don't want to wait? For your convenience, we'll email you when your site has been fully restored."
) }
/>
</>
);
const renderFinished = () => (
<>
<div className="rewind-flow__header">
<img src={ restoreSuccessImage } alt="jetpack cloud restore success" />
</div>
<h3 className="rewind-flow__title">
{ translate( 'Your site has been successfully restored.' ) }
</h3>
<p className="rewind-flow__info">
{ translate(
'All of your selected items are now restored back to {{strong}}%(backupDisplayDate)s{{/strong}}.',
{
args: {
backupDisplayDate,
},
components: {
strong: <strong />,
},
}
) }
</p>
<Button
primary
href={ siteUrl }
target="_blank"
className="rewind-flow__primary-button"
onClick={ onViewSiteClick }
>
{ translate( 'View your website {{externalIcon/}}', {
components: { externalIcon: <Gridicon icon="external" size={ 24 } /> },
} ) }
</Button>
</>
);
const ErrorDetails = () => {
return (
<p className="rewind-flow__info">
{ translate(
'An error occurred while restoring your site. Please {{button}}try your restore again{{/button}} or contact our support team to resolve the issue.',
{
components: {
button: (
<Button className="rewind-flow__error-retry-button" onClick={ onRetryClick } />
),
},
}
) }
</p>
);
};
const ErrorDetailsAddCredentials = () => {
return (
<>
<p className="rewind-flow__info">
{ translate(
'An error occurred while restoring your site. You may need to {{linkCredentials}}add your server credentials{{/linkCredentials}}. You can follow the steps in {{linkGuide}}our guide{{/linkGuide}} to add SSH, SFTP, or FTP credentials, and then try to restore again.',
{
components: {
linkCredentials: (
<a
href={
rewindState.canAutoconfigure
? `/start/rewind-auto-config/?blogid=${ siteId }&siteSlug=${ siteSlug }`
: `${ settingsPath( siteSlug ) }#credentials`
}
onClick={ onAddingCredentialsClick }
/>
),
linkGuide: (
<ExternalLink
href="https://jetpack.com/support/adding-credentials-to-jetpack/"
onClick={ onLearnAddingCredentialsClick }
children={ null }
/>
),
},
}
) }
</p>
<p className="rewind-flow__info">
{ translate(
'If the issue persists, contact our support team to help you resolve the issue.'
) }
</p>
</>
);
};
const renderError = () => {
return (
<Error
errorText={ translate( 'Restore failed: %s', {
args: [ backupDisplayDate ],
comment: '%s is a time/date string',
} ) }
siteUrl={ siteUrl }
>
{ credentialsAreValid ? <ErrorDetails /> : <ErrorDetailsAddCredentials /> }
</Error>
);
};
const isInProgress =
( ! inProgressRewindStatus && userHasRequestedRestore ) ||
( inProgressRewindStatus && [ 'queued', 'running' ].includes( inProgressRewindStatus ) ) ||
( userHasRequestedRestore && inProgressRewindStatus === 'failed' && ! restoreFailed );
const isRestoreDone = inProgressRewindStatus === 'finished';
const isFinished = isRestoreDone && showFinishedScreen;
useEffect( () => {
// If the server says the restore is 'queued' or 'running', it means a
// restore is in progress. Even if the user just refreshed the page, we
// want to mark userHasRequestedRestore = true so that when it finishes,
// we'll know it actually completed during this session (and can show
// the Finished screen).
if (
inProgressRewindStatus &&
[ 'queued', 'running' ].includes( inProgressRewindStatus ) &&
! userHasRequestedRestore
) {
setUserHasRequestedRestore( true );
}
}, [ inProgressRewindStatus, userHasRequestedRestore ] );
useEffect( () => {
if (
isRestoreDone &&
userHasRequestedRestore &&
[ 'queued', 'running' ].includes( previousRestoreStatus as string ) &&
! showFinishedScreen
) {
dispatch(
recordTracksEvent( 'calypso_jetpack_backup_restore_completed', {
has_credentials: hasCredentials,
} )
);
setRestoreInitiated( false );
setUserHasRequestedRestore( false );
setRestoreFailed( false );
setShowFinishedScreen( true );
}
if ( ! isRestoreInProgress && restoreInitiated && inProgressRewindStatus === 'failed' ) {
setRestoreInitiated( false );
setUserHasRequestedRestore( false );
setRestoreFailed( true );
}
}, [
dispatch,
hasCredentials,
inProgressRewindStatus,
isRestoreDone,
isRestoreInProgress,
previousRestoreStatus,
restoreInitiated,
showFinishedScreen,
userHasRequestedRestore,
] );
const render = () => {
if ( loading ) {
return <Loading />;
} else if ( ( ! inProgressRewindStatus && ! userHasRequestedRestore ) || showConfirm ) {
return renderConfirm();
} else if ( ! inProgressRewindStatus && needCredentials ) {
return (
<MissingCredentials
siteSlug={ siteSlug }
enterCredentialsEventName="calypso_jetpack_backup_restore_missing_credentials_cta"
goBackEventName="calypso_jetpack_backup_restore_missing_credentials_back"
goBackUrl={ backupPath( siteSlug ) }
/>
);
} else if ( isInProgress ) {
return renderInProgress();
} else if ( isRestoreDone && ! showFinishedScreen ) {
// The API may still say "finished" from a *previous* restore with the same rewindId.
// If our local showFinishedScreen flag is false, we treat this as a "new" visit
// and show the confirm screen instead of the finished screen.
return renderConfirm();
} else if ( isFinished ) {
return renderFinished();
}
return renderError();
};
return (
<>
<QueryRewindBackups siteId={ siteId } />
<QueryRewindState siteId={ siteId } />
{ restoreId && 'running' === inProgressRewindStatus && (
<QueryRewindRestoreStatus siteId={ siteId } restoreId={ restoreId } />
) }
<Card>{ render() }</Card>
{ ( isInProgress || isFinished ) && <JetpackReviewPrompt align="center" type="restore" /> }
</>
);
};
export default BackupRestoreFlow;