* Add reCAPTCHA support and update captcha provider handling - Introduced reCAPTCHA as an additional captcha provider alongside hCaptcha. - Updated form request validation to handle different captcha providers based on user selection. - Added a new validation rule for reCAPTCHA. - Modified the forms model to include a 'captcha_provider' field. - Created a migration to add the 'captcha_provider' column to the forms table. - Updated frontend components to support dynamic rendering of captcha based on the selected provider. - Enhanced tests to cover scenarios for both hCaptcha and reCAPTCHA. These changes improve the flexibility of captcha options available to users, enhancing form security and user experience. * fix pint * change comment text * Refactor captcha implementation and integrate new captcha components - Removed the old RecaptchaV2 component and replaced it with a new implementation that supports both reCAPTCHA and hCaptcha through a unified CaptchaInput component. - Updated the OpenForm component to utilize the new CaptchaInput for dynamic captcha rendering based on user-selected provider. - Cleaned up the package.json by removing the deprecated @hcaptcha/vue3-hcaptcha dependency. - Enhanced form initialization to set a default captcha provider. - Improved error handling and cleanup for both reCAPTCHA and hCaptcha scripts. These changes streamline captcha integration, improve maintainability, and enhance user experience by providing a more flexible captcha solution. * Refactor captcha error messages and localization support * Refactor registration process to integrate reCAPTCHA - Replaced hCaptcha implementation with reCAPTCHA in RegisterController and related test cases. - Updated validation rules to utilize g-recaptcha-response instead of h-captcha-response. - Modified RegisterForm component to support reCAPTCHA, including changes to the form data structure and component references. - Enhanced test cases to reflect the new reCAPTCHA integration, ensuring proper validation and response handling. These changes improve security and user experience during the registration process by adopting a more widely used captcha solution. * Fix reCAPTCHA configuration and update RegisterForm styling - Corrected the configuration key for reCAPTCHA in RegisterController from 'services.recaptcha.secret_key' to 'services.re_captcha.secret_key'. - Updated the styling of the Captcha input section in RegisterForm.vue to improve layout consistency. These changes ensure proper reCAPTCHA functionality and enhance the user interface during the registration process. * Fix reCAPTCHA configuration in RegisterTest to use the correct key format - Updated the configuration key for reCAPTCHA in RegisterTest from 'services.recaptcha.secret_key' to 'services.re_captcha.secret_key' to ensure proper functionality during tests. This change aligns the test setup with the recent updates in the reCAPTCHA integration, improving the accuracy of the registration process tests. --------- Co-authored-by: Julien Nahum <julien@nahum.net>
97 lines
1.6 KiB
Plaintext
97 lines
1.6 KiB
Plaintext
APP_NAME="OpnForm"
|
|
APP_ENV=local
|
|
APP_KEY=
|
|
APP_DEBUG=true
|
|
APP_LOG_LEVEL=debug
|
|
APP_URL=http://localhost
|
|
|
|
SELF_HOSTED=true
|
|
|
|
LOG_CHANNEL=stack
|
|
LOG_LEVEL=debug
|
|
|
|
FRONT_URL=https://localhost:3000
|
|
FRONT_API_SECRET=secret
|
|
|
|
DB_CONNECTION=pgsql
|
|
DB_HOST=127.0.0.1
|
|
DB_PORT=5432
|
|
DB_DATABASE=postgres
|
|
DB_USERNAME=postgres
|
|
DB_PASSWORD=postgres
|
|
|
|
FILESYSTEM_DRIVER=s3
|
|
FILESYSTEM_DISK=s3
|
|
|
|
BROADCAST_CONNECTION=log
|
|
CACHE_STORE=file
|
|
QUEUE_CONNECTION=sync
|
|
SESSION_DRIVER=file
|
|
SESSION_LIFETIME=120
|
|
|
|
REDIS_HOST=127.0.0.1
|
|
REDIS_PASSWORD=null
|
|
REDIS_PORT=6379
|
|
|
|
MAIL_MAILER=smtp
|
|
MAIL_HOST=smtp.mailtrap.io
|
|
MAIL_PORT=2525
|
|
MAIL_USERNAME=null
|
|
MAIL_PASSWORD=null
|
|
MAIL_ENCRYPTION=null
|
|
MAIL_FROM_ADDRESS=null
|
|
MAIL_FROM_NAME="${APP_NAME}"
|
|
|
|
AWS_ACCESS_KEY_ID=
|
|
AWS_SECRET_ACCESS_KEY=
|
|
AWS_DEFAULT_REGION=us-east-1
|
|
AWS_BUCKET=
|
|
|
|
PUSHER_APP_ID=
|
|
PUSHER_APP_KEY=
|
|
PUSHER_APP_SECRET=
|
|
PUSHER_APP_CLUSTER=mt1
|
|
|
|
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
|
|
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
|
|
|
|
JWT_TTL=1440
|
|
JWT_SECRET=
|
|
|
|
STRIPE_KEY=
|
|
STRIPE_SECRET=
|
|
|
|
STRIPE_PROD_DEFAULT_PRODUCT_ID=
|
|
STRIPE_PROD_DEFAULT_PRICING_MONTHLY=
|
|
STRIPE_PROD_DEFAULT_PRICING_YEARLY=
|
|
|
|
STRIPE_TEST_DEFAULT_PRODUCT_ID=
|
|
STRIPE_TEST_DEFAULT_PRICING_MONTHLY=
|
|
STRIPE_TEST_DEFAULT_PRICING_YEARLY=
|
|
|
|
H_CAPTCHA_SITE_KEY=
|
|
H_CAPTCHA_SECRET_KEY=
|
|
|
|
RE_CAPTCHA_SITE_KEY=
|
|
RE_CAPTCHA_SECRET_KEY=
|
|
|
|
MUX_WORKSPACE_ID=
|
|
MUX_API_TOKEN=
|
|
|
|
ADMIN_EMAILS=
|
|
TEMPLATE_EDITOR_EMAILS=
|
|
|
|
OPEN_AI_API_KEY=
|
|
|
|
CADDY_SECRET=
|
|
CADDY_AUTHORIZED_IPS=
|
|
|
|
GOOGLE_CLIENT_ID=
|
|
GOOGLE_CLIENT_SECRET=
|
|
GOOGLE_REDIRECT_URL=http://localhost:3000/settings/connections/callback/google
|
|
GOOGLE_AUTH_REDIRECT_URL=http://localhost:3000/oauth/google/callback
|
|
|
|
GOOGLE_FONTS_API_KEY=
|
|
|
|
ZAPIER_ENABLED=false
|