| Current File : /home/digitaw/www/wp-content/plugins/wordpress-popup/inc/providers/sendinblue/hustle-sendinblue.php |
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
/**
* Hustle_SendinBlue class
*
* @package Hustle
*/
if ( ! class_exists( 'Hustle_SendinBlue' ) ) :
/**
* Class Hustle_SendinBlue
*/
class Hustle_SendinBlue extends Hustle_Provider_Abstract {
const SLUG = 'sendinblue';
const CURRENT_LISTS = 'hustle-sendinblue-current-list';
/**
* Provider Instance
*
* @since 3.0.5
*
* @var self|null
*/
protected static $instance = null;
/**
* Provider api instance
*
* @since 4.0.2
*
* @var self|null
*/
protected static $api;
/**
* Slug
*
* @since 3.0.5
* @var string
*/
protected $slug = 'sendinblue';
/**
* Version
*
* @since 3.0.5
* @var string
*/
protected $version = '2.0';
/**
* Class
*
* @since 3.0.5
* @var string
*/
protected $class = __CLASS__;
/**
* Title
*
* @since 3.0.5
* @var string
*/
protected $title = 'Brevo';
/**
* Class name of form settings
*
* @var string
*/
protected $form_settings = 'Hustle_SendinBlue_Form_Settings';
/**
* Class name of form hooks
*
* @since 4.0
* @var string
*/
protected $form_hooks = 'Hustle_SendinBlue_Form_Hooks';
/**
* Provider constructor.
*/
public function __construct() {
$this->icon_2x = plugin_dir_url( __FILE__ ) . 'images/icon.png';
$this->logo_2x = plugin_dir_url( __FILE__ ) . 'images/logo.png';
}
/**
* Get Instance
*
* @return self|null
*/
public static function get_instance() {
if ( is_null( self::$instance ) ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Get api
*
* @param string $api_key Api key.
* @return Hustle_SendinBlue_Api
*/
public static function api( $api_key ) {
if ( empty( self::$api ) ) {
try {
self::$api = Hustle_SendinBlue_Api::boot( $api_key );
} catch ( Exception $e ) {
// handle errors here.
self::$api = null;
}
}
return self::$api;
}
/**
* Get the wizard callbacks for the global settings.
*
* @since 4.0
*
* @return array
*/
public function settings_wizards() {
return array(
array(
'callback' => array( $this, 'configure_api_key' ),
'is_completed' => array( $this, 'is_connected' ),
),
);
}
/**
* Configure the API key settings. Global settings.
*
* @since 4.0
*
* @param array $submitted_data Submitted data.
* @return array
*/
public function configure_api_key( $submitted_data ) {
$has_errors = false;
$default_data = array(
'api_key' => '',
'name' => '',
);
$current_data = $this->get_current_data( $default_data, $submitted_data );
$is_submit = isset( $submitted_data['api_key'] );
$global_multi_id = $this->get_global_multi_id( $submitted_data );
$api_key_validated = true;
if ( $is_submit ) {
$api_key_validated = $this->validate_api_key( $submitted_data['api_key'] );
if ( ! $api_key_validated ) {
$error_message = $this->provider_connection_falied();
$has_errors = true;
}
if ( ! $has_errors ) {
$settings_to_save = array(
'api_key' => $current_data['api_key'],
'name' => $current_data['name'],
);
// If not active, activate it.
// TODO: Wrap this in a friendlier method.
if ( Hustle_Provider_Utils::is_provider_active( $this->slug )
|| Hustle_Providers::get_instance()->activate_addon( $this->slug ) ) {
$this->save_multi_settings_values( $global_multi_id, $settings_to_save );
} else {
$error_message = __( "Provider couldn't be activated.", 'hustle' );
$has_errors = true;
}
}
if ( ! $has_errors ) {
return array(
'html' => Hustle_Provider_Utils::get_integration_modal_title_markup( __( 'Brevo Added', 'hustle' ), __( 'You can now go to your pop-ups, slide-ins and embeds and assign them to this integration', 'hustle' ) ),
'buttons' => array(
'close' => array(
'markup' => Hustle_Provider_Utils::get_provider_button_markup( __( 'Close', 'hustle' ), 'sui-button-ghost', 'close' ),
),
),
'redirect' => false,
'has_errors' => false,
'notification' => array(
'type' => 'success',
'text' => '<strong>' . $this->get_title() . '</strong> ' . esc_html__( 'Successfully connected', 'hustle' ),
),
);
}
}
$options = array(
array(
'type' => 'wrapper',
'class' => $api_key_validated ? '' : 'sui-form-field-error',
'elements' => array(
'label' => array(
'type' => 'label',
'for' => 'api_key',
'value' => __( 'API Key', 'hustle' ),
),
'api_key' => array(
'type' => 'text',
'name' => 'api_key',
'value' => $current_data['api_key'],
'placeholder' => __( 'Enter Key', 'hustle' ),
'id' => 'api_key',
'icon' => 'key',
),
'error' => array(
'type' => 'error',
'class' => $api_key_validated ? 'sui-hidden' : '',
'value' => __( 'Please enter a valid Brevo API key', 'hustle' ),
),
),
),
array(
'type' => 'wrapper',
'style' => 'margin-bottom: 0;',
'elements' => array(
'label' => array(
'type' => 'label',
'for' => 'instance-name-input',
'value' => __( 'Identifier', 'hustle' ),
),
'name' => array(
'type' => 'text',
'name' => 'name',
'value' => $current_data['name'],
'placeholder' => __( 'E.g. Business Account', 'hustle' ),
'id' => 'instance-name-input',
),
'message' => array(
'type' => 'description',
'value' => __( 'Helps to distinguish your integrations if you have connected to the multiple accounts of this integration.', 'hustle' ),
),
),
),
);
if ( $has_errors ) {
$error_notice = array(
'type' => 'notice',
'icon' => 'info',
'class' => 'sui-notice-error',
'value' => esc_html( $error_message ),
);
array_unshift( $options, $error_notice );
}
$step_html = Hustle_Provider_Utils::get_integration_modal_title_markup(
__( 'Configure Brevo', 'hustle' ),
sprintf(
/* translators: 1. opening 'a' tag to Brevo API page, 2. closing 'a' tag */
__( 'To get %1$sBrevo%2$s API key v3.0 log in %3$scampaigns dashboard%4$s and click on %1$sSMTP & API%2$s in left menu.', 'hustle' ),
'<strong>',
'</strong>',
'<a href="https://account.sendinblue.com/advanced/api" target="_blank">',
'</a>'
)
);
$step_html .= Hustle_Provider_Utils::get_html_for_options( $options );
$is_edit = $this->settings_are_completed( $global_multi_id );
if ( $is_edit ) {
$buttons = array(
'disconnect' => array(
'markup' => Hustle_Provider_Utils::get_provider_button_markup(
__( 'Disconnect', 'hustle' ),
'sui-button-ghost',
'disconnect',
true
),
),
'save' => array(
'markup' => Hustle_Provider_Utils::get_provider_button_markup(
__( 'Save', 'hustle' ),
'',
'connect',
true
),
),
);
} else {
$buttons = array(
'connect' => array(
'markup' => Hustle_Provider_Utils::get_provider_button_markup(
__( 'Connect', 'hustle' ),
'sui-button-right',
'connect',
true
),
),
);
}
$response = array(
'html' => $step_html,
'buttons' => $buttons,
'has_errors' => $has_errors,
);
return $response;
}
/**
* Validate the provided API key.
*
* @since 4.0
*
* @param string $api_key Api key.
* @return bool
*/
private function validate_api_key( $api_key ) {
if ( empty( trim( $api_key ) ) ) {
return false;
}
// Check API Key by validating it on get_info request.
try {
self::api( $api_key )->get_account();
} catch ( Exception $e ) {
Hustle_Provider_Utils::maybe_log( __METHOD__, $e->getMessage() );
return false;
}
return true;
}
/**
* Get 3.0 provider mappings
*
* @return array
*/
public function get_30_provider_mappings() {
return array(
'api_key' => 'api_key',
);
}
/**
* Add custom fields
*
* @param array $fields Fields.
* @param object $api Api.
* @return type
*/
public static function add_custom_fields( $fields, $api ) {
try {
foreach ( $fields as $field ) {
$type = ( 'email' === $field['type'] || 'name' === $field['type'] || 'address' === $field['type'] || 'phone' === $field['type'] ) ? 'text' : $field['type'];
$api->create_attribute(
array(
'type' => 'normal',
'data' => array(
strtoupper( $field['name'] ) => strtoupper( $type ),
),
)
);
}
} catch ( Exception $e ) {
return array(
'error' => true,
'code' => 'custom',
'message' => $e->getMessage(),
);
}
return array(
'success' => true,
'field' => $fields,
);
}
/**
* Silent update api
*/
public function slient_update_api() {
if ( Hustle_Provider_Utils::is_provider_active( $this->slug )
|| Hustle_Providers::get_instance()->activate_addon( $this->slug ) ) {
$sendinblue_instances = get_option( 'hustle_provider_sendinblue_settings' );
foreach ( $sendinblue_instances as $global_multi_id => $creds ) {
try {
$new_key = Hustle_SendinBlue_Api::boot( $creds['api_key'] )->migrate_to_v3( array( 'name' => 'hustle_v3_migrated' ) );
$new_key = isset( $new_key->data ) ? $new_key->data : array();
if ( isset( $new_key->value ) && ! empty( $new_key->value ) ) {
$settings_to_save = array(
'api_key' => $new_key->value,
'name' => isset( $creds['name'] ) ? $creds['name'] : '',
);
$this->save_multi_settings_values( $global_multi_id, $settings_to_save );
update_option( 'hustle_provider_sendinblue_version', $this->get_version() );
}
} catch ( Excetption $e ) {
Opt_In_Utils::maybe_log( 'Brevo', 'failed to migrate silently', $e->getMessage() );
}
}
}
}
}
endif;