203 lines
7.0 KiB
Go
203 lines
7.0 KiB
Go
package tools
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/modelcontextprotocol/go-sdk/mcp"
|
|
|
|
"isphere-ai-bridge/internal/isphere"
|
|
)
|
|
|
|
const ToolNameReceiveMessages = "isphere_receive_messages"
|
|
|
|
type ReceiveMessagesSource interface {
|
|
ReceiveMessages(ctx context.Context, query isphere.ReceiveMessagesQuery) (isphere.ReceiveMessagesResult, error)
|
|
}
|
|
|
|
type ReceiveMessagesArgs struct {
|
|
ConversationID string `json:"conversation_id,omitempty" jsonschema:"exact conversation id filter for local readonly message logs"`
|
|
Query string `json:"query,omitempty" jsonschema:"case-insensitive keyword filter over message text, subject, ids, and participants"`
|
|
Since string `json:"since,omitempty" jsonschema:"RFC3339 timestamp; return messages at or after this time when packet timestamps are available"`
|
|
Cursor string `json:"cursor,omitempty" jsonschema:"pagination cursor; currently only empty cursor is supported"`
|
|
SourcePreference string `json:"source_preference,omitempty" jsonschema:"source selector; currently supports auto or local_readonly only"`
|
|
Preview bool `json:"preview,omitempty" jsonschema:"accepted for contract compatibility; read-only execution remains read mode"`
|
|
IncludeAttachmentMetadata *bool `json:"include_attachment_metadata,omitempty" jsonschema:"include inline attachment metadata in receive message results; default true"`
|
|
Limit int `json:"limit,omitempty" jsonschema:"maximum number of messages to return; zero or negative returns all available messages"`
|
|
}
|
|
|
|
func RegisterISphereReadTools(server *mcp.Server, source ReceiveMessagesSource) {
|
|
if source == nil {
|
|
source = isphere.EncryptedPacketLogSource{}
|
|
}
|
|
|
|
mcp.AddTool[ReceiveMessagesArgs, map[string]any](server, &mcp.Tool{
|
|
Name: ToolNameReceiveMessages,
|
|
Description: "Return iSphere messages from the configured read-only log-backed source.",
|
|
}, func(ctx context.Context, _ *mcp.CallToolRequest, input ReceiveMessagesArgs) (*mcp.CallToolResult, map[string]any, error) {
|
|
if err := validateReceiveMessagesArgs(input); err != nil {
|
|
return nil, nil, err
|
|
}
|
|
started := time.Now().UTC()
|
|
result, err := source.ReceiveMessages(ctx, isphere.ReceiveMessagesQuery{
|
|
ConversationID: input.ConversationID,
|
|
Query: input.Query,
|
|
Since: input.Since,
|
|
Limit: input.Limit,
|
|
})
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
return nil, receiveMessagesResultToMap(result, started, time.Now().UTC(), receiveMessagesMapOptions{
|
|
IncludeAttachmentMetadata: includeReceiveMessageAttachmentMetadata(input),
|
|
}), nil
|
|
})
|
|
}
|
|
|
|
func validateReceiveMessagesArgs(input ReceiveMessagesArgs) error {
|
|
return validateLocalReadonlySourceAndCursor(ToolNameReceiveMessages, input.SourcePreference, input.Cursor)
|
|
}
|
|
|
|
func validateLocalReadonlySourceAndCursor(toolName string, sourcePreferenceValue string, cursorValue string) error {
|
|
sourcePreference := strings.ToLower(strings.TrimSpace(sourcePreferenceValue))
|
|
switch sourcePreference {
|
|
case "", "auto", "local_readonly":
|
|
default:
|
|
return fmt.Errorf("%s source_preference %q is not available; only auto and local_readonly are supported", toolName, sourcePreferenceValue)
|
|
}
|
|
if strings.TrimSpace(cursorValue) != "" {
|
|
return fmt.Errorf("%s cursor pagination is not available yet", toolName)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func includeReceiveMessageAttachmentMetadata(input ReceiveMessagesArgs) bool {
|
|
if input.IncludeAttachmentMetadata == nil {
|
|
return true
|
|
}
|
|
return *input.IncludeAttachmentMetadata
|
|
}
|
|
|
|
type receiveMessagesMapOptions struct {
|
|
IncludeAttachmentMetadata bool
|
|
}
|
|
|
|
func receiveMessagesResultToMap(result isphere.ReceiveMessagesResult, started time.Time, finished time.Time, options receiveMessagesMapOptions) map[string]any {
|
|
messages := make([]map[string]any, 0, len(result.Messages))
|
|
for _, message := range result.Messages {
|
|
attachments := []map[string]any{}
|
|
if options.IncludeAttachmentMetadata {
|
|
attachments = receiveMessageAttachments(message)
|
|
}
|
|
messages = append(messages, map[string]any{
|
|
"id": message.ID,
|
|
"message_id": message.ID,
|
|
"conversation_id": message.ConversationID,
|
|
"conversation_type": message.ConversationType,
|
|
"sender_id": message.SenderID,
|
|
"sender_name": nil,
|
|
"receiver_id": message.ReceiverID,
|
|
"text": message.Text,
|
|
"content_type": receiveMessageContentType(message, attachments),
|
|
"content_text": message.Text,
|
|
"attachments": attachments,
|
|
"timestamp": message.Timestamp,
|
|
"created_at": packetTimestampToRFC3339(message.Timestamp),
|
|
"received_at": nil,
|
|
"subject": message.Subject,
|
|
"receipt_id": message.ReceiptID,
|
|
"read": message.Read,
|
|
"source": "local_readonly",
|
|
"raw_ref": "packetlog_message",
|
|
})
|
|
}
|
|
return map[string]any{
|
|
"ok": true,
|
|
"conversation": receiveMessagesConversation(result.Messages),
|
|
"messages": messages,
|
|
"next_cursor": nil,
|
|
"audit": map[string]any{
|
|
"tool": ToolNameReceiveMessages,
|
|
"source": "local_readonly",
|
|
"execution_mode": "read",
|
|
"started_at": started.Format(time.RFC3339Nano),
|
|
"finished_at": finished.Format(time.RFC3339Nano),
|
|
"result": "ok",
|
|
},
|
|
}
|
|
}
|
|
|
|
func receiveMessagesConversation(messages []isphere.Message) any {
|
|
if len(messages) == 0 {
|
|
return nil
|
|
}
|
|
first := messages[0]
|
|
return map[string]any{
|
|
"conversation_id": first.ConversationID,
|
|
"conversation_type": contractConversationType(first.ConversationType),
|
|
"display_name": first.ConversationID,
|
|
}
|
|
}
|
|
|
|
func contractConversationType(value string) string {
|
|
switch strings.ToLower(strings.TrimSpace(value)) {
|
|
case "groupchat", "group":
|
|
return "group"
|
|
case "chat", "direct":
|
|
return "direct"
|
|
case "system":
|
|
return "system"
|
|
default:
|
|
return "unknown"
|
|
}
|
|
}
|
|
|
|
func receiveMessageAttachments(message isphere.Message) []map[string]any {
|
|
files := isphere.ListFilesFromMessages([]isphere.Message{message}, isphere.ListFilesQuery{})
|
|
attachments := make([]map[string]any, 0, len(files.Files))
|
|
for _, file := range files.Files {
|
|
attachments = append(attachments, map[string]any{
|
|
"file_id": file.FileID,
|
|
"file_name": file.FileName,
|
|
"size_bytes": file.SizeBytes,
|
|
"download_ref": nullableString(file.DownloadRef),
|
|
})
|
|
}
|
|
return attachments
|
|
}
|
|
|
|
func receiveMessageContentType(message isphere.Message, attachments []map[string]any) string {
|
|
if len(attachments) > 0 {
|
|
return "file"
|
|
}
|
|
if strings.TrimSpace(message.Text) != "" {
|
|
return "text"
|
|
}
|
|
if strings.TrimSpace(message.Subject) != "" {
|
|
return "notify"
|
|
}
|
|
return "unknown"
|
|
}
|
|
|
|
func packetTimestampToRFC3339(value string) any {
|
|
trimmed := strings.TrimSpace(value)
|
|
if trimmed == "" {
|
|
return nil
|
|
}
|
|
epoch, err := strconv.ParseInt(trimmed, 10, 64)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
var ts time.Time
|
|
if epoch > 1_000_000_000_000 {
|
|
ts = time.UnixMilli(epoch)
|
|
} else {
|
|
ts = time.Unix(epoch, 0)
|
|
}
|
|
formatted := ts.UTC().Format(time.RFC3339)
|
|
return formatted
|
|
}
|