2020-06-04 23:00:41 +00:00
|
|
|
package input
|
|
|
|
|
|
|
|
import (
|
2020-06-19 22:40:06 +00:00
|
|
|
"encoding/base64"
|
|
|
|
"encoding/binary"
|
2020-06-17 22:58:38 +00:00
|
|
|
"fmt"
|
2020-06-13 07:29:32 +00:00
|
|
|
"sync/atomic"
|
|
|
|
"time"
|
|
|
|
|
2020-06-04 23:00:41 +00:00
|
|
|
"github.com/diamondburned/cchat"
|
2020-06-13 07:29:32 +00:00
|
|
|
"github.com/diamondburned/cchat-gtk/internal/gts"
|
|
|
|
"github.com/diamondburned/cchat-gtk/internal/log"
|
2020-06-04 23:00:41 +00:00
|
|
|
"github.com/diamondburned/cchat/text"
|
2020-06-13 07:29:32 +00:00
|
|
|
"github.com/pkg/errors"
|
2020-06-19 22:40:06 +00:00
|
|
|
"github.com/twmb/murmur3"
|
2020-06-04 23:00:41 +00:00
|
|
|
)
|
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
var globalID uint64
|
|
|
|
|
2020-06-19 22:40:06 +00:00
|
|
|
// generateNonce creates a nonce that should prevent collision. This function
|
|
|
|
// will always return a 24-byte long string.
|
2020-06-17 22:58:38 +00:00
|
|
|
func (f *Field) generateNonce() string {
|
2020-06-19 22:40:06 +00:00
|
|
|
raw := fmt.Sprintf(
|
2020-06-17 22:58:38 +00:00
|
|
|
"cchat-gtk/%s/%X/%X",
|
|
|
|
f.UserID, time.Now().UnixNano(), atomic.AddUint64(&globalID, 1),
|
|
|
|
)
|
2020-06-19 22:40:06 +00:00
|
|
|
|
|
|
|
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)
|
2020-06-17 22:58:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (f *Field) sendInput() {
|
2020-06-13 07:29:32 +00:00
|
|
|
if f.Sender == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var text = f.yankText()
|
|
|
|
if text == "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-06-17 22:58:38 +00:00
|
|
|
// Are we editing anything?
|
2020-06-28 23:01:08 +00:00
|
|
|
if id := f.editingID; f.Editable(id) && id != "" {
|
2020-06-17 22:58:38 +00:00
|
|
|
go func() {
|
|
|
|
if err := f.editor.EditMessage(id, text); err != nil {
|
|
|
|
log.Error(errors.Wrap(err, "Failed to edit message"))
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
f.StopEditing()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-06-13 07:29:32 +00:00
|
|
|
f.SendMessage(SendMessageData{
|
2020-06-29 02:55:13 +00:00
|
|
|
time: time.Now().UTC(),
|
2020-06-13 07:29:32 +00:00
|
|
|
content: text,
|
|
|
|
author: f.username.GetLabel(),
|
|
|
|
authorID: f.UserID,
|
|
|
|
authorURL: f.username.GetIconURL(),
|
2020-06-17 22:58:38 +00:00
|
|
|
nonce: f.generateNonce(),
|
2020-06-13 07:29:32 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *Field) SendMessage(data PresendMessage) {
|
|
|
|
// presend message into the container through the controller
|
|
|
|
var onErr = f.ctrl.AddPresendMessage(data)
|
|
|
|
|
|
|
|
go func(sender cchat.ServerMessageSender) {
|
|
|
|
if err := sender.SendMessage(data); err != nil {
|
|
|
|
gts.ExecAsync(func() { onErr(err) })
|
|
|
|
log.Error(errors.Wrap(err, "Failed to send message"))
|
|
|
|
}
|
|
|
|
}(f.Sender)
|
|
|
|
}
|
|
|
|
|
2020-06-04 23:00:41 +00:00
|
|
|
type SendMessageData struct {
|
2020-06-13 07:29:32 +00:00
|
|
|
time time.Time
|
2020-06-07 07:06:13 +00:00
|
|
|
content string
|
|
|
|
author text.Rich
|
|
|
|
authorID string
|
|
|
|
authorURL string // avatar
|
|
|
|
nonce string
|
2020-06-04 23:00:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type PresendMessage interface {
|
2020-06-13 07:29:32 +00:00
|
|
|
cchat.MessageHeader // returns nonce and time
|
2020-06-04 23:00:41 +00:00
|
|
|
cchat.SendableMessage
|
|
|
|
cchat.MessageNonce
|
|
|
|
|
|
|
|
Author() text.Rich
|
|
|
|
AuthorID() string
|
2020-06-07 07:06:13 +00:00
|
|
|
AuthorAvatarURL() string // may be empty
|
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
|
|
|
|
2020-06-13 07:29:32 +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-06-04 23:00:41 +00:00
|
|
|
func (s SendMessageData) Nonce() string {
|
|
|
|
return s.nonce
|
|
|
|
}
|