Feat v0.5.3 chat polish (#33)
All checks were successful
CI/CD / detect-changes (push) Successful in 21s
CI/CD / test-frontend (push) Successful in 4s
CI/CD / test-sqlite (push) Successful in 2m47s
CI/CD / test-go-pg (push) Successful in 2m53s
CI/CD / build-and-deploy (push) Successful in 1m15s

Co-authored-by: Jeffrey Smith <jasafpro@gmail.com>
Co-committed-by: Jeffrey Smith <jasafpro@gmail.com>
This commit was merged in pull request #33.
This commit is contained in:
2026-03-30 17:04:40 +00:00
committed by xcaliber
parent 6931b125a4
commit 8092f00fbe
18 changed files with 1134 additions and 40 deletions

View File

@@ -3,7 +3,7 @@
"title": "Chat Core",
"type": "library",
"tier": "starlark",
"version": "0.1.0",
"version": "0.2.0",
"description": "Core chat library — conversations, messages, participants, read cursors. Usable by other packages via lib.require().",
"author": "switchboard",
@@ -28,6 +28,7 @@
{"method": "POST", "path": "/participants/*"},
{"method": "DELETE", "path": "/participants/*"},
{"method": "POST", "path": "/read/*"},
{"method": "GET", "path": "/search"},
{"method": "GET", "path": "/unread"}
],

View File

@@ -1,4 +1,4 @@
# Chat Core — Starlark Backend (v0.1.0)
# Chat Core — Starlark Backend (v0.2.0)
#
# Library package providing conversations, messages, participants,
# and read cursors. Consumable via lib.require("chat-core").
@@ -309,6 +309,10 @@ def on_request(req):
if method == "POST" and path == "/conversations":
return _handle_create_conversation(req, user_id)
# GET /search?q=term — search conversations and messages
if method == "GET" and path == "/search":
return _handle_search(req, user_id)
# GET /unread — unread counts
if method == "GET" and path == "/unread":
return _handle_unread(user_id)
@@ -652,6 +656,59 @@ def _handle_mark_read(cid, req, user_id):
return _resp(200, {"ok": True})
def _handle_search(req, user_id):
"""Search across conversation titles and message content."""
q = _str(req.get("query", {}).get("q", ""))
if len(q) < 2:
return _resp(400, {"error": "query must be at least 2 characters"})
pattern = "%" + q + "%"
# Get user's conversation IDs
my_parts = db.query("participants", filters={"participant_id": user_id}, limit=500)
if not my_parts:
return _resp(200, {"conversations": [], "messages": []})
cid_set = {}
for p in my_parts:
cid_set[_str(p.get("conversation_id", ""))] = True
# Search conversations by title
matching_convs = db.query("conversations", search_like={"title": pattern}, limit=50)
conv_results = []
for conv in (matching_convs or []):
cid = _str(conv.get("id", ""))
if cid in cid_set:
conv_results.append({
"id": cid,
"title": conv.get("title", ""),
"type": conv.get("type", ""),
"updated_at": conv.get("updated_at", ""),
"created_at": conv.get("created_at", ""),
})
# Search messages in user's conversations
msg_results = []
for cid in cid_set:
if not cid:
continue
msgs = db.query("messages", filters={"conversation_id": cid}, search_like={"content": pattern}, order="-created_at", limit=5)
for m in (msgs or []):
msg_results.append({
"id": m.get("id", ""),
"conversation_id": cid,
"participant_id": m.get("participant_id", ""),
"content": _str(m.get("content", "")),
"content_type": _str(m.get("content_type", "")),
"created_at": _str(m.get("created_at", "")),
})
# Sort messages by created_at descending, limit to 50
msg_results = sorted(msg_results, key=lambda x: x.get("created_at", ""), reverse=True)[:50]
return _resp(200, {"conversations": conv_results, "messages": msg_results})
def _handle_unread(user_id):
"""Get unread counts for all user's conversations."""
my_parts = db.query("participants", filters={"participant_id": user_id}, limit=500)