File size: 4,391 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 |
import config from '@automattic/calypso-config';
import { translate } from 'i18n-calypso';
import { SchemaError } from 'calypso/lib/make-json-schema-parser';
import {
REWIND_GRANULAR_RESTORE,
REWIND_RESTORE,
REWIND_CLONE,
REWIND_STAGING_CLONE,
} from 'calypso/state/action-types';
import { getRewindRestoreProgress } from 'calypso/state/activity-log/actions';
import { recordTracksEvent, withAnalytics } from 'calypso/state/analytics/actions';
import { registerHandlers } from 'calypso/state/data-layer/handler-registry';
import { http } from 'calypso/state/data-layer/wpcom-http/actions';
import { dispatchRequest } from 'calypso/state/data-layer/wpcom-http/utils';
import { errorNotice } from 'calypso/state/notices/actions';
import { requestRewindState } from 'calypso/state/rewind/state/actions';
const fromApi = ( data ) => {
const restoreId = parseInt( data.restore_id, 10 );
if ( Number.isNaN( restoreId ) ) {
throw new SchemaError( `missing numeric restore id - found '${ data.restore_id }'` );
}
return restoreId;
};
const requestRewind = ( action, payload ) =>
http(
{
apiVersion: '1',
method: 'POST',
path: `/activity-log/${ action.siteId }/rewind/to/${ action.timestamp }`,
body: Object.assign( payload, {
calypso_env: config( 'env_id' ),
force_rewind: true,
} ),
},
action
);
const requestRestore = ( action ) => requestRewind( action, { types: action.args } );
const requestGranularRestore = ( action ) =>
requestRewind( action, {
types: 'paths',
include_path_list: action.includePaths,
...( action.excludePaths ? { exclude_path_list: action.excludePaths } : {} ),
} );
const requestClone = ( action ) => requestRewind( action, action.payload );
export const receiveRestoreSuccess = ( { siteId }, restoreId ) => [
getRewindRestoreProgress( siteId, restoreId ),
requestRewindState( siteId ),
];
export const receiveRestoreError = ( { siteId, timestamp }, error ) =>
error.hasOwnProperty( 'schemaErrors' )
? withAnalytics(
recordTracksEvent( 'calypso_rewind_to_missing_restore_id', { site_id: siteId, timestamp } ),
errorNotice(
translate(
"Oops, something went wrong. We've been notified and are working on resolving this issue."
)
)
)
: withAnalytics(
recordTracksEvent( 'calypso_rewind_to_unknown_error', error ),
errorNotice(
translate(
'Oops, something went wrong. Please try again soon or contact support for help.'
)
)
);
const requestStagingClone = ( action ) =>
http(
{
apiVersion: '1',
method: 'POST',
path: `/activity-log/${ action.sourceBlogId }/rewind/to/${ action.timestamp }/on/${ action.stagingBlogId }`,
body: Object.assign( action.payload, {
calypso_env: config( 'env_id' ),
force_rewind: true,
} ),
},
action
);
export const receiveStagingCloneSuccess = ( { stagingBlogId }, restoreId ) => [
getRewindRestoreProgress( stagingBlogId, restoreId ),
requestRewindState( stagingBlogId ),
];
export const receiveStagingCloneError = ( { stagingBlogId, timestamp }, error ) =>
error.hasOwnProperty( 'schemaErrors' )
? withAnalytics(
recordTracksEvent( 'calypso_rewind_to_missing_restore_id', {
site_id: stagingBlogId,
timestamp,
} ),
errorNotice(
translate(
"Oops, something went wrong. We've been notified and are working on resolving this issue."
)
)
)
: withAnalytics(
recordTracksEvent( 'calypso_rewind_to_unknown_error', error ),
errorNotice(
translate(
'Oops, something went wrong. Please try again soon or contact support for help.'
)
)
);
registerHandlers( 'state/data-layer/wpcom/activity-log/rewind/to/index.js', {
[ REWIND_RESTORE ]: [
dispatchRequest( {
fetch: requestRestore,
onSuccess: receiveRestoreSuccess,
onError: receiveRestoreError,
fromApi,
} ),
],
[ REWIND_CLONE ]: [
dispatchRequest( {
fetch: requestClone,
onSuccess: receiveRestoreSuccess,
onError: receiveRestoreError,
fromApi,
} ),
],
[ REWIND_STAGING_CLONE ]: [
dispatchRequest( {
fetch: requestStagingClone,
onSuccess: receiveStagingCloneSuccess,
onError: receiveStagingCloneError,
fromApi,
} ),
],
[ REWIND_GRANULAR_RESTORE ]: [
dispatchRequest( {
fetch: requestGranularRestore,
onSuccess: receiveRestoreSuccess,
onError: receiveRestoreError,
fromApi,
} ),
],
} );
|