cchat-gtk/internal/ui/messages/input/sendable.go

173 lines
3.7 KiB
Go
Raw Normal View History

2020-06-04 23:00:41 +00:00
package input
import (
"encoding/base64"
"encoding/binary"
"fmt"
"sync/atomic"
"time"
2020-06-04 23:00:41 +00:00
"github.com/diamondburned/cchat"
"github.com/diamondburned/cchat-gtk/internal/gts"
"github.com/diamondburned/cchat-gtk/internal/log"
2020-07-10 23:26:07 +00:00
"github.com/diamondburned/cchat-gtk/internal/ui/messages/input/attachment"
2020-06-04 23:00:41 +00:00
"github.com/diamondburned/cchat/text"
"github.com/pkg/errors"
"github.com/twmb/murmur3"
2020-06-04 23:00:41 +00:00
)
2020-07-10 23:26:07 +00:00
// globalID used for atomically generating nonces.
var globalID uint64
// generateNonce creates a nonce that should prevent collision. This function
2020-08-31 04:47:58 +00:00
// will always return a 16-byte long string.
func (f *Field) generateNonce() string {
raw := fmt.Sprintf(
"cchat-gtk/%s/%X/%X",
f.UserID, time.Now().UnixNano(), atomic.AddUint64(&globalID, 1),
)
h1, h2 := murmur3.StringSum128(raw)
nonce := make([]byte, 8*2)
binary.LittleEndian.PutUint64(nonce[0:8], h1)
binary.LittleEndian.PutUint64(nonce[8:16], h2)
return base64.RawURLEncoding.EncodeToString(nonce)
}
func (f *Field) sendInput() {
if f.Sender == nil {
return
}
2020-07-10 23:26:07 +00:00
// Get the input text.
var text = f.getText()
// Are we editing anything?
2020-06-28 23:01:08 +00:00
if id := f.editingID; f.Editable(id) && id != "" {
go func() {
2020-10-15 06:32:11 +00:00
if err := f.editor.Edit(id, text); err != nil {
log.Error(errors.Wrap(err, "Failed to edit message"))
}
}()
f.StopEditing()
return
}
2020-07-10 23:26:07 +00:00
// Get the attachments.
var attachments = f.Attachments.Files()
// Don't send if the message is empty.
if text == "" && len(attachments) == 0 {
return
}
f.SendMessage(SendMessageData{
2020-06-29 02:55:13 +00:00
time: time.Now().UTC(),
content: text,
2020-07-03 03:22:48 +00:00
author: f.Username.GetLabel(),
authorID: f.UserID,
2020-07-03 03:22:48 +00:00
authorURL: f.Username.GetIconURL(),
nonce: f.generateNonce(),
2020-07-10 23:26:07 +00:00
files: attachments,
})
2020-07-10 23:26:07 +00:00
// Clear the input field after sending.
f.clearText()
2020-08-31 04:47:58 +00:00
// Refocus the textbox.
f.text.GrabFocus()
}
func (f *Field) SendMessage(data PresendMessage) {
// presend message into the container through the controller
var onErr = f.ctrl.AddPresendMessage(data)
2020-08-31 04:47:58 +00:00
// Copy the sender to prevent race conditions.
var sender = f.Sender
gts.Async(func() (func(), error) {
2020-10-15 06:32:11 +00:00
if err := sender.Send(data); err != nil {
2020-08-31 04:47:58 +00:00
return func() { onErr(err) }, errors.Wrap(err, "Failed to send message")
}
2020-08-31 04:47:58 +00:00
return nil, nil
})
}
2020-06-04 23:00:41 +00:00
type SendMessageData struct {
time time.Time
2020-06-07 07:06:13 +00:00
content string
author text.Rich
authorID string
authorURL string // avatar
nonce string
2020-07-10 23:26:07 +00:00
files []attachment.File
2020-06-04 23:00:41 +00:00
}
2020-10-15 06:32:11 +00:00
var _ cchat.SendableMessage = (*SendMessageData)(nil)
2020-06-04 23:00:41 +00:00
type PresendMessage interface {
cchat.MessageHeader // returns nonce and time
2020-06-04 23:00:41 +00:00
cchat.SendableMessage
2020-10-15 06:32:11 +00:00
cchat.Noncer
cchat.Attachments
2020-07-10 23:26:07 +00:00
// These methods are reserved for internal use.
2020-06-04 23:00:41 +00:00
Author() text.Rich
AuthorID() string
2020-06-07 07:06:13 +00:00
AuthorAvatarURL() string // may be empty
2020-07-10 23:26:07 +00:00
Files() []attachment.File
2020-06-04 23:00:41 +00:00
}
2020-06-07 07:25:13 +00:00
var _ PresendMessage = (*SendMessageData)(nil)
2020-06-04 23:00:41 +00:00
// ID returns a pseudo ID for internal use.
func (s SendMessageData) ID() string {
return s.nonce
}
func (s SendMessageData) Time() time.Time {
return s.time
}
2020-06-04 23:00:41 +00:00
func (s SendMessageData) Content() string {
return s.content
}
func (s SendMessageData) Author() text.Rich {
return s.author
}
func (s SendMessageData) AuthorID() string {
return s.authorID
}
2020-06-07 07:06:13 +00:00
func (s SendMessageData) AuthorAvatarURL() string {
return s.authorURL
}
2020-10-15 06:32:11 +00:00
func (s SendMessageData) AsNoncer() cchat.Noncer {
return s
}
2020-06-04 23:00:41 +00:00
func (s SendMessageData) Nonce() string {
return s.nonce
}
2020-07-10 23:26:07 +00:00
func (s SendMessageData) Files() []attachment.File {
return s.files
}
2020-10-15 06:32:11 +00:00
func (s SendMessageData) AsAttachments() cchat.Attachments {
return s
}
2020-07-10 23:26:07 +00:00
func (s SendMessageData) Attachments() []cchat.MessageAttachment {
var attachments = make([]cchat.MessageAttachment, len(s.files))
for i, file := range s.files {
attachments[i] = file.AsAttachment()
}
return attachments
}