feat: public intake forms with embed and submission handling (#261)#308
Draft
rubenvdlinde wants to merge 2 commits intodevelopmentfrom
Draft
feat: public intake forms with embed and submission handling (#261)#308rubenvdlinde wants to merge 2 commits intodevelopmentfrom
rubenvdlinde wants to merge 2 commits intodevelopmentfrom
Conversation
Added traceability tags to IntakeFormService, PublicFormController, and IntakeFormController classes and their public methods to link back to openspec/changes/public-intake-forms/tasks.md. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
All implementation tasks have been completed: - Schema definitions added to pipelinq_register.json - Backend services, controllers, and routes implemented - Frontend views and store registrations completed - Navigation and routing configured Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
Contributor
Quality Report — ConductionNL/pipelinq @
|
| Check | PHP | Vue | Security | License | Tests |
|---|---|---|---|---|---|
| lint | ✅ | ||||
| phpcs | ❌ | ||||
| phpmd | ✅ | ||||
| psalm | ✅ | ||||
| phpstan | ✅ | ||||
| phpmetrics | ✅ | ||||
| eslint | ✅ | ||||
| stylelint | ✅ | ||||
| composer | ✅ | ✅ 100/100 | |||
| npm | ✅ | ✅ 249/249 | |||
| PHPUnit | ⏭️ | ||||
| Newman | ⏭️ | ||||
| Playwright | ❌ |
Spec coverage: 14% (42 tests / 298 specs)
Quality workflow — 2026-04-20 20:55 UTC
Download the full PDF report from the workflow artifacts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #261
Summary
Implemented a complete public intake form system for Pipelinq enabling external websites to capture leads through embedded forms. The implementation includes form schema definitions, public submission endpoints with honeypot spam detection and rate limiting, service layer for contact/lead creation, and a full-featured Vue.js UI for form management with field builder, submission tracking, and CSV export capabilities.
Spec Reference
openspec/changes/public-intake-forms/design.mdChanges
lib/Settings/pipelinq_register.json— added intakeForm and intakeSubmission schema definitionslib/Service/IntakeFormService.php— service for submission processing, validation, spam/rate limit checking, field mapping, embed code generation, and CSV exportlib/Controller/PublicFormController.php— public (no-auth) endpoints for form rendering and submission with CORS supportlib/Controller/IntakeFormController.php— authenticated endpoints for embed code, submission list, and CSV exportappinfo/routes.php— added public and authenticated form routessrc/store/store.js— registered intakeForm and intakeSubmission object typessrc/router/index.js— added form management routessrc/navigation/MainMenu.vue— added Forms settings navigation itemsrc/views/forms/FormManager.vue— list view for all forms with status and action buttonssrc/views/forms/FormBuilder.vue— form builder with drag-and-drop field editor and field-to-entity mappingsrc/views/forms/FormSubmissions.vue— submission history table with export CSV functionalityTest Coverage
All classes and public methods include @SPEC PHPDoc tags linking to openspec/changes/public-intake-forms/tasks.md for full traceability. Implementation builds on existing Pipelinq patterns (ObjectService API, Vue component structure, Nextcloud integration).