| | import config from '@automattic/calypso-config'; |
| | import { UseMutationResult } from '@tanstack/react-query'; |
| | import { useEffect } from 'react'; |
| | import { logToLogstash } from 'calypso/lib/logstash'; |
| | import { useRequestTransferWithSoftware } from 'calypso/sites/hooks/use-transfer-with-software-start-mutation'; |
| | import { useTransferWithSoftwareStatus } from 'calypso/sites/hooks/use-transfer-with-software-status-query'; |
| | import { useSiteMigrationKey } from './use-site-migration-key'; |
| | import type { TransferWithSoftwareResponse } from 'calypso/sites/hooks/use-transfer-with-software-start-mutation'; |
| |
|
| | type Status = 'idle' | 'pending' | 'success' | 'error'; |
| |
|
| | const safeLogToLogstash = ( message: string, properties: Record< string, unknown > ) => { |
| | try { |
| | logToLogstash( { |
| | feature: 'calypso_client', |
| | message, |
| | properties: { |
| | env: config( 'env_id' ), |
| | type: 'calypso_prepare_site_for_migration', |
| | ...properties, |
| | }, |
| | } ); |
| | } catch ( e ) { |
| | |
| | console.error( e ); |
| | } |
| | }; |
| |
|
| | const useLogMigration = ( |
| | completed: boolean, |
| | siteTransferStatus: Status, |
| | error?: Error | null, |
| | siteId?: number |
| | ) => { |
| | useEffect( () => { |
| | if ( siteTransferStatus === 'pending' ) { |
| | return safeLogToLogstash( 'Site migration preparation started', { |
| | status: 'started', |
| | site_id: siteId, |
| | } ); |
| | } |
| | }, [ siteTransferStatus, siteId ] ); |
| |
|
| | useEffect( () => { |
| | if ( error ) { |
| | return safeLogToLogstash( 'Site migration preparation failed', { |
| | status: 'error', |
| | error: error.message, |
| | error_type: error.name, |
| | site_id: siteId, |
| | } ); |
| | } |
| | }, [ error, siteId ] ); |
| |
|
| | useEffect( () => { |
| | if ( completed ) { |
| | return safeLogToLogstash( 'Site migration preparation completed', { |
| | status: 'success', |
| | site_id: siteId, |
| | } ); |
| | } |
| | }, [ completed, siteId ] ); |
| | }; |
| |
|
| | type Options = { |
| | retry?: number; |
| | }; |
| |
|
| | |
| | |
| | |
| | |
| | export const usePrepareSiteForMigration = ( |
| | siteId: number, |
| | from?: string, |
| | options: Options = {} |
| | ) => { |
| | |
| | const transferMutation: UseMutationResult< TransferWithSoftwareResponse, Error, void > = |
| | useRequestTransferWithSoftware( { |
| | siteId, |
| | apiSettings: { |
| | migration_source_site_domain: from, |
| | }, |
| | plugin_slug: 'wpcom-migration', |
| | } ); |
| |
|
| | |
| | useEffect( () => { |
| | if ( siteId && from ) { |
| | transferMutation.mutate(); |
| | } |
| | }, [ siteId, from ] ); |
| |
|
| | const { |
| | data: { transfer_status } = {}, |
| | error: softwareTransferError, |
| | status: softwareTransferStatus, |
| | } = useTransferWithSoftwareStatus( siteId, transferMutation.data?.transfer_id ?? undefined, { |
| | retry: options.retry ?? 0, |
| | } ); |
| |
|
| | const softwareTransferCompleted = 'completed' === transfer_status; |
| |
|
| | const { |
| | data: { migrationKey } = {}, |
| | error: migrationKeyError, |
| | status: migrationKeyStatus, |
| | } = useSiteMigrationKey( siteId, { |
| | enabled: Boolean( softwareTransferCompleted ), |
| | retry: options.retry ?? 0, |
| | } ); |
| |
|
| | const error = softwareTransferError || migrationKeyError; |
| | const criticalError = softwareTransferError; |
| |
|
| | const detailedStatus = { |
| | siteTransferStatus: transfer_status ?? 'idle', |
| | migrationKeyStatus: ! softwareTransferCompleted ? 'idle' : migrationKeyStatus, |
| | }; |
| |
|
| | useLogMigration( |
| | softwareTransferCompleted, |
| | softwareTransferStatus as Status, |
| | criticalError, |
| | siteId |
| | ); |
| |
|
| | return { |
| | detailedStatus, |
| | softwareTransferCompleted, |
| | error, |
| | migrationKey: migrationKey ?? null, |
| | }; |
| | }; |
| |
|