| Server IP : 146.59.209.152 / Your IP : 216.73.216.152 Web Server : Apache System : Linux webm009.cluster131.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : monpetu ( 144298) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/monpetu/www/ipprint/wp-content/plugins/sureforms/inc/ai-form-builder/ |
Upload File : |
<?php
/**
* SureForms - AI Form Builder.
*
* @package sureforms
* @since 0.0.8
*/
namespace SRFM\Inc\AI_Form_Builder;
use SRFM\Inc\Traits\Get_Instance;
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* SureForms AI Form Builder Class.
*/
class AI_Form_Builder {
use Get_Instance;
/**
* Fetches ai data from the middleware server
*
* @param \WP_REST_Request $request request object.
* @since 0.0.8
* @return void
*/
public function generate_ai_form( $request ) {
// Get the params.
$params = $request->get_params();
// If the message array doesn't exist, abandon ship.
if ( empty( $params['message_array'] ) || ! is_array( $params['message_array'] ) ) {
wp_send_json_error( [ 'message' => __( 'The message array was not supplied', 'sureforms' ) ] );
}
// Set the token count to 0, and create messages array.
$messages = [];
// Start with the last message - going upwards until the token count hits 2000.
foreach ( array_reverse( $params['message_array'] ) as $current_message ) {
// If the message content doesn't exist, skip it.
if ( empty( $current_message['content'] ) ) {
continue;
}
// Add the message to the start of the messages to send to the SCS Middleware.
array_unshift( $messages, $current_message );
}
// Bail if no usable prompt remained after filtering empty messages.
if ( empty( $messages ) || empty( $messages[0]['content'] ) ) {
wp_send_json_error( [ 'message' => __( 'No prompt was supplied.', 'sureforms' ) ] );
}
// Server-side prompt-length cap. The UI enforces a 2000-char limit via maxlength, but that
// is client-side only and can be bypassed by a crafted request, so mirror it here. This is
// cost/resource hardening — output is always escaped, so this is not an XSS concern.
if ( mb_strlen( (string) $messages[0]['content'] ) > 2000 ) {
wp_send_json_error( [ 'message' => __( 'The prompt is too long. Please shorten it and try again.', 'sureforms' ) ] );
}
// Get the response from the endpoint.
$response = AI_Helper::get_chat_completions_response(
apply_filters(
'srfm_ai_form_generator_body',
[
'query' => $messages[0]['content'],
],
$params
)
);
// check if response is an array if not then send error.
if ( ! is_array( $response ) ) {
wp_send_json_error( [ 'message' => __( 'The SureForms AI Middleware encountered an error.', 'sureforms' ) ] );
}
if ( ! empty( $response['error'] ) ) {
// If the response has an error, handle it and report it back.
// We sanitize before returning so OpenAI / middleware infra details
// (URLs, request IDs, model names, account IDs) do not leak to the
// client; the raw message is preserved in the debug log via
// AI_Helper::sanitize_ai_error_message() when WP_DEBUG[_LOG] is on.
$raw = '';
if ( is_array( $response['error'] ) && ! empty( $response['error']['message'] ) ) {
// If any error message received from OpenAI.
$raw = $response['error']['message'];
} elseif ( is_string( $response['error'] ) ) {
// If any error message received from the middleware server.
$raw = $response['error'];
}
$message = AI_Helper::sanitize_ai_error_message( $raw, 'generate/form' );
if ( '' === $message ) {
$message = __( 'The SureForms AI Middleware encountered an error.', 'sureforms' );
}
wp_send_json_error( [ 'message' => $message ] );
}
// Validate the expected form structure piece by piece so we can return specific errors.
if ( empty( $response['form'] ) || ! is_array( $response['form'] ) ) {
wp_send_json_error(
[
'message' => __( 'The AI did not return a form. Please refine your prompt and try again.', 'sureforms' ),
]
);
}
if ( empty( $response['form']['formTitle'] ) ) {
wp_send_json_error(
[
'message' => __( 'The AI response is missing a form title. Please try again.', 'sureforms' ),
]
);
}
if (
empty( $response['form']['formFields'] ) ||
! is_array( $response['form']['formFields'] )
) {
wp_send_json_error(
[
'message' => __( 'The AI was unable to generate form fields. Please try again.', 'sureforms' ),
]
);
}
wp_send_json_success( $response );
}
}