File size: 5,469 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 |
import { translate } from 'i18n-calypso';
import { get, omit, startsWith } from 'lodash';
import { trailingslashit } from 'calypso/lib/route';
import { JETPACK_SETTINGS_REQUEST, JETPACK_SETTINGS_SAVE } from 'calypso/state/action-types';
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 {
saveJetpackSettingsSuccess,
updateJetpackSettings,
} from 'calypso/state/jetpack/settings/actions';
import {
filterSettingsByActiveModules,
normalizeSettings,
sanitizeSettings,
} from 'calypso/state/jetpack/settings/utils';
import { errorNotice } from 'calypso/state/notices/actions';
import getJetpackSettings from 'calypso/state/selectors/get-jetpack-settings';
import getSiteUrl from 'calypso/state/selectors/get-site-url';
export const MAX_WOOCOMMERCE_INSTALL_RETRIES = 2;
export const fromApi = ( response ) => {
if ( ! response.data ) {
throw new Error( 'missing settings' );
}
return normalizeSettings( response.data );
};
const toApi = ( settings ) => filterSettingsByActiveModules( sanitizeSettings( settings ) );
const receiveJetpackSettings = ( { siteId }, settings ) =>
updateJetpackSettings( siteId, settings );
/**
* Dispatches a request to fetch settings for a given site
* @param {Object} action Redux action
* @returns {Object} Dispatched http action
*/
export const requestJetpackSettings = ( action ) => {
const { siteId } = action;
return http(
{
apiVersion: '1.1',
method: 'GET',
path: '/jetpack-blogs/' + siteId + '/rest-api/',
query: {
path: '/jetpack/v4/settings/',
json: true,
},
},
action
);
};
export const announceRequestFailure =
( { siteId } ) =>
( dispatch, getState ) => {
const state = getState();
const url = getSiteUrl( state, siteId );
const noticeOptions = {
id: `jps-communication-error-${ siteId }`,
};
if ( url ) {
noticeOptions.button = translate( 'Visit site admin' );
noticeOptions.href = trailingslashit( url ) + 'wp-admin/admin.php?page=jetpack';
}
return dispatch( errorNotice( translate( 'Something went wrong.' ), noticeOptions ) );
};
/**
* Dispatches a request to save particular settings on a site
* @param {Object} action Redux action
* @returns {Object} Dispatched http action
*/
export const saveJetpackSettings = ( action ) => ( dispatch, getState ) => {
const { settings, siteId } = action;
const previousSettings = getJetpackSettings( getState(), siteId );
// We don't want any legacy Jetpack Onboarding credentials in our Jetpack Settings Redux state.
const settingsWithoutCredentials = omit( settings, [ 'onboarding.jpUser', 'onboarding.token' ] );
dispatch( updateJetpackSettings( siteId, settingsWithoutCredentials ) );
dispatch(
http(
{
apiVersion: '1.1',
method: 'POST',
path: '/jetpack-blogs/' + siteId + '/rest-api/',
body: {
path: '/jetpack/v4/settings/',
body: JSON.stringify( toApi( settings ) ),
json: true,
},
},
{
...action,
meta: { ...action.meta, settings: previousSettings },
}
)
);
};
// We need to dispatch some action in order to signal to the data layer that
// the save request has finished. Tracking those requests is necessary for
// displaying an up to date progress indicator for some steps.
// We also need this to store a regenerated post-by-email address in Redux state.
export const handleSaveSuccess = ( { siteId }, { data: { code, message, ...updatedSettings } } ) =>
saveJetpackSettingsSuccess( siteId, updatedSettings );
export const handleSaveFailure = ( { siteId }, { meta: { settings: previousSettings } } ) => [
updateJetpackSettings( siteId, previousSettings ),
errorNotice( translate( 'An unexpected error occurred. Please try again later.' ), {
id: `jps-notice-error-${ siteId }`,
duration: 5000,
} ),
];
export const retryOrAnnounceSaveFailure = ( action, { message: errorMessage } ) => {
const {
settings,
siteId,
type,
meta: { dataLayer },
} = action;
const { retryCount = 0 } = dataLayer;
// If we got a timeout on WooCommerce installation, try again (up to 3 times),
// since it might just be a slow server that actually ends up installing it
// properly, in which case a subsequent request will return 'success'.
if (
get( settings, [ 'onboarding', 'installWooCommerce' ] ) !== true ||
! startsWith( errorMessage, 'cURL error 28' ) || // cURL timeout
retryCount > MAX_WOOCOMMERCE_INSTALL_RETRIES
) {
return handleSaveFailure( { siteId }, action );
}
// We cannot use `extendAction( action, ... )` here, since `meta.dataLayer` now includes error information,
// which we would propagate, causing the data layer to think there's been an error on the subsequent attempt.
// Instead, we have to re-assemble our action.
return {
settings,
siteId,
type,
meta: {
dataLayer: {
retryCount: retryCount + 1,
trackRequest: true,
},
},
};
};
registerHandlers( 'state/data-layer/wpcom/jetpack/settings/index.js', {
[ JETPACK_SETTINGS_REQUEST ]: [
dispatchRequest( {
fetch: requestJetpackSettings,
onSuccess: receiveJetpackSettings,
onError: announceRequestFailure,
fromApi,
} ),
],
[ JETPACK_SETTINGS_SAVE ]: [
dispatchRequest( {
fetch: saveJetpackSettings,
onSuccess: handleSaveSuccess,
onError: retryOrAnnounceSaveFailure,
} ),
],
} );
|