mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
24 lines
510 B
Go
24 lines
510 B
Go
package handler
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"gitlab.com/demodesk/neko/server/pkg/types"
|
|
"gitlab.com/demodesk/neko/server/pkg/types/message"
|
|
)
|
|
|
|
func (h *MessageHandlerCtx) clipboardSet(session types.Session, payload *message.ClipboardData) error {
|
|
if !session.Profile().CanAccessClipboard {
|
|
return errors.New("cannot access clipboard")
|
|
}
|
|
|
|
if !session.IsHost() {
|
|
return errors.New("is not the host")
|
|
}
|
|
|
|
return h.desktop.ClipboardSetText(types.ClipboardText{
|
|
Text: payload.Text,
|
|
// TODO: Send HTML?
|
|
})
|
|
}
|