mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 20:14:36 +00:00
* feat: add in-product survey system
- SurveyManager: event-based trigger, Space API communication
- Trigger on first successful non-WebSocket response
- Backend API: /api/v1/survey/{pending,respond,dismiss}
- Frontend: floating survey widget with progressive questions
- Flat radio/checkbox style (not dropdown Select)
* fix: persist triggered survey events to disk across restarts
Store triggered events in data/survey_triggered_events.json so that
restarting the process doesn't re-query Space for already-triggered events.
* fix: use metadata table for survey event persistence instead of file
Store triggered events in the existing metadata KV table
(key='survey_triggered_events') instead of a standalone JSON file.
* fix: ruff format and prettier fixes
48 lines
1.9 KiB
Python
48 lines
1.9 KiB
Python
import quart
|
|
|
|
from .. import group
|
|
|
|
|
|
@group.group_class('survey', '/api/v1/survey')
|
|
class SurveyRouterGroup(group.RouterGroup):
|
|
async def initialize(self) -> None:
|
|
@self.route('/pending', methods=['GET'], auth_type=group.AuthType.USER_TOKEN)
|
|
async def _get_pending() -> str:
|
|
"""Get pending survey for the frontend to display."""
|
|
survey = self.ap.survey.get_pending_survey() if self.ap.survey else None
|
|
return self.success(data={'survey': survey})
|
|
|
|
@self.route('/respond', methods=['POST'], auth_type=group.AuthType.USER_TOKEN)
|
|
async def _respond() -> str:
|
|
"""Submit survey response."""
|
|
json_data = await quart.request.json
|
|
survey_id = json_data.get('survey_id')
|
|
answers = json_data.get('answers', {})
|
|
completed = json_data.get('completed', True)
|
|
|
|
if not survey_id:
|
|
return self.fail(1, 'survey_id required')
|
|
|
|
if self.ap.survey:
|
|
ok = await self.ap.survey.submit_response(survey_id, answers, completed)
|
|
if ok:
|
|
return self.success()
|
|
return self.fail(2, 'Failed to submit response')
|
|
return self.fail(3, 'Survey not available')
|
|
|
|
@self.route('/dismiss', methods=['POST'], auth_type=group.AuthType.USER_TOKEN)
|
|
async def _dismiss() -> str:
|
|
"""Dismiss survey."""
|
|
json_data = await quart.request.json
|
|
survey_id = json_data.get('survey_id')
|
|
|
|
if not survey_id:
|
|
return self.fail(1, 'survey_id required')
|
|
|
|
if self.ap.survey:
|
|
ok = await self.ap.survey.dismiss_survey(survey_id)
|
|
if ok:
|
|
return self.success()
|
|
return self.fail(2, 'Failed to dismiss')
|
|
return self.fail(3, 'Survey not available')
|