* Decouple title from title block * fix lint * remove dry run for FormTitleMigration * Skip form title migration for forms with hidden titles * Refactor AI Form Generation with Dedicated Prompt Services - Extract AI form generation logic from GenerateTemplate command into dedicated prompt service classes - Update GenerateAiForm job to use new prompt generation services - Improve GptCompleter with more robust error handling and token tracking - Add error field to AiFormCompletion model for better error logging - Simplify command signature from 'ai:make-form-template' to 'form:generate' * Consolidate Template Metadata Generation with Unified Prompt Service - Create GenerateTemplateMetadataPrompt to centralize template metadata generation - Update GenerateTemplate command to use new consolidated metadata generation approach - Enhance GptCompleter to support strict JSON schema validation - Increase form prompt max length to support more complex form descriptions - Refactor form generation to simplify metadata extraction and processing * Implement Form Mode Strategy for Flexible Form Rendering - Introduce FormModeStrategy to centralize form rendering logic - Add support for different form modes: LIVE, PREVIEW, TEST, EDIT, PREFILL - Refactor components to use mode-based rendering strategy - Remove legacy boolean props like adminPreview and creating - Enhance form component flexibility and reusability * Refine Form Mode Strategy Display Behavior - Update FormModeStrategy to hide hidden fields in PREVIEW mode - Add FormMode getter in UrlFormPrefill component for mode-specific rendering - Clarify mode-specific validation and display logic in form strategies * Enhance Form Template Generation with Advanced Field Options - Update GenerateTemplate command to use front_url for template URL output - Expand GenerateFormPrompt with comprehensive field configuration options - Add support for advanced field types: date with time, toggle switches, radio/checkbox selections - Introduce field width configuration and HTML formatting for text elements - Re-enable select, multi-select, and matrix field type definitions with enhanced configurations * Remove Deprecated Template Metadata Generation Services - Delete multiple AI prompt services related to template metadata generation - Simplify GenerateTemplate command to use default values instead of complex metadata generation - Remove GenerateTemplateMetadataPrompt and related classes like GenerateTemplateDescriptionPrompt, GenerateTemplateImageKeywordsPrompt, etc. - Update form template generation to use basic fallback metadata generation approach * Restore GenerateTemplateMetadataPrompt for Comprehensive Template Generation - Reintroduce GenerateTemplateMetadataPrompt to replace default metadata generation - Update GenerateTemplate command to use consolidated metadata generation approach - Extract detailed metadata components including title, description, industries, and image search query - Improve template generation with more dynamic and AI-generated metadata * Refactor Template Preview Section Layout - Remove unnecessary nested div in template preview section - Simplify HTML structure for the template preview component - Maintain existing styling and functionality while improving code readability * Refactor Constructor and Code Formatting in AI Form Generation and Prompt Classes - Updated the constructor in GenerateAiForm.php to use a block structure for improved readability and consistency. - Added a blank line in the Prompt.php file to enhance code formatting and maintain consistency with PHP coding standards. - Modified the migration file to use a more concise class declaration syntax, improving clarity. These changes aim to enhance code readability and maintainability across the affected files. --------- Co-authored-by: Julien Nahum <julien@nahum.net>
158 lines
6.2 KiB
PHP
158 lines
6.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use App\Http\Requests\Workspace\CustomDomainRequest;
|
|
use App\Models\Forms\Form;
|
|
use App\Rules\FormPropertyLogicRule;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
/**
|
|
* Abstract class to validate create/update forms
|
|
*
|
|
* Class UserFormRequest
|
|
*/
|
|
abstract class UserFormRequest extends \Illuminate\Foundation\Http\FormRequest
|
|
{
|
|
protected function prepareForValidation()
|
|
{
|
|
$data = $this->all();
|
|
|
|
if (isset($data['properties']) && is_array($data['properties'])) {
|
|
$data['properties'] = array_map(function ($property) {
|
|
if (isset($property['help']) && is_string($property['help']) && strip_tags($property['help']) === '') {
|
|
$property['help'] = null;
|
|
}
|
|
return $property;
|
|
}, $data['properties']);
|
|
}
|
|
|
|
$this->merge($data);
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
// Form Info
|
|
'title' => 'required|string|max:60',
|
|
'description' => 'nullable|string|max:2000',
|
|
'tags' => 'nullable|array',
|
|
'visibility' => ['required', Rule::in(Form::VISIBILITY)],
|
|
|
|
// Customization
|
|
'language' => ['required', Rule::in(Form::LANGUAGES)],
|
|
'font_family' => 'string|nullable',
|
|
'theme' => ['required', Rule::in(Form::THEMES)],
|
|
'width' => ['required', Rule::in(Form::WIDTHS)],
|
|
'size' => ['required', Rule::in(Form::SIZES)],
|
|
'layout_rtl' => 'boolean',
|
|
'border_radius' => ['required', Rule::in(Form::BORDER_RADIUS)],
|
|
'cover_picture' => 'url|nullable',
|
|
'logo_picture' => 'url|nullable',
|
|
'dark_mode' => ['required', Rule::in(Form::DARK_MODE_VALUES)],
|
|
'color' => 'required|string',
|
|
'uppercase_labels' => 'required|boolean',
|
|
'no_branding' => 'required|boolean',
|
|
'transparent_background' => 'required|boolean',
|
|
'closes_at' => 'date|nullable',
|
|
'closed_text' => 'string|nullable',
|
|
|
|
// Custom Code
|
|
'custom_code' => 'string|nullable',
|
|
|
|
// Submission
|
|
'submit_button_text' => 'string|min:1|max:50',
|
|
're_fillable' => 'boolean',
|
|
're_fill_button_text' => 'string|min:1|max:50',
|
|
'submitted_text' => 'string|max:2000',
|
|
'redirect_url' => 'nullable|string',
|
|
'database_fields_update' => 'nullable|array',
|
|
'max_submissions_count' => 'integer|nullable|min:1',
|
|
'max_submissions_reached_text' => 'string|nullable',
|
|
'editable_submissions' => 'boolean|nullable',
|
|
'editable_submissions_button_text' => 'string|min:1|max:50',
|
|
'confetti_on_submission' => 'boolean',
|
|
'show_progress_bar' => 'boolean',
|
|
'auto_save' => 'boolean',
|
|
'auto_focus' => 'boolean',
|
|
|
|
// Properties
|
|
'properties' => 'required|array',
|
|
'properties.*.id' => 'required',
|
|
'properties.*.name' => 'required',
|
|
'properties.*.type' => 'required',
|
|
'properties.*.placeholder' => 'sometimes|nullable',
|
|
'properties.*.prefill' => 'sometimes|nullable',
|
|
'properties.*.help' => 'sometimes|nullable',
|
|
'properties.*.help_position' => ['sometimes', Rule::in(['below_input', 'above_input'])],
|
|
'properties.*.hidden' => 'boolean|nullable',
|
|
'properties.*.required' => 'boolean|nullable',
|
|
'properties.*.multiple' => 'boolean|nullable',
|
|
'properties.*.timezone' => 'sometimes|nullable',
|
|
'properties.*.width' => ['sometimes', Rule::in(['full', '1/2', '1/3', '2/3', '1/3', '3/4', '1/4'])],
|
|
'properties.*.align' => ['sometimes', Rule::in(['left', 'center', 'right', 'justify'])],
|
|
'properties.*.allowed_file_types' => 'sometimes|nullable',
|
|
'properties.*.use_toggle_switch' => 'boolean|nullable',
|
|
|
|
// Logic
|
|
'properties.*.logic' => ['array', 'nullable', new FormPropertyLogicRule()],
|
|
|
|
// Form blocks
|
|
'properties.*.content' => 'sometimes|nullable',
|
|
|
|
// Text field
|
|
'properties.*.multi_lines' => 'boolean|nullable',
|
|
'properties.*.max_char_limit' => 'integer|nullable|min:1',
|
|
'properties.*.show_char_limit ' => 'boolean|nullable',
|
|
'properties.*.secret_input' => 'boolean|nullable',
|
|
|
|
// Date field
|
|
'properties.*.with_time' => 'boolean|nullable',
|
|
'properties.*.date_range' => 'boolean|nullable',
|
|
'properties.*.prefill_today' => 'boolean|nullable',
|
|
'properties.*.disable_past_dates' => 'boolean|nullable',
|
|
'properties.*.disable_future_dates' => 'boolean|nullable',
|
|
|
|
// Select / Multi Select field
|
|
'properties.*.allow_creation' => 'boolean|nullable',
|
|
'properties.*.without_dropdown' => 'boolean|nullable',
|
|
|
|
// Advanced Options
|
|
'properties.*.generates_uuid' => 'boolean|nullable',
|
|
'properties.*.generates_auto_increment_id' => 'boolean|nullable',
|
|
|
|
// For file (min and max)
|
|
'properties.*.max_file_size' => 'min:1|numeric',
|
|
|
|
// Security & Privacy
|
|
'can_be_indexed' => 'boolean',
|
|
'password' => 'sometimes|nullable',
|
|
'use_captcha' => 'boolean',
|
|
'captcha_provider' => ['sometimes', Rule::in(['recaptcha', 'hcaptcha'])],
|
|
|
|
// Custom SEO
|
|
'seo_meta' => 'nullable|array',
|
|
'custom_domain' => 'sometimes|nullable|regex:' . CustomDomainRequest::CUSTOM_DOMAINS_REGEX,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get the validation messages that apply to the request.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function messages()
|
|
{
|
|
return [
|
|
'properties.*.name.required' => 'The form block number :position is missing a name.',
|
|
'properties.*.type.required' => 'The form block number :position is missing a type.',
|
|
'properties.*.max_char_limit.min' => 'The form block number :position max character limit must be at least 1 OR Empty'
|
|
];
|
|
}
|
|
}
|