Weak hands cannot be planted, meager skills have no foundation. Shallow wisdom is futile, how can one hope for a good name?扰扰从役倦，屑屑身事微。少壮轻年月，迟暮惜光辉。
<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php

namespace Hostinger\Reach\Integrations\ContactForm7;

use Hostinger\Reach\Dto\PluginData;
use Hostinger\Reach\Integrations\Integration;
use Hostinger\Reach\Integrations\IntegrationInterface;
use WP_Post;
use WPCF7_ContactForm;
use WPCF7_FormTag;
use WPCF7_Submission;

if ( ! DEFINED( 'ABSPATH' ) ) {
    exit;
}

class ContactForm7Integration extends Integration implements IntegrationInterface {

    public const INTEGRATION_NAME = 'contact-form-7';

    public function active_integration_hooks(): void {
        add_action( 'wpcf7_mail_sent', array( $this, 'handle_submission' ), 10, 1 );
    }

    public function handle_submission( WPCF7_ContactForm $contact_form ): void {
        if ( ! $this->is_form_enabled( $contact_form->id() ) ) {
            return;
        }

        $contact_list = $contact_form->title();
        $email        = $this->get_field_data( $contact_form, array( 'basetype' => 'email' ) );
        $name         = $this->get_name_field( $contact_form );
        if ( $email ) {
            do_action(
                'hostinger_reach_submit',
                array(
                    'group'    => $contact_list,
                    'email'    => $email,
                    'name'     => $name,
                    'metadata' => array(
                        'plugin'  => self::INTEGRATION_NAME,
                        'form_id' => $contact_form->id(),
                    ),
                )
            );
        }
    }

    public function get_field_data( WPCF7_ContactForm $contact_form, array $condition ): string {
        $tag = $this->find_field( $contact_form, $condition );

        if ( ! is_null( $tag ) ) {
            $submission = WPCF7_Submission::get_instance();

            return $submission->get_posted_data( $tag->name );
        }

        return '';
    }

    public function find_field( WPCF7_ContactForm $contact_form, array $condition ): ?WPCF7_FormTag {
        $tags = $contact_form->scan_form_tags( $condition );
        if ( ! empty( $tags ) ) {
            return $tags[0];
        }

        return null;
    }

    public function get_name_field( WPCF7_ContactForm $contact_form ): string {
        $tags     = $contact_form->scan_form_tags( array( 'basetype' => 'text' ) );
        $name_tag = null;
        foreach ( $tags as $tag ) {
            if ( str_contains( $tag->name, 'name' ) ) {
                $name_tag = $tag;
                break;
            }
        }

        if ( ! is_null( $name_tag ) ) {
            $submission = WPCF7_Submission::get_instance();

            return $submission->get_posted_data( $name_tag->name );
        }

        return '';
    }

    public function get_post_type(): array {
        return array( 'wpcf7_contact_form' );
    }

    public static function get_name(): string {
        return self::INTEGRATION_NAME;
    }


    public function is_form_valid( WP_Post $post ): bool {
        $contact_form = WPCF7_ContactForm::get_instance( $post->ID );
        if ( is_null( $contact_form ) ) {
            return false;
        }

        return ! is_null( $this->find_field( $contact_form, array( 'basetype' => 'email' ) ) );
    }

    public function get_plugin_data(): PluginData {
        return PluginData::from_array(
            array(
                'id'           => self::INTEGRATION_NAME,
            