- Add comprehensive loop prevention at source level for all bridges: - XMPP bridge: Skip messages from own XMPP connection user - Mattermost bridge: Skip messages from bot user and remote users - Remove cache from getOrCreateRemoteUser method for simplified user management - Improve XMPP client architecture with direct handler delegation: - Add SetMessageHandler and GetJID methods to XMPP client - Move protocol normalization methods to client level - Implement handleIncomingXMPPMessage in XMPP bridge for business logic - Fix message direction handling in XMPP message handler - Add remote user invitation to shared channels via InviteRemoteToChannel API - Clean up unused code and improve code formatting 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
773 lines
22 KiB
Go
773 lines
22 KiB
Go
// Package xmpp provides XMPP client functionality for the Mattermost bridge.
|
|
package xmpp
|
|
|
|
import (
|
|
"context"
|
|
"crypto/tls"
|
|
"encoding/xml"
|
|
"fmt"
|
|
"net"
|
|
"net/url"
|
|
"time"
|
|
|
|
"github.com/jellydator/ttlcache/v3"
|
|
"github.com/mattermost/mattermost-plugin-bridge-xmpp/server/logger"
|
|
"mellium.im/sasl"
|
|
"mellium.im/xmlstream"
|
|
"mellium.im/xmpp"
|
|
"mellium.im/xmpp/disco"
|
|
"mellium.im/xmpp/jid"
|
|
"mellium.im/xmpp/muc"
|
|
"mellium.im/xmpp/mux"
|
|
"mellium.im/xmpp/stanza"
|
|
)
|
|
|
|
const (
|
|
// defaultOperationTimeout is the default timeout for XMPP operations
|
|
defaultOperationTimeout = 5 * time.Second
|
|
|
|
// messageDedupeTTL is the TTL for message deduplication cache
|
|
messageDedupeTTL = 30 * time.Second
|
|
)
|
|
|
|
// Client represents an XMPP client for communicating with XMPP servers.
|
|
type Client struct {
|
|
serverURL string
|
|
username string
|
|
password string
|
|
resource string
|
|
remoteID string // Plugin remote ID for metadata
|
|
serverDomain string // explicit server domain for testing
|
|
tlsConfig *tls.Config // custom TLS configuration
|
|
logger logger.Logger // Logger for debugging
|
|
|
|
// XMPP connection
|
|
session *xmpp.Session
|
|
jidAddr jid.JID
|
|
ctx context.Context
|
|
cancel context.CancelFunc
|
|
mucClient *muc.Client
|
|
mux *mux.ServeMux
|
|
sessionReady chan struct{}
|
|
sessionServing bool
|
|
|
|
// Message handling for bridge integration
|
|
messageHandler mux.MessageHandlerFunc // Bridge handler for incoming messages
|
|
|
|
// Message deduplication cache to handle XMPP server duplicates
|
|
dedupeCache *ttlcache.Cache[string, time.Time]
|
|
}
|
|
|
|
// MessageRequest represents a request to send a message.
|
|
type MessageRequest struct {
|
|
RoomJID string `json:"room_jid"` // Required: XMPP room JID
|
|
GhostUserJID string `json:"ghost_user_jid"` // Required: Ghost user JID to send as
|
|
Message string `json:"message"` // Required: Plain text message content
|
|
HTMLMessage string `json:"html_message"` // Optional: HTML formatted message content
|
|
ThreadID string `json:"thread_id"` // Optional: Thread ID
|
|
PostID string `json:"post_id"` // Optional: Mattermost post ID metadata
|
|
}
|
|
|
|
// SendMessageResponse represents the response from XMPP when sending messages.
|
|
type SendMessageResponse struct {
|
|
StanzaID string `json:"stanza_id"`
|
|
}
|
|
|
|
// MessageBody represents the body element of an XMPP message
|
|
type MessageBody struct {
|
|
XMLName xml.Name `xml:"body"`
|
|
Text string `xml:",chardata"`
|
|
}
|
|
|
|
// XMPPMessage represents a complete XMPP message stanza
|
|
type XMPPMessage struct {
|
|
XMLName xml.Name `xml:"jabber:client message"`
|
|
Type string `xml:"type,attr"`
|
|
To string `xml:"to,attr"`
|
|
From string `xml:"from,attr"`
|
|
Body MessageBody `xml:"body"`
|
|
}
|
|
|
|
// MessageWithBody represents a message stanza with body for parsing
|
|
type MessageWithBody struct {
|
|
stanza.Message
|
|
Body string `xml:"body"`
|
|
}
|
|
|
|
// GhostUser represents an XMPP ghost user
|
|
type GhostUser struct {
|
|
JID string `json:"jid"`
|
|
DisplayName string `json:"display_name"`
|
|
}
|
|
|
|
// UserProfile represents an XMPP user profile
|
|
type UserProfile struct {
|
|
JID string `json:"jid"`
|
|
DisplayName string `json:"display_name"`
|
|
}
|
|
|
|
// NewClient creates a new XMPP client.
|
|
func NewClient(serverURL, username, password, resource, remoteID string, logger logger.Logger) *Client {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
// Create TTL cache for message deduplication
|
|
dedupeCache := ttlcache.New(
|
|
ttlcache.WithTTL[string, time.Time](messageDedupeTTL),
|
|
)
|
|
|
|
// Start automatic cleanup in background
|
|
go dedupeCache.Start()
|
|
|
|
client := &Client{
|
|
serverURL: serverURL,
|
|
username: username,
|
|
password: password,
|
|
resource: resource,
|
|
remoteID: remoteID,
|
|
logger: logger,
|
|
ctx: ctx,
|
|
cancel: cancel,
|
|
sessionReady: make(chan struct{}),
|
|
dedupeCache: dedupeCache,
|
|
}
|
|
|
|
// Create MUC client and set up message handling
|
|
mucClient := &muc.Client{}
|
|
client.mucClient = mucClient
|
|
|
|
// Create mux with MUC client and our message handler
|
|
mux := mux.New("jabber:client",
|
|
muc.HandleClient(mucClient),
|
|
mux.MessageFunc(stanza.GroupChatMessage, xml.Name{}, client.handleIncomingMessage))
|
|
client.mux = mux
|
|
|
|
return client
|
|
}
|
|
|
|
// NewClientWithTLS creates a new XMPP client with custom TLS configuration.
|
|
func NewClientWithTLS(serverURL, username, password, resource, remoteID string, tlsConfig *tls.Config, logger logger.Logger) *Client {
|
|
client := NewClient(serverURL, username, password, resource, remoteID, logger)
|
|
client.tlsConfig = tlsConfig
|
|
return client
|
|
}
|
|
|
|
// SetServerDomain sets an explicit server domain (used for testing)
|
|
func (c *Client) SetServerDomain(domain string) {
|
|
c.serverDomain = domain
|
|
}
|
|
|
|
// SetMessageHandler sets the bridge message handler for incoming XMPP messages
|
|
func (c *Client) SetMessageHandler(handler mux.MessageHandlerFunc) {
|
|
c.messageHandler = handler
|
|
}
|
|
|
|
// GetJID returns the client's JID
|
|
func (c *Client) GetJID() jid.JID {
|
|
return c.jidAddr
|
|
}
|
|
|
|
// parseServerAddress parses a server URL and returns a host:port address
|
|
func (c *Client) parseServerAddress(serverURL string) (string, error) {
|
|
// Handle simple host:port format (e.g., "localhost:5222")
|
|
if host, port, err := net.SplitHostPort(serverURL); err == nil {
|
|
// Already in host:port format, validate and return
|
|
if host == "" {
|
|
return "", fmt.Errorf("empty hostname in server URL: %s", serverURL)
|
|
}
|
|
if port == "" {
|
|
return "", fmt.Errorf("empty port in server URL: %s", serverURL)
|
|
}
|
|
return serverURL, nil
|
|
}
|
|
|
|
// Try parsing as URL (e.g., "xmpp://localhost:5222" or "xmpps://localhost:5223")
|
|
parsedURL, err := url.Parse(serverURL)
|
|
if err != nil {
|
|
return "", fmt.Errorf("invalid server URL format: %w", err)
|
|
}
|
|
|
|
host := parsedURL.Hostname()
|
|
if host == "" {
|
|
return "", fmt.Errorf("no hostname found in server URL: %s", serverURL)
|
|
}
|
|
|
|
port := parsedURL.Port()
|
|
// Use default XMPP port if not specified
|
|
if port == "" {
|
|
if parsedURL.Scheme == "xmpps" {
|
|
port = "5223"
|
|
} else {
|
|
port = "5222"
|
|
}
|
|
}
|
|
|
|
return host + ":" + port, nil
|
|
}
|
|
|
|
// Connect establishes connection to the XMPP server
|
|
func (c *Client) Connect() error {
|
|
if c.session != nil {
|
|
return nil // Already connected
|
|
}
|
|
|
|
// Reset session ready channel for reconnection
|
|
c.sessionReady = make(chan struct{})
|
|
c.sessionServing = false
|
|
|
|
// Parse JID
|
|
var err error
|
|
c.jidAddr, err = jid.Parse(c.username)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to parse username as JID: %w", err)
|
|
}
|
|
|
|
// Add resource if not present
|
|
if c.jidAddr.Resourcepart() == "" {
|
|
c.jidAddr, err = c.jidAddr.WithResource(c.resource)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to add resource to JID: %w", err)
|
|
}
|
|
}
|
|
|
|
// Prepare TLS configuration
|
|
var tlsConfig *tls.Config
|
|
if c.tlsConfig != nil {
|
|
tlsConfig = c.tlsConfig
|
|
} else {
|
|
tlsConfig = &tls.Config{
|
|
ServerName: c.jidAddr.Domain().String(),
|
|
}
|
|
}
|
|
|
|
// Create a timeout context for the connection attempt (30 seconds)
|
|
connectCtx, connectCancel := context.WithTimeout(c.ctx, 30*time.Second)
|
|
defer connectCancel()
|
|
|
|
c.logger.LogDebug("Connecting to XMPP server", "server_url", c.serverURL)
|
|
|
|
// Parse server address for direct connection
|
|
// We use this instead of using the JID for the user to avoid SRV lookups that can fail
|
|
// depending on network/dns configuration and to ensure we connect directly to the specified
|
|
// server.
|
|
serverAddr, err := c.parseServerAddress(c.serverURL)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to parse server URL %s: %w", c.serverURL, err)
|
|
}
|
|
|
|
var d net.Dialer
|
|
conn, err := d.DialContext(connectCtx, "tcp", serverAddr)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to dial XMPP server at %s: %w", serverAddr, err)
|
|
}
|
|
|
|
// Create client session with direct connection
|
|
c.session, err = xmpp.NewClientSession(
|
|
connectCtx,
|
|
c.jidAddr,
|
|
conn,
|
|
xmpp.StartTLS(tlsConfig),
|
|
xmpp.SASL("", c.password, sasl.Plain),
|
|
xmpp.BindResource(),
|
|
)
|
|
if err != nil {
|
|
conn.Close()
|
|
return fmt.Errorf("failed to establish XMPP session: %w", err)
|
|
}
|
|
|
|
// Start serving the session with the multiplexer to handle incoming stanzas
|
|
go c.serveSession()
|
|
|
|
// Wait for the session to be ready with a timeout
|
|
select {
|
|
case <-c.sessionReady:
|
|
if !c.sessionServing {
|
|
return fmt.Errorf("failed to start session serving")
|
|
}
|
|
c.logger.LogInfo("XMPP client connected successfully", "jid", c.jidAddr.String())
|
|
return nil
|
|
case <-time.After(10 * time.Second):
|
|
return fmt.Errorf("timeout waiting for session to be ready")
|
|
case <-c.ctx.Done():
|
|
return fmt.Errorf("connection cancelled: %w", c.ctx.Err())
|
|
}
|
|
}
|
|
|
|
// serveSession handles incoming XMPP stanzas through the multiplexer
|
|
func (c *Client) serveSession() {
|
|
if c.session == nil || c.mux == nil {
|
|
close(c.sessionReady) // Signal failure
|
|
return
|
|
}
|
|
|
|
// Signal that the session is ready to serve
|
|
c.sessionServing = true
|
|
close(c.sessionReady)
|
|
|
|
err := c.session.Serve(c.mux)
|
|
if err != nil {
|
|
c.sessionServing = false
|
|
// Handle session serve errors
|
|
// In production, you might want to log this error or attempt reconnection
|
|
select {
|
|
case <-c.ctx.Done():
|
|
// Context cancelled, normal shutdown
|
|
return
|
|
default:
|
|
// Unexpected error during session serve
|
|
// Could trigger reconnection logic here
|
|
}
|
|
}
|
|
}
|
|
|
|
// Disconnect closes the XMPP connection
|
|
func (c *Client) Disconnect() error {
|
|
if c.session == nil {
|
|
return nil // Already disconnected
|
|
}
|
|
|
|
c.logger.LogInfo("Disconnecting XMPP client", "jid", c.jidAddr.String())
|
|
|
|
// Send offline presence before disconnecting to properly leave rooms
|
|
if err := c.SetOfflinePresence(); err != nil {
|
|
c.logger.LogWarn("Failed to set offline presence before disconnect", "error", err)
|
|
// Don't fail the disconnect for presence issues
|
|
}
|
|
|
|
// Close the session with a timeout to prevent hanging
|
|
sessionCloseCtx, cancel := context.WithTimeout(context.Background(), defaultOperationTimeout)
|
|
defer cancel()
|
|
|
|
sessionCloseDone := make(chan error, 1)
|
|
go func() {
|
|
sessionCloseDone <- c.session.Close()
|
|
}()
|
|
|
|
select {
|
|
case err := <-sessionCloseDone:
|
|
c.session = nil
|
|
if err != nil {
|
|
c.logger.LogWarn("Error closing XMPP session", "error", err)
|
|
return fmt.Errorf("failed to close XMPP session: %w", err)
|
|
}
|
|
case <-sessionCloseCtx.Done():
|
|
c.logger.LogWarn("Timeout closing XMPP session, forcing disconnect")
|
|
c.session = nil
|
|
// Continue with cleanup even on timeout
|
|
}
|
|
|
|
// Stop the TTL cache cleanup goroutine
|
|
c.dedupeCache.Stop()
|
|
|
|
// Cancel the client context
|
|
c.cancel()
|
|
|
|
c.logger.LogInfo("XMPP client disconnected successfully")
|
|
return nil
|
|
}
|
|
|
|
// ExtractChannelID extracts the channel ID (room bare JID) from a message JID
|
|
func (c *Client) ExtractChannelID(from jid.JID) (string, error) {
|
|
// For MUC messages, the channel ID is the bare JID (without resource/nickname)
|
|
return from.Bare().String(), nil
|
|
}
|
|
|
|
// ExtractUserInfo extracts user ID and display name from a message JID
|
|
func (c *Client) ExtractUserInfo(from jid.JID) (string, string) {
|
|
// For MUC messages, the resource part is the nickname
|
|
nickname := from.Resourcepart()
|
|
|
|
// Use the full JID as user ID for XMPP
|
|
userID := from.String()
|
|
|
|
// Use nickname as display name if available, otherwise use full JID
|
|
displayName := nickname
|
|
if displayName == "" {
|
|
displayName = from.String()
|
|
}
|
|
|
|
return userID, displayName
|
|
}
|
|
|
|
// ExtractMessageBody extracts the message body from an XMPP token stream
|
|
func (c *Client) ExtractMessageBody(t xmlstream.TokenReadEncoder) (string, error) {
|
|
var fullMsg MessageWithBody
|
|
if err := xml.NewTokenDecoder(t).DecodeElement(&fullMsg, nil); err != nil {
|
|
return "", fmt.Errorf("failed to decode message body: %w", err)
|
|
}
|
|
return fullMsg.Body, nil
|
|
}
|
|
|
|
// JoinRoom joins an XMPP Multi-User Chat room
|
|
func (c *Client) JoinRoom(roomJID string) error {
|
|
if c.session == nil {
|
|
if err := c.Connect(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
if c.mucClient == nil {
|
|
return fmt.Errorf("MUC client not initialized")
|
|
}
|
|
|
|
room, err := jid.Parse(roomJID)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to parse room JID: %w", err)
|
|
}
|
|
|
|
// Use our username as nickname
|
|
nickname := c.jidAddr.Localpart()
|
|
roomWithNickname, err := room.WithResource(nickname)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to add nickname to room JID: %w", err)
|
|
}
|
|
|
|
// Create a context with timeout for the join operation
|
|
joinCtx, cancel := context.WithTimeout(c.ctx, 10*time.Second)
|
|
defer cancel()
|
|
|
|
// Join the MUC room using the proper MUC client with timeout
|
|
opts := []muc.Option{
|
|
muc.MaxBytes(0), // Don't limit message history
|
|
}
|
|
|
|
// Run the join operation in a goroutine to avoid blocking
|
|
errChan := make(chan error, 1)
|
|
go func() {
|
|
_, err := c.mucClient.Join(joinCtx, roomWithNickname, c.session, opts...)
|
|
errChan <- err
|
|
}()
|
|
|
|
// Wait for join to complete or timeout
|
|
select {
|
|
case err := <-errChan:
|
|
if err != nil {
|
|
return fmt.Errorf("failed to join MUC room: %w", err)
|
|
}
|
|
return nil
|
|
case <-joinCtx.Done():
|
|
return fmt.Errorf("timeout joining MUC room %s", roomJID)
|
|
}
|
|
}
|
|
|
|
// LeaveRoom leaves an XMPP Multi-User Chat room
|
|
func (c *Client) LeaveRoom(roomJID string) error {
|
|
if c.session == nil {
|
|
return fmt.Errorf("XMPP session not established")
|
|
}
|
|
|
|
if c.mucClient == nil {
|
|
return fmt.Errorf("MUC client not initialized")
|
|
}
|
|
|
|
room, err := jid.Parse(roomJID)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to parse room JID: %w", err)
|
|
}
|
|
|
|
// Use our username as nickname
|
|
nickname := c.jidAddr.Localpart()
|
|
roomWithNickname, err := room.WithResource(nickname)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to add nickname to room JID: %w", err)
|
|
}
|
|
|
|
// Send unavailable presence to leave the room
|
|
presence := stanza.Presence{
|
|
From: c.jidAddr,
|
|
To: roomWithNickname,
|
|
Type: stanza.UnavailablePresence,
|
|
}
|
|
|
|
if err := c.session.Encode(c.ctx, presence); err != nil {
|
|
return fmt.Errorf("failed to send leave presence to MUC room: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// SendMessage sends a message to an XMPP room
|
|
func (c *Client) SendMessage(req MessageRequest) (*SendMessageResponse, error) {
|
|
if c.session == nil {
|
|
if err := c.Connect(); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
to, err := jid.Parse(req.RoomJID)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to parse destination JID: %w", err)
|
|
}
|
|
|
|
// Create a context with timeout for the send operation
|
|
sendCtx, cancel := context.WithTimeout(c.ctx, 10*time.Second)
|
|
defer cancel()
|
|
|
|
// Create complete message with body
|
|
fullMsg := XMPPMessage{
|
|
Type: "groupchat",
|
|
To: to.String(),
|
|
From: c.jidAddr.String(),
|
|
Body: MessageBody{Text: req.Message},
|
|
}
|
|
|
|
// Send the message using the session encoder
|
|
if err := c.session.Encode(sendCtx, fullMsg); err != nil {
|
|
return nil, fmt.Errorf("failed to send message: %w", err)
|
|
}
|
|
|
|
// Generate a response
|
|
response := &SendMessageResponse{
|
|
StanzaID: fmt.Sprintf("msg_%d", time.Now().UnixNano()),
|
|
}
|
|
|
|
return response, nil
|
|
}
|
|
|
|
// SendDirectMessage sends a direct message to a specific user
|
|
func (c *Client) SendDirectMessage(userJID, message string) error {
|
|
if c.session == nil {
|
|
if err := c.Connect(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
to, err := jid.Parse(userJID)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to parse user JID: %w", err)
|
|
}
|
|
|
|
// Create a context with timeout for the send operation
|
|
sendCtx, cancel := context.WithTimeout(c.ctx, 10*time.Second)
|
|
defer cancel()
|
|
|
|
// Create direct message using reusable structs
|
|
msg := XMPPMessage{
|
|
Type: "chat",
|
|
To: to.String(),
|
|
From: c.jidAddr.String(),
|
|
Body: MessageBody{Text: message},
|
|
}
|
|
|
|
// Send the message using the session encoder
|
|
if err := c.session.Encode(sendCtx, msg); err != nil {
|
|
return fmt.Errorf("failed to send direct message: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// ResolveRoomAlias resolves a room alias to room JID
|
|
func (c *Client) ResolveRoomAlias(roomAlias string) (string, error) {
|
|
// For XMPP, return the alias as-is if it's already a valid JID
|
|
if _, err := jid.Parse(roomAlias); err == nil {
|
|
return roomAlias, nil
|
|
}
|
|
return "", fmt.Errorf("invalid room alias/JID")
|
|
}
|
|
|
|
// GetUserProfile gets user profile information
|
|
func (c *Client) GetUserProfile(userJID string) (*UserProfile, error) {
|
|
profile := &UserProfile{
|
|
JID: userJID,
|
|
DisplayName: userJID, // Default to JID if no display name available
|
|
}
|
|
return profile, nil
|
|
}
|
|
|
|
// SetOnlinePresence sends an online presence stanza to indicate the client is available
|
|
func (c *Client) SetOnlinePresence() error {
|
|
if c.session == nil {
|
|
return fmt.Errorf("XMPP session not established")
|
|
}
|
|
|
|
// Create presence stanza indicating we're available
|
|
presence := stanza.Presence{
|
|
Type: stanza.AvailablePresence,
|
|
From: c.jidAddr,
|
|
}
|
|
|
|
// Send the presence stanza
|
|
if err := c.session.Encode(c.ctx, presence); err != nil {
|
|
return fmt.Errorf("failed to send online presence: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// SetOfflinePresence sends an offline presence stanza to indicate the client is going offline
|
|
func (c *Client) SetOfflinePresence() error {
|
|
if c.session == nil {
|
|
return fmt.Errorf("XMPP session not established")
|
|
}
|
|
|
|
// Create presence stanza indicating we're unavailable
|
|
presence := stanza.Presence{
|
|
Type: stanza.UnavailablePresence,
|
|
From: c.jidAddr,
|
|
}
|
|
|
|
// Create a context with timeout for the presence update
|
|
ctx, cancel := context.WithTimeout(context.Background(), defaultOperationTimeout)
|
|
defer cancel()
|
|
|
|
// Send the presence stanza
|
|
if err := c.session.Encode(ctx, presence); err != nil {
|
|
return fmt.Errorf("failed to send offline presence: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// CheckRoomExists verifies if an XMPP room exists and is accessible using disco#info
|
|
func (c *Client) CheckRoomExists(roomJID string) (bool, error) {
|
|
if c.session == nil {
|
|
return false, fmt.Errorf("XMPP session not established")
|
|
}
|
|
|
|
c.logger.LogDebug("Checking room existence using disco#info", "room_jid", roomJID)
|
|
|
|
// Parse and validate the room JID
|
|
roomAddr, err := jid.Parse(roomJID)
|
|
if err != nil {
|
|
c.logger.LogError("Invalid room JID", "room_jid", roomJID, "error", err)
|
|
return false, fmt.Errorf("invalid room JID: %w", err)
|
|
}
|
|
|
|
// Set timeout for the disco query
|
|
ctx, cancel := context.WithTimeout(c.ctx, 10*time.Second)
|
|
defer cancel()
|
|
|
|
// Perform disco#info query to the room
|
|
info, err := disco.GetInfo(ctx, "", roomAddr, c.session)
|
|
if err != nil {
|
|
// Check if it's a service-unavailable or item-not-found error
|
|
if stanzaErr, ok := err.(stanza.Error); ok {
|
|
c.logger.LogDebug("Received stanza error during disco#info query",
|
|
"room_jid", roomJID,
|
|
"error_condition", string(stanzaErr.Condition),
|
|
"error_type", string(stanzaErr.Type))
|
|
|
|
switch stanzaErr.Condition {
|
|
case stanza.ServiceUnavailable, stanza.ItemNotFound:
|
|
c.logger.LogDebug("Room does not exist", "room_jid", roomJID, "condition", string(stanzaErr.Condition))
|
|
return false, nil // Room doesn't exist
|
|
case stanza.Forbidden:
|
|
c.logger.LogWarn("Access denied to room (room exists but not accessible)", "room_jid", roomJID)
|
|
return false, fmt.Errorf("access denied to room %s", roomJID)
|
|
case stanza.NotAuthorized:
|
|
c.logger.LogWarn("Not authorized to query room (room exists but not queryable)", "room_jid", roomJID)
|
|
return false, fmt.Errorf("not authorized to query room %s", roomJID)
|
|
default:
|
|
c.logger.LogError("Unexpected disco query error", "room_jid", roomJID, "condition", string(stanzaErr.Condition), "error", err)
|
|
return false, fmt.Errorf("disco query failed: %w", err)
|
|
}
|
|
}
|
|
c.logger.LogError("Disco query error", "room_jid", roomJID, "error", err)
|
|
return false, fmt.Errorf("disco query error: %w", err)
|
|
}
|
|
|
|
c.logger.LogDebug("Received disco#info response, checking for MUC features",
|
|
"room_jid", roomJID,
|
|
"features_count", len(info.Features),
|
|
"identities_count", len(info.Identity))
|
|
|
|
// Verify it's actually a MUC room by checking features
|
|
for _, feature := range info.Features {
|
|
if feature.Var == muc.NS { // "http://jabber.org/protocol/muc"
|
|
c.logger.LogDebug("Room exists and has MUC feature", "room_jid", roomJID)
|
|
return true, nil
|
|
}
|
|
}
|
|
|
|
// Check for conference identity as backup verification
|
|
for _, identity := range info.Identity {
|
|
if identity.Category == "conference" {
|
|
c.logger.LogDebug("Room exists and has conference identity", "room_jid", roomJID, "identity_type", identity.Type)
|
|
return true, nil
|
|
}
|
|
}
|
|
|
|
// Log all features and identities for debugging
|
|
c.logger.LogDebug("Room exists but doesn't appear to be a MUC room",
|
|
"room_jid", roomJID,
|
|
"features", func() []string {
|
|
var features []string
|
|
for _, f := range info.Features {
|
|
features = append(features, f.Var)
|
|
}
|
|
return features
|
|
}(),
|
|
"identities", func() []string {
|
|
var identities []string
|
|
for _, i := range info.Identity {
|
|
identities = append(identities, fmt.Sprintf("%s/%s", i.Category, i.Type))
|
|
}
|
|
return identities
|
|
}())
|
|
|
|
return false, nil
|
|
}
|
|
|
|
// Ping sends a lightweight ping to the XMPP server to test connectivity
|
|
func (c *Client) Ping() error {
|
|
if c.session == nil {
|
|
return fmt.Errorf("XMPP session not established")
|
|
}
|
|
|
|
c.logger.LogDebug("Sending XMPP ping to test connectivity")
|
|
|
|
// Create a context with timeout for the ping
|
|
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
|
|
defer cancel()
|
|
|
|
start := time.Now()
|
|
|
|
// Use disco#info query to server domain as a connectivity test
|
|
// This is a standard, lightweight XMPP operation that all servers support
|
|
_, err := disco.GetInfo(ctx, "", c.jidAddr.Domain(), c.session)
|
|
if err != nil {
|
|
duration := time.Since(start)
|
|
c.logger.LogDebug("XMPP ping failed", "error", err, "duration", duration)
|
|
return fmt.Errorf("XMPP server ping failed: %w", err)
|
|
}
|
|
|
|
duration := time.Since(start)
|
|
c.logger.LogDebug("XMPP ping successful", "duration", duration)
|
|
return nil
|
|
}
|
|
|
|
|
|
// handleIncomingMessage processes incoming XMPP message stanzas
|
|
func (c *Client) handleIncomingMessage(msg stanza.Message, t xmlstream.TokenReadEncoder) error {
|
|
c.logger.LogDebug("Received XMPP message",
|
|
"from", msg.From.String(),
|
|
"to", msg.To.String(),
|
|
"type", fmt.Sprintf("%v", msg.Type))
|
|
|
|
// Only process groupchat messages for now (MUC messages from channels)
|
|
if msg.Type != stanza.GroupChatMessage {
|
|
c.logger.LogDebug("Ignoring non-groupchat message", "type", fmt.Sprintf("%v", msg.Type))
|
|
return nil
|
|
}
|
|
|
|
// Deduplicate messages using message ID and TTL cache
|
|
if msg.ID != "" {
|
|
// Check if this message ID is already in the cache (indicates duplicate)
|
|
if c.dedupeCache.Has(msg.ID) {
|
|
c.logger.LogDebug("Skipping duplicate message", "message_id", msg.ID)
|
|
return nil
|
|
}
|
|
|
|
// Record this message in the cache with TTL
|
|
c.dedupeCache.Set(msg.ID, time.Now(), ttlcache.DefaultTTL)
|
|
}
|
|
|
|
// Delegate to bridge handler if set
|
|
if c.messageHandler != nil {
|
|
return c.messageHandler(msg, t)
|
|
}
|
|
|
|
c.logger.LogDebug("No message handler set, ignoring message")
|
|
return nil
|
|
}
|
|
|