Files
roi-theme/wp-content/plugins/thrive-ultimatum/thrive-dashboard/inc/auto-responder/classes/Connection/Awsses.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- 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>
2025-11-03 21:04:30 -06:00

338 lines
9.8 KiB
PHP
Executable File

<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-dashboard
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
class Thrive_Dash_List_Connection_Awsses extends Thrive_Dash_List_Connection_Abstract {
/**
* Return the connection type
*
* @return String
*/
public static function get_type() {
return 'email';
}
/**
* @return string the API connection title
*/
public function get_title() {
return 'Amazon SES';
}
/**
* output the setup form html
*
* @return void
*/
public function output_setup_form() {
$this->output_controls_html( 'awsses' );
}
/**
* should handle: read data from post / get, test connection and save the details
*
* on error, it should register an error message (and redirect?)
*/
public function read_credentials() {
$ajax_call = defined( 'DOING_AJAX' ) && DOING_AJAX;
$key = ! empty( $_POST['connection']['key'] ) ? sanitize_text_field( $_POST['connection']['key'] ) : '';
if ( empty( $key ) ) {
return $ajax_call ? __( 'You must provide a valid Amazon Web Services Simple Email Service key', 'thrive-dash' ) : $this->error( __( 'You must provide a valid Amazon Web Services Simple Email Service key', 'thrive-dash' ) );
}
$secretkey = ! empty( $_POST['connection']['secretkey'] ) ? sanitize_text_field( $_POST['connection']['secretkey'] ) : '';
if ( empty( $secretkey ) ) {
return $ajax_call ? __( 'You must provide a valid Amazon Web Services Simple Email Service secret key', 'thrive-dash' ) : $this->error( __( 'You must provide a valid Amazon Web Services Simple Email Service secret key', 'thrive-dash' ) );
}
$email = ! empty( $_POST['connection']['email'] ) ? sanitize_email( $_POST['connection']['email'] ) : '';
if ( empty( $email ) ) {
return $ajax_call ? __( 'Email field must not be empty', 'thrive-dash' ) : $this->error( __( 'Email field must not be empty', 'thrive-dash' ) );
}
$country = ! empty( $_POST['connection']['country'] ) ? sanitize_text_field( $_POST['connection']['country'] ) : '';
$credentials = array(
'key' => $key,
'secretkey' => $secretkey,
'email' => $email,
'country' => $country,
);
$this->set_credentials( $credentials );
$result = $this->test_connection();
if ( $result !== true ) {
return $ajax_call ? sprintf( __( 'Could not connect to Amazon Web Services Simple Email Service using the provided key (<strong>%s</strong>)', 'thrive-dash' ), $result ) : $this->error( sprintf( __( 'Could not connect to Amazon Web Services Simple Email Service using the provided key (<strong>%s</strong>)', 'thrive-dash' ), $result ) );
}
/**
* finally, save the connection details
*/
$this->save();
$this->success( __( 'Amazon Web Services Simple Email Service connected successfully', 'thrive-dash' ) );
if ( $ajax_call ) {
return true;
}
}
/**
* test if a connection can be made to the service using the stored credentials
*
* @return bool|string true for success or error message for failure
*/
public function test_connection() {
$awsses = $this->get_api();
if ( isset( $_POST['connection']['email'] ) ) {
$from_email = sanitize_email( $_POST['connection']['email'] );
$to = sanitize_email( $_POST['connection']['email'] );
} else {
$credentials = Thrive_Dash_List_Manager::credentials( 'awsses' );
if ( isset( $credentials ) ) {
$from_email = $credentials['email'];
$to = $credentials['email'];
}
}
$subject = 'API connection test';
$html_content = 'This is a test email from Thrive Leads Amazon Web Services Simple Email Service API.';
$text_content = 'This is a test email from Thrive Leads Amazon Web Services Simple Email Service API.';
try {
$messsage = new Thrive_Dash_Api_Awsses_SimpleEmailServiceMessage();
$messsage->addTo( $to );
$messsage->setFrom( $from_email );
$messsage->setSubject( $subject );
$messsage->setMessageFromString( $text_content, $html_content );
$awsses->sendEmail( $messsage );
} catch ( Exception $e ) {
return $e->getMessage();
}
$connection = get_option( 'tve_api_delivery_service', false );
if ( $connection == false ) {
update_option( 'tve_api_delivery_service', 'awsses' );
}
return true;
/**
* just try getting a list as a connection test
*/
}
/**
* Send custom email
*
* @param $data
*
* @return bool|string true for success or error message for failure
*/
public function sendCustomEmail( $data ) {
$awsses = $this->get_api();
$credentials = Thrive_Dash_List_Manager::credentials( 'awsses' );
if ( isset( $credentials ) ) {
$from_email = $credentials['email'];
} else {
return false;
}
try {
$messsage = new Thrive_Dash_Api_Awsses_SimpleEmailServiceMessage();
$messsage->addTo( $data['email'] );
$messsage->setFrom( $from_email );
$messsage->setSubject( $data['subject'] );
$messsage->setMessageFromString( empty ( $data['text_content'] ) ? '' : $data['text_content'], empty ( $data['html_content'] ) ? '' : $data['html_content'] );
$awsses->sendEmail( $messsage );
} catch ( Exception $e ) {
return $e->getMessage();
}
return true;
}
/**
* Send the same email to multiple addresses
*
* @param $data
*
* @return bool|string
*/
public function sendMultipleEmails( $data ) {
$awsses = $this->get_api();
$credentials = Thrive_Dash_List_Manager::credentials( 'awsses' );
if ( isset( $credentials ) ) {
$from_email = $credentials['email'];
} else {
return false;
}
if ( ! empty( $data['from_name'] ) ) {
$from_email = $data['from_name'] . ' < ' . $from_email . ' >';
}
try {
$message = new Thrive_Dash_Api_Awsses_SimpleEmailServiceMessage();
$message->addTo( $data['emails'] );
$message->setFrom( $from_email );
$message->setSubject( $data['subject'] );
$message->setMessageFromString( empty ( $data['text_content'] ) ? '' : $data['text_content'], empty ( $data['html_content'] ) ? '' : $data['html_content'] );
if ( ! empty( $data['reply_to'] ) ) {
$message->addReplyTo( $data['reply_to'] );
}
if ( ! empty( $data['cc'] ) ) {
$message->addCC( $data['cc'] );
}
if ( ! empty( $data['bcc'] ) ) {
$message->addBCC( $data['bcc'] );
}
$awsses->sendEmail( $message );
} catch ( Exception $e ) {
return $e->getMessage();
}
/* Send confirmation email */
if ( ! empty( $data['send_confirmation'] ) ) {
try {
$message = new Thrive_Dash_Api_Awsses_SimpleEmailServiceMessage();
$message->addTo( $data['sender_email'] );
$message->setFrom( $from_email );
$message->addReplyTo( $from_email );
$message->setSubject( $data['confirmation_subject'] );
$message->setMessageFromString( empty ( $data['confirmation_text'] ) ? '' : $data['confirmation_text'], empty ( $data['confirmation_html'] ) ? '' : $data['confirmation_html'] );
$awsses->sendEmail( $message );
} catch ( Exception $e ) {
return $e->getMessage();
}
}
return true;
}
/**
* Send the email to the user
*
* @param $post_data
*
* @return bool|string
* @throws Exception
*
*/
public function sendEmail( $post_data ) {
$awsses = $this->get_api();
$credentials = $this->get_credentials();
$asset = get_post( $post_data['_asset_group'] );
if ( empty( $asset ) || ! ( $asset instanceof WP_Post ) || $asset->post_status !== 'publish' ) {
throw new Exception( sprintf( __( 'Invalid Asset Group: %s. Check if it exists or was trashed.', 'thrive-dash' ), $post_data['_asset_group'] ) );
}
$files = get_post_meta( $post_data['_asset_group'], 'tve_asset_group_files', true );
$subject = get_post_meta( $post_data['_asset_group'], 'tve_asset_group_subject', true );
if ( $subject == "" ) {
$subject = get_option( 'tve_leads_asset_mail_subject' );
}
$from_email = $credentials['email'];
$html_content = $asset->post_content;
if ( $html_content == "" ) {
$html_content = get_option( 'tve_leads_asset_mail_body' );
}
$attached_files = array();
foreach ( $files as $file ) {
$attached_files[] = '<a href="' . $file['link'] . '">' . $file['link_anchor'] . '</a><br/>';
}
$the_files = implode( '<br/>', $attached_files );
$html_content = str_replace( '[asset_download]', $the_files, $html_content );
$html_content = str_replace( '[asset_name]', $asset->post_title, $html_content );
$subject = str_replace( '[asset_name]', $asset->post_title, $subject );
if ( isset( $post_data['name'] ) && ! empty( $post_data['name'] ) ) {
$html_content = str_replace( '[lead_name]', $post_data['name'], $html_content );
$subject = str_replace( '[lead_name]', $post_data['name'], $subject );
} else {
$html_content = str_replace( '[lead_name]', '', $html_content );
$subject = str_replace( '[lead_name]', '', $subject );
}
$text_content = strip_tags( $html_content );
$messsage = new Thrive_Dash_Api_Awsses_SimpleEmailServiceMessage();
$messsage->addTo( $post_data['email'] );
$messsage->setFrom( $from_email );
$messsage->setSubject( $subject );
$messsage->setMessageFromString( $text_content, $html_content );
return $awsses->sendEmail( $messsage );
}
/**
* instantiate the API code required for this connection
*
* @return mixed
*/
protected function get_api_instance() {
switch ( $this->param( 'country' ) ) {
case 'ireland':
$country = "email.eu-west-1.amazonaws.com";
break;
case 'useast':
$country = "email.us-east-1.amazonaws.com";
break;
case 'uswest':
$country = "email.us-west-2.amazonaws.com";
break;
}
return new Thrive_Dash_Api_Awsses( $this->param( 'key' ), $this->param( 'secretkey' ), $country );
}
/**
* get all Subscriber Lists from this API service
*
* @return array|bool for error
*/
protected function _get_lists() {
}
/**
* add a contact to a list
*
* @param mixed $list_identifier
* @param array $arguments
*
* @return mixed
*/
public function add_subscriber( $list_identifier, $arguments ) {
}
}