mirror of
https://github.com/sipeed/picoclaw.git
synced 2026-06-12 18:08:54 +00:00
49 lines
1.3 KiB
Go
49 lines
1.3 KiB
Go
package pico
|
|
|
|
import "time"
|
|
|
|
// Protocol message types.
|
|
const (
|
|
// TypeMessageSend is sent from client to server.
|
|
TypeMessageSend = "message.send"
|
|
TypeMediaSend = "media.send"
|
|
TypePing = "ping"
|
|
|
|
// TypeMessageCreate is sent from server to client.
|
|
TypeMessageCreate = "message.create"
|
|
TypeMessageUpdate = "message.update"
|
|
TypeMediaCreate = "media.create"
|
|
TypeTypingStart = "typing.start"
|
|
TypeTypingStop = "typing.stop"
|
|
TypeError = "error"
|
|
TypePong = "pong"
|
|
|
|
PicoTokenPrefix = "pico-"
|
|
)
|
|
|
|
// PicoMessage is the wire format for all Pico Protocol messages.
|
|
type PicoMessage struct {
|
|
Type string `json:"type"`
|
|
ID string `json:"id,omitempty"`
|
|
SessionID string `json:"session_id,omitempty"`
|
|
Timestamp int64 `json:"timestamp,omitempty"`
|
|
Payload map[string]any `json:"payload,omitempty"`
|
|
}
|
|
|
|
// newMessage creates a PicoMessage with the given type and payload.
|
|
func newMessage(msgType string, payload map[string]any) PicoMessage {
|
|
return PicoMessage{
|
|
Type: msgType,
|
|
Timestamp: time.Now().UnixMilli(),
|
|
Payload: payload,
|
|
}
|
|
}
|
|
|
|
// newError creates an error PicoMessage.
|
|
func newError(code, message string) PicoMessage {
|
|
return newMessage(TypeError, map[string]any{
|
|
"code": code,
|
|
"message": message,
|
|
})
|
|
}
|