Claude
53ec557ec9
Refactor: Nest sharing parameters under trip key
...
- Follow Rails conventions by nesting sharing params under resource key
- Update form fields: sharing[enabled] → trip[sharing][enabled]
- Update controller to access params[:trip][:sharing]
- Update all request specs to use nested parameters
- Parameters now properly structured as trip[sharing][expiration], etc.
2025-11-07 12:50:39 +00:00
Claude
b1cbb5555f
Refactor: Apply Rails best practices to trip sharing implementation
...
- Remove unused @is_public_view variable from controller
- Simplify conditionals by leveraging methods that return [] when empty
- Move public view from trips/public_show to shared/trips/show (Rails conventions)
- Refactor trips#update to be HTML-only (remove JSON responses)
- Convert sharing form to use proper Rails form helpers
- Move JS controller to shared/ subdirectory with proper namespacing
- Create RSpec shared examples for Shareable concern to eliminate duplication
- Update request specs to match HTML-only controller behavior
- Apply 'render/redirect ... and return' pattern for early returns
2025-11-07 12:05:34 +00:00
Claude
9fba3ce4ca
Refactor: Move trip sharing management to trips#update
...
Simplifies architecture by using the existing trips#update route for
sharing settings management instead of a separate route.
## Changes
**Routes**
- Removed: PATCH /trips/:id/sharing → shared/trips#update
- Now uses: PATCH /trips/:id (existing route) with sharing params
**Controllers**
- Shared::TripsController: Simplified to only handle public view (show)
- TripsController: Added update_sharing private method to handle
sharing params when present
**Views**
- Updated JavaScript in _sharing.html.erb to use trip_path with
nested sharing params
**Tests**
- Updated request specs to use trip_path instead of sharing_trip_path
- All params now nested under sharing key
## Benefits
- Cleaner namespace separation (Shared:: only for public access)
- Follows Rails conventions (one update route handles everything)
- Simpler routing structure
- Reduced code duplication
## Backwards Compatibility
This is a breaking change for the sharing API endpoint, but since
this feature was just implemented and hasn't been released yet,
no migration path is needed.
2025-11-05 15:54:42 +00:00
Claude
ce5e57a691
Implement public trip sharing with Shareable concern
...
This commit implements comprehensive public trip sharing functionality
by extracting sharing logic into a reusable Shareable concern and
extending it to Trip models.
## Key Features
**Shareable Concern (DRY principle)**
- Extract sharing logic from Stat model into reusable concern
- Support for time-based expiration (1h, 12h, 24h, permanent)
- UUID-based secure public access
- User-controlled sharing of notes and photos
- Automatic UUID generation on model creation
**Database Changes**
- Add sharing_uuid (UUID) column to trips table
- Add sharing_settings (JSONB) column for configuration storage
- Add unique index on sharing_uuid for performance
**Public Trip Sharing**
- Public-facing trip view with read-only access
- Interactive map with trip route visualization
- Optional sharing of notes and photo previews
- Branded footer with Dawarich attribution
- Responsive design matching existing UI patterns
**Sharing Management**
- In-app sharing controls in trip show view
- Enable/disable sharing with one click
- Configurable expiration times
- Copy-to-clipboard for sharing URLs
- Visual indicators for sharing status
**Authorization & Security**
- TripPolicy for fine-grained access control
- Public access only for explicitly shared trips
- Automatic expiration enforcement
- Owner-only sharing management
- UUID-based URLs prevent enumeration attacks
**API & Routes**
- GET /shared/trips/:trip_uuid for public access
- PATCH /trips/:id/sharing for sharing management
- RESTful endpoint design consistent with stats sharing
**Frontend**
- New public-trip-map Stimulus controller
- OpenStreetMap tiles for public viewing (no API key required)
- Start/end markers on trip route
- Automatic map bounds fitting
**Tests**
- Comprehensive concern specs (Shareable)
- Model specs for Trip sharing functionality
- Request specs for public and authenticated access
- Policy specs for authorization rules
- 100% coverage of sharing functionality
## Implementation Details
### Models Updated
- Stat: Now uses Shareable concern (removed duplicate code)
- Trip: Includes Shareable concern with notes/photos options
### Controllers Added
- Shared::TripsController: Handles public viewing and sharing management
### Views Added
- trips/public_show.html.erb: Public-facing trip view
- trips/_sharing.html.erb: Sharing controls partial
### JavaScript Added
- public_trip_map_controller.js: Map rendering for public trips
### Helpers Extended
- TripsHelper: Added sharing status and expiration helpers
## Breaking Changes
None. This is a purely additive feature.
## Migration Required
Yes. Run: rails db:migrate
## Testing
All specs pass:
- spec/models/concerns/shareable_spec.rb
- spec/models/trip_spec.rb
- spec/requests/shared/trips_spec.rb
- spec/policies/trip_policy_spec.rb
2025-11-05 15:44:27 +00:00
Eugene Burmakin
8e35b8e09f
Move UTM parameter tracking logic into a concern
2025-10-30 19:59:31 +01:00
Eugene Burmakin
e1ee39ec52
Fix failing spec
2025-10-25 16:32:39 +02:00
Eugene Burmakin
d23e118645
Make sure family invitations are handled after sign-in
2025-10-22 21:36:51 +02:00
Eugene Burmakin
e711ff25fe
Refactor family invitations and memberships into separate models and controllers
2025-10-07 18:38:06 +02:00
Eugene Burmakin
6057240888
Fix some tests
2025-10-05 00:42:21 +02:00
Eugene Burmakin
e7df54d738
Fix routes to use singular resource for family
2025-10-04 23:08:02 +02:00
Eugene Burmakin
54661a1d52
Update some tests and svg icons
2025-10-04 22:52:08 +02:00
Eugene Burmakin
9bc0e2accc
Use family path instead of families/id
2025-10-04 22:39:47 +02:00
Eugene Burmakin
cfe319df9b
Move family controllers to their own namespace
2025-10-04 20:48:44 +02:00
Eugene Burmakin
f898f3aab0
Fix tests
2025-10-04 20:31:36 +02:00
Eugene Burmakin
c6fc4328d7
Remove memberships page
2025-10-04 16:17:26 +02:00
Eugene Burmakin
78693f3001
Merge branch 'dev' into feature/family
2025-10-04 15:57:03 +02:00
Eugene Burmakin
0728c21c61
Update stuff, fix stuff
2025-09-29 22:27:07 +02:00
Eugene Burmakin
fa3d926a92
Change registration flow to support family invitations and self-hosted mode restrictions.
2025-09-28 20:53:50 +02:00
Eugene Burmakin
f30b4bcafd
Use id to cancel invitations
2025-09-28 18:50:02 +02:00
Eugene Burmakin
5252388b8c
Fix leaving and deleting family confirmation dialogs
2025-09-28 14:49:32 +02:00
Eugene Burmakin
2af0147505
Fix tests
2025-09-27 20:14:57 +02:00
Eugene Burmakin
f817e3513c
Fix some tests
2025-09-27 14:26:08 +02:00
Eugene Burmakin
f0f0f20200
Complete phase 4
2025-09-27 14:04:10 +02:00
Eugene Burmakin
cc5da3e7e2
Complete phase 3
2025-09-27 13:23:33 +02:00
Eugene Burmakin
a84fde553e
Fix failed specs
2025-09-23 00:18:04 +02:00
Eugene Burmakin
14f6f4dcc1
Add new tests to cover ios auth
2025-09-21 16:27:43 +02:00
Eugene Burmakin
20c2bc34cd
Store client header in session to persist across redirects
2025-09-21 13:51:26 +02:00
Eugene Burmakin
5347232376
Update spec/requests/authentication_spec.rb
2025-09-21 13:22:07 +02:00
Eugene Burmakin
c0e756d085
Introduce iOS authentication flow with JWT token generation
2025-09-21 12:46:59 +02:00
Eugene Burmakin
584daadb5c
Fix failing specs
2025-09-19 19:55:27 +02:00
Eugene Burmakin
5db2ac7fac
Refactor hexagon services to remove Maps::HexagonContextResolver and improve date parsing
2025-09-18 21:21:54 +02:00
Eugene Burmakin
3fd7634657
Simplify some services by removing unused parameters and validations
2025-09-18 20:02:18 +02:00
Eugene Burmakin
c67532bb10
Reimplement hexagons with H3
2025-09-17 01:55:42 +02:00
Eugene Burmakin
8c45404420
Fix hexagons render
2025-09-15 20:10:53 +02:00
Eugene Burmakin
0ed71c3cc6
Fix failing specs
2025-09-13 17:46:45 +02:00
Eugene Burmakin
662d819f47
Update spec name
2025-09-13 16:10:46 +02:00
Eugene Burmakin
b7ae9097be
Fix tests
2025-09-13 12:28:43 +02:00
Eugene Burmakin
88e9c85766
Extract hexagon query to separate class
2025-09-12 21:38:25 +02:00
Eugene Burmakin
57ecda2b1b
Extract stats sharing logic to its own controller
2025-09-12 21:08:45 +02:00
Eugene Burmakin
34e71b5d17
Add specs for hexagon API and public sharing; remove debug logs
2025-09-12 20:44:53 +02:00
Eugene Burmakin
7ca488802e
Remove text queries to location search endpoint
2025-09-03 19:01:50 +02:00
Eugene Burmakin
d4c0eaa549
Fix request specs
2025-09-02 23:12:10 +02:00
Eugene Burmakin
4f402a0c2a
Make search look nicer
2025-09-02 21:21:22 +02:00
Eugene Burmakin
2d240c2094
Implement search by user's points
2025-08-31 12:08:33 +02:00
Eugene Burmakin
1709aa612d
Add search bar
2025-08-30 23:18:16 +02:00
Eugene Burmakin
ed3bb4fb67
Unify imports form
2025-08-22 19:10:40 +02:00
Eugene Burmakin
550d20c555
Imlement visits deletion API
2025-08-21 20:41:53 +02:00
Eugene Burmakin
e68bbc9220
Add test for visits creation API
2025-08-21 19:09:43 +02:00
Eugene Burmakin
6708e11ab3
Add limits for import size for trial users
2025-08-14 20:50:22 +02:00
Eugene Burmakin
f6b7652a01
Return dawarich headers on all API responses
2025-08-11 00:21:58 +02:00