| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.3/wp-content/plugins/js_composer/modules/ai/ |
Upload File : |
<?php
/**
* Code generator for AI engine.
*
* @since 7.2
*/
if ( ! defined( 'ABSPATH' ) ) {
die( '-1' );
}
/**
* Class respond for a code generation with AI engine.
*
* @since 7.2
*/
class Vc_Ai_Code_Generator {
/**
* AI API connector instance.
*
* @since 7.2
* @var Vc_Ai_Api_Connector
*/
public $api_connector;
/**
* Part of url api that for a current generator.
*
* @since 7.2
* @var string
*/
public $api_url_part = 'content';
/**
* Vc_Ai_Text_Generator constructor.
*
* @since 7.2
*/
public function __construct() {
$this->api_connector = new Vc_Ai_Api_Connector();
}
/**
* Generate content with AI from initial data.
*
* @since 7.2
* @param array $data
* @return string | WP_Error
*/
public function generate( $data ) {
$data = $this->api_connector->convert_data_to_request_format( $data );
if ( ! $this->check_required_fields( $data ) ) {
return new WP_Error(
'ai_error_invalid_user_data',
esc_html__( 'An error occurred when requesting a response from WPBakery AI (Code: 619): not all required fields provided', 'js_composer' )
);
}
$data = $this->edit_data_before_request( $data );
return $this->api_connector->set_api_response_data( $data, $this->api_url_part )->get_message_from_data();
}
/**
* Check if all form required fields are provided.
*
* @param array $data
* @return bool
*/
public function check_required_fields( $data ) {
if ( ! is_array( $data ) ) {
return false;
}
$required_fields_list = [
'prompt',
];
foreach ( $required_fields_list as $required_field ) {
if ( ! array_key_exists( $required_field, $data ) ) {
return false;
}
}
return true;
}
/**
* For some userdata we should adjust data before send to API.
*
* @param array $data
* @return array
*/
public function edit_data_before_request( $data ) {
if ( isset( $data['prompt'] ) ) {
// we should cut the prompt for all data excerpt translated and improved.
$words = preg_split( '/\s+/', $data['prompt'] );
if ( count( $words ) > 2000 ) {
$truncated_words = array_slice( $words, 0, 2000 );
$data['prompt'] = implode( ' ', $truncated_words );
}
}
return $data;
}
}