Commit graph

3 commits

Author SHA1 Message Date
Benjamin Slingo 2a5a34a9ed Phase 1 complete: standardize handler layer DRY/KISS patterns
- Eliminate manual ApiResponse construction in 5 handlers
- Add MemberService + sql::members following established pattern
- Create success_message_only() utility for empty responses
- Fix members handler: db::members direct calls → service layer
- Add SanitizeOutput for LoginResponse trait consistency
- All examined handlers now follow Handler → Service → SQL pattern
2025-08-29 09:38:06 -04:00
Benjamin Slingo 24d389cdf0 Initial cleanup: remove backup files, fix major hymnal KISS violation
- Remove 13 backup/unused files cluttering src/
- Fix hymnal search: 200+ line complex SQL → shared sql::hymnal functions
- Fix DRY violation: duplicate bulletin lookup in media handler
- Add systematic 5-phase cleanup plan for remaining violations
- Note: This is just initial cleanup - significant DRY/KISS work remains
2025-08-29 09:23:07 -04:00
Benjamin Slingo ef7e077ae2 Refactor EventService: eliminate duplication, apply DRY/KISS principles
BREAKING: Removed CreateEventRequest - unused for direct creation
ADDED: UpdateEventRequest - clean editing with image support
IMPROVED: EventService now contains business logic, not wrapper calls

Architecture Changes:
- Before: Handler → Service → db::events → SQL (wasteful)
- After:  Handler → Service → Direct SQL + Business Logic (clean)

Key Improvements:
 All EventService methods use direct SQL with real business logic
 Eliminated pointless db::events wrapper functions
 Added missing V2 service methods for consistency
 Fixed handler pattern violations (no more direct db calls)
 Preserved email notifications and HTTP response formats
 Applied sanitization, validation, error handling in services

Changes:
- Remove CreateEventRequest/V2 (unused create paths)
- Add UpdateEventRequest with image field (no redundant thumbnail)
- Migrate all EventService methods to direct SQL + business logic
- Fix v2/events.rs to use proper service methods consistently
- Remove create/update routes and handlers (unused)
- Maintain backward compatibility for all APIs

Next: Apply same DRY/KISS cleanup to BulletinService and others
2025-08-28 22:42:45 -04:00