Spaces:
Sleeping
Sleeping
File size: 7,713 Bytes
495529d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 |
# Ticket Comments - Implementation Summary
## โ
What Was Implemented
### 1. Service Layer (`ticket_comment_service.py`)
- โ
`create_comment()` - Create comments with validation
- โ
`update_comment()` - Edit comments (author only)
- โ
`delete_comment()` - Soft delete (author or PM)
- โ
`get_comment()` - Get single comment
- โ
`list_comments()` - Paginated list with filtering
- โ
`get_comment_replies()` - Load threaded replies
- โ
`_to_response()` - Convert model to response schema
### 2. API Endpoints (`ticket_comments.py`)
- โ
`POST /tickets/{ticket_id}/comments` - Create comment
- โ
`PUT /comments/{comment_id}` - Update comment
- โ
`DELETE /comments/{comment_id}` - Delete comment
- โ
`GET /comments/{comment_id}` - Get comment
- โ
`GET /tickets/{ticket_id}/comments` - List comments
- โ
`GET /comments/{comment_id}/replies` - Get replies
### 3. Features
- โ
**Threading** - Reply to comments via `parent_comment_id`
- โ
**Mentions** - Tag users via `mentioned_user_ids`
- โ
**Attachments** - Link documents via `attachment_document_ids`
- โ
**Edit Tracking** - Track who edited and when
- โ
**Soft Delete** - Preserve data integrity
- โ
**Pagination** - Handle large comment lists
- โ
**Filtering** - By type, internal/external, parent-only
- โ
**Authorization** - Role-based access control
### 4. Validation
- โ
Ticket exists before creating comment
- โ
Parent comment exists for replies
- โ
Mentioned users exist
- โ
Only author can edit their comments
- โ
Author or PM can delete comments
- โ
Comment text not empty
### 5. Documentation
- โ
API documentation with examples
- โ
Testing guide with curl commands
- โ
Error handling documentation
- โ
Best practices guide
---
## ๐ง How It Works
### Threading (Replies)
```
Comment A (parent_comment_id: null)
โโโ Reply B (parent_comment_id: A)
โ โโโ Reply C (parent_comment_id: B)
โโโ Reply D (parent_comment_id: A)
```
**Implementation:**
- Each comment has optional `parent_comment_id`
- `reply_count` computed in `_to_response()`
- Replies loaded separately via `/comments/{id}/replies`
- Replies sorted by `created_at ASC` (oldest first)
### Edit Tracking
**When comment is edited:**
1. `comment_text` updated
2. `is_edited` set to `true`
3. `edited_at` set to current timestamp
4. `edited_by_user_id` set to editor's ID
5. `updated_at` updated
**Original text NOT preserved** (consider version history if needed)
### Soft Delete
**When comment is deleted:**
1. `deleted_at` set to current timestamp
2. Comment excluded from all queries via `deleted_at IS NULL`
3. Data preserved for audit trail
4. Can be restored by setting `deleted_at = NULL`
---
## ๐ฏ Usage Examples
### Field Agent: Add Note
```python
POST /tickets/{ticket_id}/comments
{
"comment_text": "Customer not home, will retry tomorrow",
"is_internal": true,
"comment_type": "update"
}
```
### Dispatcher: Ask Question
```python
POST /tickets/{ticket_id}/comments
{
"comment_text": "@john Can you check the customer location?",
"mentioned_user_ids": ["john-uuid"],
"is_internal": true,
"comment_type": "question"
}
```
### PM: Reply to Question
```python
POST /tickets/{ticket_id}/comments
{
"comment_text": "Location verified, proceed with installation",
"parent_comment_id": "question-uuid",
"is_internal": true,
"comment_type": "resolution"
}
```
### Load Threaded Conversation
```python
# 1. Get top-level comments
GET /tickets/{ticket_id}/comments?parent_only=true
# 2. For each comment with reply_count > 0:
GET /comments/{comment_id}/replies
```
---
## ๐ Security
### Authorization Matrix
| Action | Field Agent | Dispatcher | PM | Platform Admin |
|--------|-------------|------------|----|----|
| Create comment | โ
| โ
| โ
| โ
|
| View comments | โ
| โ
| โ
| โ
|
| Edit own comment | โ
| โ
| โ
| โ
|
| Edit others' comment | โ | โ | โ | โ |
| Delete own comment | โ
| โ
| โ
| โ
|
| Delete others' comment | โ | โ | โ
| โ
|
### Validation Checks
1. โ
Ticket exists
2. โ
Parent comment exists (for replies)
3. โ
Mentioned users exist
4. โ
User owns comment (for edit)
5. โ
User is author or PM (for delete)
6. โ
Comment text not empty
---
## ๐ Database Impact
### Indexes (Already in schema.sql)
```sql
CREATE INDEX idx_ticket_comments_ticket ON ticket_comments(ticket_id, deleted_at);
CREATE INDEX idx_ticket_comments_parent ON ticket_comments(parent_comment_id);
CREATE INDEX idx_ticket_comments_user ON ticket_comments(user_id);
CREATE INDEX idx_ticket_comments_created ON ticket_comments(created_at DESC);
```
### Storage Estimate
- Average comment: ~200 bytes
- 1000 comments: ~200 KB
- 1 million comments: ~200 MB
---
## ๐ Performance
### Query Optimization
- โ
Use `joinedload()` for relationships
- โ
Filter `deleted_at IS NULL` in all queries
- โ
Paginate large result sets
- โ
Index on `ticket_id`, `parent_comment_id`, `user_id`
### Expected Response Times
- Create comment: < 100ms
- List comments (50 items): < 200ms
- Get replies: < 100ms
- Update comment: < 100ms
- Delete comment: < 100ms
---
## ๐ฎ Future Enhancements
### Phase 2: Notifications
- [ ] Notify mentioned users
- [ ] Notify ticket assignees on external comments
- [ ] Real-time updates via SSE
### Phase 3: Rich Features
- [ ] Markdown support
- [ ] Code blocks
- [ ] File attachments (not just links)
- [ ] Emoji reactions
### Phase 4: Advanced
- [ ] Full-text search
- [ ] Comment version history
- [ ] Bulk operations
- [ ] Comment templates
---
## ๐ Known Limitations
1. **No version history** - Edits overwrite original text
2. **No notifications** - Mentions don't trigger notifications yet
3. **No rich text** - Plain text only
4. **No reactions** - Can't like/emoji comments
5. **No search** - Must paginate to find comments
---
## ๐ Testing Checklist
- [x] Create comment on valid ticket
- [x] Create reply to comment
- [x] Update own comment
- [x] Delete own comment
- [x] List comments with pagination
- [x] Get comment replies
- [x] Filter by is_internal
- [x] Filter by comment_type
- [x] Filter parent_only
- [x] Validate ticket exists
- [x] Validate parent comment exists
- [x] Validate mentioned users exist
- [x] Prevent editing others' comments
- [x] Allow PM to delete any comment
- [x] Soft delete preserves data
- [x] Reply count accurate
- [x] Edit tracking works
---
## ๐ Best Practices
### For Developers
1. Always filter `deleted_at IS NULL`
2. Use `joinedload()` for relationships
3. Validate foreign keys before creating
4. Use transactions for data consistency
5. Log all operations for debugging
### For Users
1. Keep comments concise and actionable
2. Use appropriate comment types
3. Mark sensitive info as internal
4. Reply to comments for context
5. Edit instead of delete when possible
---
## ๐ Support
### Common Issues
**Q: Comments not appearing?**
A: Check `deleted_at IS NULL` filter
**Q: Can't edit comment?**
A: Only author can edit their own comments
**Q: Reply count wrong?**
A: Ensure subquery counts `deleted_at IS NULL`
**Q: Mentions not working?**
A: Notifications not implemented yet (Phase 2)
### Contact
- Backend issues: Check logs in `src/app/services/ticket_comment_service.py`
- API issues: Check `src/app/api/v1/ticket_comments.py`
- Database issues: Check indexes and constraints
---
## ๐จโ๐ป Frontend Team Guide
**See [FRONTEND.md](./FRONTEND.md) for:**
- 6 endpoints with exact request/response formats
- UI patterns (simple list, threaded view, pagination)
- React component examples
- Common use cases
- Error handling
- Performance tips
- Quick reference (no fluff)
|