gomuks/ui/messages/base.go

380 lines
10 KiB
Go
Raw Normal View History

// gomuks - A terminal Matrix client written in Go.
2019-01-17 13:13:25 +01:00
// Copyright (C) 2019 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
2019-01-17 13:13:25 +01:00
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2019-01-17 13:13:25 +01:00
// GNU Affero General Public License for more details.
//
2019-01-17 13:13:25 +01:00
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package messages
import (
"fmt"
2020-02-20 20:56:03 +01:00
"sort"
"strings"
"time"
2019-04-10 01:19:38 +02:00
"maunium.net/go/gomuks/config"
"maunium.net/go/gomuks/matrix/event"
2019-01-17 13:13:25 +01:00
"maunium.net/go/mautrix"
2019-04-07 17:21:38 +02:00
"maunium.net/go/mauview"
2019-01-17 13:13:25 +01:00
"maunium.net/go/tcell"
"maunium.net/go/gomuks/interface"
"maunium.net/go/gomuks/ui/widget"
)
2019-06-15 00:11:51 +02:00
type MessageRenderer interface {
Draw(screen mauview.Screen)
NotificationContent() string
PlainText() string
CalculateBuffer(prefs config.UserPreferences, width int, msg *UIMessage)
RegisterMatrix(matrix ifc.MatrixContainer)
Height() int
Clone() MessageRenderer
String() string
}
2020-02-20 20:56:03 +01:00
type ReactionItem struct {
Key string
Count int
}
func (ri ReactionItem) String() string {
return fmt.Sprintf("%d %s", ri.Count, ri.Key)
}
type ReactionSlice []ReactionItem
func (rs ReactionSlice) Len() int {
return len(rs)
}
func (rs ReactionSlice) Less(i, j int) bool {
return rs[i].Key < rs[j].Key
}
func (rs ReactionSlice) Swap(i, j int) {
rs[i], rs[j] = rs[j], rs[i]
}
2019-06-15 00:11:51 +02:00
type UIMessage struct {
EventID string
TxnID string
Relation mautrix.RelatesTo
Type mautrix.MessageType
SenderID string
SenderName string
DefaultSenderColor tcell.Color
Timestamp time.Time
State event.OutgoingState
2019-06-15 00:11:51 +02:00
IsHighlight bool
IsService bool
Edited bool
2020-02-19 00:14:02 +01:00
Event *event.Event
2019-06-15 00:11:51 +02:00
ReplyTo *UIMessage
2020-02-20 20:56:03 +01:00
Reactions ReactionSlice
2019-06-15 00:11:51 +02:00
Renderer MessageRenderer
2020-02-20 20:56:03 +01:00
reactionBuffer string
2019-06-15 00:11:51 +02:00
}
const DateFormat = "January _2, 2006"
const TimeFormat = "15:04:05"
func newUIMessage(evt *event.Event, displayname string, renderer MessageRenderer) *UIMessage {
msgtype := evt.Content.MsgType
if len(msgtype) == 0 {
msgtype = mautrix.MessageType(evt.Type.String())
}
2020-02-20 20:56:03 +01:00
reactions := make(ReactionSlice, 0, len(evt.Unsigned.Relations.Annotations.Map))
for key, count := range evt.Unsigned.Relations.Annotations.Map {
reactions = append(reactions, ReactionItem{
Key: key,
Count: count,
})
}
sort.Sort(reactions)
2019-06-15 00:11:51 +02:00
return &UIMessage{
SenderID: evt.Sender,
2019-06-15 00:11:51 +02:00
SenderName: displayname,
Timestamp: unixToTime(evt.Timestamp),
DefaultSenderColor: widget.GetHashColor(evt.Sender),
2019-06-15 00:11:51 +02:00
Type: msgtype,
EventID: evt.ID,
TxnID: evt.Unsigned.TransactionID,
Relation: *evt.Content.GetRelatesTo(),
State: evt.Gomuks.OutgoingState,
2019-06-15 00:11:51 +02:00
IsHighlight: false,
IsService: false,
Edited: len(evt.Gomuks.Edits) > 0,
2020-02-20 20:56:03 +01:00
Reactions: reactions,
2020-02-19 00:14:02 +01:00
Event: evt,
2019-06-15 00:11:51 +02:00
Renderer: renderer,
}
}
2020-02-20 20:56:03 +01:00
func (msg *UIMessage) AddReaction(key string) {
found := false
for _, rs := range msg.Reactions {
if rs.Key == key {
rs.Count++
found = true
break
}
}
if !found {
msg.Reactions = append(msg.Reactions, ReactionItem{
Key: key,
Count: 1,
})
}
sort.Sort(msg.Reactions)
msg.CalculateReactionBuffer()
}
func unixToTime(unix int64) time.Time {
timestamp := time.Now()
if unix != 0 {
timestamp = time.Unix(unix/1000, unix%1000*1000)
}
return timestamp
}
// Sender gets the string that should be displayed as the sender of this message.
//
// If the message is being sent, the sender is "Sending...".
// If sending has failed, the sender is "Error".
// If the message is an emote, the sender is blank.
// In any other case, the sender is the display name of the user who sent the message.
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) Sender() string {
switch msg.State {
case event.StateLocalEcho:
return "Sending..."
case event.StateSendFail:
return "Error"
}
2019-06-15 00:11:51 +02:00
switch msg.Type {
case "m.emote":
// Emotes don't show a separate sender, it's included in the buffer.
return ""
default:
2019-06-15 00:11:51 +02:00
return msg.SenderName
}
}
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) NotificationSenderName() string {
return msg.SenderName
}
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) NotificationContent() string {
return msg.Renderer.NotificationContent()
}
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) getStateSpecificColor() tcell.Color {
switch msg.State {
case event.StateLocalEcho:
return tcell.ColorGray
case event.StateSendFail:
return tcell.ColorRed
case event.StateDefault:
fallthrough
default:
return tcell.ColorDefault
}
}
// SenderColor returns the color the name of the sender should be shown in.
//
// If the message is being sent, the color is gray.
// If sending has failed, the color is red.
//
// In any other case, the color is whatever is specified in the Message struct.
// Usually that means it is the hash-based color of the sender (see ui/widget/color.go)
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) SenderColor() tcell.Color {
stateColor := msg.getStateSpecificColor()
switch {
case stateColor != tcell.ColorDefault:
return stateColor
2019-06-15 00:11:51 +02:00
case msg.Type == "m.room.member":
return widget.GetHashColor(msg.SenderName)
case msg.IsService:
return tcell.ColorGray
default:
2019-06-15 00:11:51 +02:00
return msg.DefaultSenderColor
}
}
// TextColor returns the color the actual content of the message should be shown in.
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) TextColor() tcell.Color {
stateColor := msg.getStateSpecificColor()
switch {
case stateColor != tcell.ColorDefault:
return stateColor
2019-06-15 00:11:51 +02:00
case msg.IsService, msg.Type == "m.notice":
return tcell.ColorGray
2019-06-15 00:11:51 +02:00
case msg.IsHighlight:
return tcell.ColorYellow
2019-06-15 00:11:51 +02:00
case msg.Type == "m.room.member":
return tcell.ColorGreen
default:
return tcell.ColorDefault
}
}
// TimestampColor returns the color the timestamp should be shown in.
//
// As with SenderColor(), messages being sent and messages that failed to be sent are
// gray and red respectively.
//
// However, other messages are the default color instead of a color stored in the struct.
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) TimestampColor() tcell.Color {
if msg.IsService {
2019-04-10 16:08:39 +02:00
return tcell.ColorGray
}
return msg.getStateSpecificColor()
}
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) ReplyHeight() int {
2019-04-10 01:19:38 +02:00
if msg.ReplyTo != nil {
2019-04-13 16:04:52 +02:00
return 1 + msg.ReplyTo.Height()
2019-04-10 01:19:38 +02:00
}
return 0
}
2020-02-20 20:56:03 +01:00
func (msg *UIMessage) ReactionHeight() int {
if len(msg.Reactions) > 0 {
return 1
}
return 0
}
// Height returns the number of rows in the computed buffer (see Buffer()).
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) Height() int {
2020-02-20 20:56:03 +01:00
return msg.ReplyHeight() + msg.Renderer.Height() + msg.ReactionHeight()
}
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) Time() time.Time {
return msg.Timestamp
}
// FormatTime returns the formatted time when the message was sent.
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) FormatTime() string {
return msg.Timestamp.Format(TimeFormat)
}
// FormatDate returns the formatted date when the message was sent.
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) FormatDate() string {
return msg.Timestamp.Format(DateFormat)
}
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) SameDate(message *UIMessage) bool {
year1, month1, day1 := msg.Timestamp.Date()
year2, month2, day2 := message.Timestamp.Date()
return day1 == day2 && month1 == month2 && year1 == year2
}
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) ID() string {
if len(msg.EventID) == 0 {
return msg.TxnID
2019-04-10 00:04:39 +02:00
}
2019-06-15 00:11:51 +02:00
return msg.EventID
}
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) SetID(id string) {
msg.EventID = id
}
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) SetIsHighlight(isHighlight bool) {
msg.IsHighlight = isHighlight
2019-04-10 01:19:38 +02:00
}
2020-02-20 20:56:03 +01:00
func (msg *UIMessage) DrawReactions(screen mauview.Screen) {
if len(msg.Reactions) == 0 {
return
}
width, height := screen.Size()
screen = mauview.NewProxyScreen(screen, 0, height-1, width, 1)
mauview.Print(screen, msg.reactionBuffer, 0, 0, width, mauview.AlignLeft, mauview.Styles.PrimaryTextColor)
}
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) Draw(screen mauview.Screen) {
2019-04-10 01:19:38 +02:00
screen = msg.DrawReply(screen)
2019-06-15 00:11:51 +02:00
msg.Renderer.Draw(screen)
2020-02-20 20:56:03 +01:00
msg.DrawReactions(screen)
2019-04-07 17:21:38 +02:00
}
2019-04-10 01:19:38 +02:00
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) Clone() *UIMessage {
clone := *msg
2019-06-16 13:29:03 +02:00
clone.ReplyTo = nil
2020-02-20 20:56:03 +01:00
clone.Reactions = nil
2019-06-15 00:11:51 +02:00
clone.Renderer = clone.Renderer.Clone()
return &clone
}
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) CalculateReplyBuffer(preferences config.UserPreferences, width int) {
2019-04-10 01:19:38 +02:00
if msg.ReplyTo == nil {
return
}
msg.ReplyTo.CalculateBuffer(preferences, width-1)
}
2020-02-20 20:56:03 +01:00
func (msg *UIMessage) CalculateReactionBuffer() {
var text strings.Builder
for _, reaction := range msg.Reactions {
text.WriteString(reaction.String())
text.WriteRune(' ')
}
msg.reactionBuffer = text.String()
}
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) CalculateBuffer(preferences config.UserPreferences, width int) {
2019-06-16 13:29:03 +02:00
msg.Renderer.CalculateBuffer(preferences, width, msg)
msg.CalculateReplyBuffer(preferences, width)
2020-02-20 20:56:03 +01:00
msg.CalculateReactionBuffer()
2019-06-15 00:11:51 +02:00
}
func (msg *UIMessage) DrawReply(screen mauview.Screen) mauview.Screen {
2019-04-10 01:19:38 +02:00
if msg.ReplyTo == nil {
return screen
}
width, height := screen.Size()
replyHeight := msg.ReplyTo.Height()
2019-04-13 16:04:52 +02:00
widget.WriteLineSimpleColor(screen, "In reply to", 1, 0, tcell.ColorGreen)
2019-06-15 00:11:51 +02:00
widget.WriteLineSimpleColor(screen, msg.ReplyTo.SenderName, 13, 0, msg.ReplyTo.SenderColor())
2019-04-13 16:04:52 +02:00
for y := 0; y < 1+replyHeight; y++ {
screen.SetCell(0, y, tcell.StyleDefault, '▊')
2019-04-10 01:19:38 +02:00
}
replyScreen := mauview.NewProxyScreen(screen, 1, 1, width-1, replyHeight)
msg.ReplyTo.Draw(replyScreen)
2019-04-13 16:04:52 +02:00
return mauview.NewProxyScreen(screen, 0, replyHeight+1, width, height-replyHeight-1)
2019-04-10 01:19:38 +02:00
}
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) String() string {
return fmt.Sprintf(`&messages.UIMessage{
ID="%s", TxnID="%s",
Type="%s", Timestamp=%s,
Sender={ID="%s", Name="%s", Color=#%X},
IsService=%t, IsHighlight=%t,
2019-06-15 00:11:51 +02:00
Renderer=%s,
}`,
2019-06-15 00:11:51 +02:00
msg.EventID, msg.TxnID,
msg.Type, msg.Timestamp.String(),
msg.SenderID, msg.SenderName, msg.DefaultSenderColor.Hex(),
2020-02-20 20:56:03 +01:00
msg.IsService, msg.IsHighlight, msg.Renderer.String())
}
2019-06-15 00:11:51 +02:00
func (msg *UIMessage) PlainText() string {
return msg.Renderer.PlainText()
}