- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
62 lines
1.6 KiB
PHP
Executable File
62 lines
1.6 KiB
PHP
Executable File
<?php
|
|
|
|
class BWFAN_API_Contact_Resubscribe extends BWFAN_API_Base {
|
|
public static $ins;
|
|
|
|
public static function get_instance() {
|
|
if ( null === self::$ins ) {
|
|
self::$ins = new self();
|
|
}
|
|
|
|
return self::$ins;
|
|
}
|
|
|
|
public function __construct() {
|
|
parent::__construct();
|
|
$this->method = WP_REST_Server::DELETABLE;
|
|
$this->route = '/v3/contacts/(?P<contact_id>[\\d]+)/resubscribe';
|
|
$this->request_args = array(
|
|
'contact_id' => array(
|
|
'description' => __( 'Contact ID to resubscribe contact', 'wp-marketing-automations' ),
|
|
'type' => 'integer',
|
|
)
|
|
);
|
|
}
|
|
|
|
public function default_args_values() {
|
|
return array(
|
|
'contact_id' => ''
|
|
);
|
|
}
|
|
|
|
public function process_api_call() {
|
|
$contact_id = $this->get_sanitized_arg( 'contact_id', 'text_field' );
|
|
$contact = new BWFCRM_Contact( absint( $contact_id ) );
|
|
if ( ! $contact->is_contact_exists() ) {
|
|
$this->response_code = 404;
|
|
|
|
return $this->error_response( __( 'Contact doesn\'t exist', 'wp-marketing-automations' ) );
|
|
}
|
|
|
|
$unsubscribe_data = $contact->check_contact_unsubscribed( false );
|
|
|
|
if ( empty( $unsubscribe_data ) ) {
|
|
$this->response_code = 404;
|
|
|
|
return $this->error_response( __( 'Contact already subscribed', 'wp-marketing-automations' ) );
|
|
}
|
|
|
|
foreach ( $unsubscribe_data as $data ) {
|
|
|
|
BWFAN_Model_Message_Unsubscribe::delete( $data['ID'] );
|
|
}
|
|
$contact->save_last_modified();
|
|
$this->response_code = 200;
|
|
|
|
return $this->success_response( [ 'contact_id' => $contact_id ], __( 'Contact subscribed', 'wp-marketing-automations' ) );
|
|
|
|
}
|
|
}
|
|
|
|
BWFAN_API_Loader::register( 'BWFAN_API_Contact_Resubscribe' );
|