namespace WPForms\Tasks\Actions;
use WPForms\Integrations\Stripe\Api\DomainManager;
use WPForms\Integrations\Stripe\Helpers;
* Class DomainAutoRegistrationTask.
class DomainAutoRegistrationTask extends Task {
const ACTION = 'wpforms_process_domain_auto_registration';
const STATUS = 'wpforms_process_domain_auto_registration_status';
const IN_PROGRESS = 'in_progress';
const COMPLETED = 'completed';
protected $log_title = 'Migration';
public function __construct() {
parent::__construct( self::ACTION );
$this->domain_manager = new DomainManager();
$status = get_option( self::STATUS );
// This task is run in \WPForms\Migrations\Upgrade186::run(),
// and started in \WPForms\Migrations\UpgradeBase::run_async().
// Bail out if a task is not started or completed.
if ( ! $status || $status === self::COMPLETED ) {
// Mark that the task is in progress.
update_option( self::STATUS, self::IN_PROGRESS );
$tasks = wpforms()->obj( 'tasks' );
// Add new if none exists.
if ( $tasks->is_scheduled( self::ACTION ) !== false ) {
$tasks->create( self::ACTION )->async()->register();
private function hooks() {
add_action( self::ACTION, [ $this, 'process' ] );
public function process() {
// If the Stripe account is connected, then try to register domain.
if ( Helpers::has_stripe_keys() && $this->domain_manager->validate() ) {
$this->log( 'Stripe Payments: Stripe domain auto registration during migration to WPForms 1.8.6.' );
// Mark that the task is completed.
update_option( self::STATUS, self::COMPLETED );