Files
pos-system/services/chat-service-net
Ho Ngoc Hai efabe49157 refactor(P2): standardize API responses + fix migrations + cleanup DI
Wave 3 — 3 parallel agents fixing P2 code quality issues:

Response format standardization (30 controllers across 8 services):
- Wrapped all raw DTO returns with { success: true, data: result }
- Standardized error responses with { success: false, error: { code, message } }
- Services: chat, social, membership, ads-manager, ads-serving,
  ads-billing, ads-tracking, ads-analytics
- booking-service already compliant (skipped)

Migration fixes:
- ads-billing: Fixed InvoiceId1 spurious FK (explicit HasMany navigation)
- Removed unused IRequestManager DI from: ads-analytics, ads-serving,
  booking, mkt-facebook (classes preserved for future use)

Unused dependencies:
- No Redis/Dapper DI registrations found (only NuGet refs, kept as-is)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 20:34:10 +07:00
..

Chat Service

Real-time chat service with End-to-End Encryption (E2EE) for GoodGo platform.

Documentation / Tài Liệu

EN: English Documentation
VI: Tài liệu Tiếng Việt

English Vietnamese
Architecture Kiến trúc
Quick Start Bắt Đầu Nhanh
API Reference API Reference

Tech Stack

  • .NET 10 - Core framework
  • ASP.NET Core SignalR - Real-time communication
  • PostgreSQL 16+ - Message persistence
  • Redis 7+ - Backplane & caching
  • E2EE with X3DH - End-to-end encryption

Key Features

  • 🔒 End-to-End Encryption - X3DH key exchange, AES-256-GCM
  • 💬 Real-time Chat - SignalR with WebSocket/SSE/Long Polling
  • 🤖 AI Integration - Smart chatbot with streaming responses
  • 📱 Multi-device - User mapping across devices
  • 🚀 High Performance - MessagePack protocol

Development

# Restore dependencies
dotnet restore

# Build
dotnet build

# Run
dotnet run --project src/ChatService.API

Docker

docker build -t chatservice:latest .
docker run -p 5000:8080 --env-file .env chatservice:latest

License

Proprietary - GoodGo Platform