mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-04 21:37:31 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			906 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			906 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package chat
 | 
						|
 | 
						|
import (
 | 
						|
	"errors"
 | 
						|
 | 
						|
	"github.com/owncast/owncast/core/chat/events"
 | 
						|
	"github.com/owncast/owncast/core/webhooks"
 | 
						|
	log "github.com/sirupsen/logrus"
 | 
						|
)
 | 
						|
 | 
						|
// SetMessagesVisibility will set the visibility of multiple messages by ID.
 | 
						|
func SetMessagesVisibility(messageIDs []string, visibility bool) error {
 | 
						|
	// Save new message visibility
 | 
						|
	if err := saveMessageVisibility(messageIDs, visibility); err != nil {
 | 
						|
		log.Errorln(err)
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	// Send an event letting the chat clients know to hide or show
 | 
						|
	// the messages.
 | 
						|
	event := events.SetMessageVisibilityEvent{
 | 
						|
		MessageIDs: messageIDs,
 | 
						|
		Visible:    visibility,
 | 
						|
	}
 | 
						|
	event.Event.SetDefaults()
 | 
						|
 | 
						|
	payload := event.GetBroadcastPayload()
 | 
						|
	if err := _server.Broadcast(payload); err != nil {
 | 
						|
		return errors.New("error broadcasting message visibility payload " + err.Error())
 | 
						|
	}
 | 
						|
 | 
						|
	webhooks.SendChatEventSetMessageVisibility(event)
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 |