File size: 2,357 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 |
import {
ATOMIC_SOFTWARE_INITIATE_INSTALL,
ATOMIC_SOFTWARE_REQUEST_STATUS,
} from 'calypso/state/action-types';
import { recordTracksEvent } from 'calypso/state/analytics/actions';
import {
setAtomicSoftwareStatus,
setAtomicSoftwareError,
cleanAtomicSoftwareStatus,
} from 'calypso/state/atomic/software/actions';
import { registerHandlers } from 'calypso/state/data-layer/handler-registry';
import { http } from 'calypso/state/data-layer/wpcom-http/actions';
import { noRetry } from 'calypso/state/data-layer/wpcom-http/pipeline/retry-on-failure/policies';
import { dispatchRequest } from 'calypso/state/data-layer/wpcom-http/utils';
const installSoftware = ( action ) => [
// Clean up the status in case it's an installing reattempt.
cleanAtomicSoftwareStatus( action.siteId, action.softwareSet ),
http(
{
apiNamespace: 'wpcom/v2',
method: 'POST',
path: `/sites/${ action.siteId }/atomic/software/${ action.softwareSet }`,
body: {}, // have to have an empty body to make wpcom-http happy
},
action
),
];
const receiveInstallResponse = () => [
recordTracksEvent( 'calypso_atomic_software_install_inititate_success', {
context: 'atomic_software_install',
} ),
];
const receiveInstallError = ( action, error ) => [
recordTracksEvent( 'calypso_atomic_software_install_inititate_failure', {
context: 'atomic_software_install',
error: error.error,
} ),
setAtomicSoftwareError( action.siteId, action.softwareSet, error ),
];
const requestSoftware = ( action ) =>
http(
{
apiNamespace: 'wpcom/v2',
method: 'GET',
path: `/sites/${ action.siteId }/atomic/software/${ action.softwareSet }`,
retryPolicy: noRetry(),
},
action
);
const receiveSoftwareResponse = ( action, response ) => [
setAtomicSoftwareStatus( action.siteId, action.softwareSet, response ),
];
const receiveSoftwareError = ( action, error ) => [
setAtomicSoftwareError( action.siteId, action.softwareSet, error ),
];
registerHandlers( 'state/data-layer/wpcom/sites/atomic/software', {
[ ATOMIC_SOFTWARE_INITIATE_INSTALL ]: [
dispatchRequest( {
fetch: installSoftware,
onSuccess: receiveInstallResponse,
onError: receiveInstallError,
} ),
],
[ ATOMIC_SOFTWARE_REQUEST_STATUS ]: [
dispatchRequest( {
fetch: requestSoftware,
onSuccess: receiveSoftwareResponse,
onError: receiveSoftwareError,
} ),
],
} );
|