File size: 5,643 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 | import { get, isEmpty, map } from 'lodash';
import { AUTOMATED_TRANSFER_ELIGIBILITY_REQUEST } from 'calypso/state/action-types';
import { recordTracksEvent, withAnalytics } from 'calypso/state/analytics/actions';
import { updateEligibility } from 'calypso/state/automated-transfer/actions';
import { eligibilityHolds } from 'calypso/state/automated-transfer/constants';
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 isUnlaunchedSite from 'calypso/state/selectors/is-unlaunched-site';
/**
* Maps the constants used in the WordPress.com API with
* those used inside of Calypso. Somewhat redundant, this
* provides safety for when the API changes. We need not
* changes the constants in the Calypso side, only here
* in the code directly dealing with the API.
*/
const statusMapping = {
blocked_atomic_transfer: eligibilityHolds.BLOCKED_ATOMIC_TRANSFER,
transfer_already_exists: eligibilityHolds.TRANSFER_ALREADY_EXISTS,
no_business_plan: eligibilityHolds.NO_BUSINESS_PLAN,
no_jetpack_sites: eligibilityHolds.NO_JETPACK_SITES,
no_vip_sites: eligibilityHolds.NO_VIP_SITES,
site_private: eligibilityHolds.SITE_PRIVATE,
//site_private: eligibilityHolds.SITE_UNLAUNCHED, // modified in eligibilityHoldsFromApi
site_graylisted: eligibilityHolds.SITE_GRAYLISTED,
non_admin_user: eligibilityHolds.NON_ADMIN_USER,
not_resolving_to_wpcom: eligibilityHolds.NOT_RESOLVING_TO_WPCOM,
no_ssl_certificate: eligibilityHolds.NO_SSL_CERTIFICATE,
email_unverified: eligibilityHolds.EMAIL_UNVERIFIED,
excessive_disk_space: eligibilityHolds.EXCESSIVE_DISK_SPACE,
is_staging_blog: eligibilityHolds.IS_STAGING_SITE,
};
/**
* Maps from API response the issues which prevent automated transfer
* @param {Object} response API response data
* @param {Array} response.errors List of { code, message } pairs describing issues
* @param {Object} options object
* @returns {Array} list of hold constants associated with issues listed in API response
*/
export const eligibilityHoldsFromApi = ( { errors = [] }, options = {} ) =>
errors
.map( ( { code } ) => {
//differentiate on the client between a launched private site vs an unlaunched site
if ( options.sitePrivateUnlaunched && code === 'site_private' ) {
return eligibilityHolds.SITE_UNLAUNCHED;
}
return get( statusMapping, code, '' );
} )
.filter( Boolean );
/**
* Maps from API response the issues which trigger a confirmation for automated transfer
* @param {Object} response API response data
* @param {Object} response.warnings Lists of warnings by type, { plugins, themes }
* @returns {Array} flat list of warnings with { name, description, supportUrl }
*/
const eligibilityWarningsFromApi = ( { warnings = {} } ) =>
Object.keys( warnings )
.reduce( ( list, type ) => list.concat( warnings[ type ] ), [] ) // combine plugin and theme warnings into one list
.map( ( { description, name, support_url, support_post_id, id, domain_names } ) => ( {
id,
name,
description,
supportPostId: support_post_id,
supportUrl: support_url,
domainNames: domain_names,
} ) );
/**
* Maps from API response to internal representation of automated transfer eligibility data
* @param {Object} data API response data
* @param {Object} options object
* @returns {Object} Calypso eligibility information
*/
const fromApi = ( data, options = {} ) => ( {
lastUpdate: Date.now(),
eligibilityHolds: eligibilityHoldsFromApi( data, options ),
eligibilityWarnings: eligibilityWarningsFromApi( data ),
} );
/**
* Build track events for eligibility status
* @param {Object} data eligibility data from the api
* @returns {Object} An analytics event object
*/
const trackEligibility = ( data ) => {
const isEligible = get( data, 'is_eligible', false );
const pluginWarnings = get( data, 'warnings.plugins', [] );
const widgetWarnings = get( data, 'warnings.widgets', [] );
const hasEligibilityWarnings = ! ( isEmpty( pluginWarnings ) && isEmpty( widgetWarnings ) );
const eventProps = {
has_warnings: hasEligibilityWarnings,
plugins: map( pluginWarnings, 'id' ).join( ',' ),
widgets: map( widgetWarnings, 'id' ).join( ',' ),
};
if ( isEligible ) {
return recordTracksEvent( 'calypso_automated_transfer_eligibility_eligible', eventProps );
}
// add holds to event props if the transfer is ineligible
eventProps.holds = eligibilityHoldsFromApi( data ).join( ',' );
return recordTracksEvent( 'calypso_automated_transfer_eligibility_ineligible', eventProps );
};
/**
* Issues an API request to fetch eligibility information for a site
* @param {Function} action dispatcher
* @returns {Object} action
*/
export const requestAutomatedTransferEligibility = ( action ) =>
http(
{
method: 'GET',
path: `/sites/${ action.siteId }/automated-transfers/eligibility`,
apiVersion: '1',
},
action
);
export const updateAutomatedTransferEligibility =
( { siteId }, data ) =>
( dispatch, getState ) => {
const siteIsUnlaunched = isUnlaunchedSite( getState(), siteId );
dispatch(
withAnalytics(
trackEligibility( data ),
updateEligibility( siteId, fromApi( data, { sitePrivateUnlaunched: siteIsUnlaunched } ) )
)
);
};
registerHandlers( 'state/data-layer/wpcom/sites/automated-transfer/eligibility/index.js', {
[ AUTOMATED_TRANSFER_ELIGIBILITY_REQUEST ]: [
dispatchRequest( {
fetch: requestAutomatedTransferEligibility,
onSuccess: updateAutomatedTransferEligibility,
onError: () => {}, // noop
} ),
],
} );
|