2020-07-18 14:08:25 +00:00
|
|
|
// Copyright (c) 2020 Gary Kim <gary@garykim.dev>, All Rights Reserved
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package ocs
|
|
|
|
|
2020-08-30 11:49:26 +00:00
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2020-07-18 14:08:25 +00:00
|
|
|
// MessageType describes what kind of message a returned Nextcloud Talk message is
|
|
|
|
type MessageType string
|
|
|
|
|
2020-10-01 20:59:35 +00:00
|
|
|
// ActorType describes what kind of actor a returned Nextcloud Talk message is from
|
|
|
|
type ActorType string
|
|
|
|
|
2020-07-18 14:08:25 +00:00
|
|
|
const (
|
|
|
|
// MessageComment is a Nextcloud Talk message that is a comment
|
|
|
|
MessageComment MessageType = "comment"
|
|
|
|
|
|
|
|
// MessageSystem is a Nextcloud Talk message that is a system
|
|
|
|
MessageSystem MessageType = "system"
|
|
|
|
|
|
|
|
// MessageCommand is a Nextcloud Talk message that is a command
|
|
|
|
MessageCommand MessageType = "command"
|
2020-10-01 20:59:35 +00:00
|
|
|
|
|
|
|
// ActorUser is a Nextcloud Talk message sent by a user
|
|
|
|
ActorUser ActorType = "users"
|
|
|
|
|
|
|
|
// ActorGuest is a Nextcloud Talk message sent by a guest
|
|
|
|
ActorGuest ActorType = "guests"
|
2020-07-18 14:08:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// TalkRoomMessageData describes the data part of a ocs response for a Talk room message
|
2020-12-09 23:06:27 +00:00
|
|
|
//
|
|
|
|
// Error will be set if a message request ran into an error.
|
2020-07-18 14:08:25 +00:00
|
|
|
type TalkRoomMessageData struct {
|
2020-12-09 23:06:27 +00:00
|
|
|
Error error `json:"-"`
|
2020-08-30 11:49:26 +00:00
|
|
|
Message string `json:"message"`
|
|
|
|
ID int `json:"id"`
|
2020-10-01 20:59:35 +00:00
|
|
|
ActorType ActorType `json:"actorType"`
|
2020-08-30 11:49:26 +00:00
|
|
|
ActorID string `json:"actorId"`
|
|
|
|
ActorDisplayName string `json:"actorDisplayName"`
|
|
|
|
SystemMessage string `json:"systemMessage"`
|
|
|
|
Timestamp int `json:"timestamp"`
|
|
|
|
MessageType MessageType `json:"messageType"`
|
|
|
|
MessageParameters map[string]RichObjectString `json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// talkRoomMessageParameters is used to unmarshal only MessageParameters
|
|
|
|
type talkRoomMessageParameters struct {
|
|
|
|
MessageParameters map[string]RichObjectString `json:"messageParameters"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// PlainMessage returns the message string with placeholders replaced
|
|
|
|
//
|
|
|
|
// * User and group placeholders will be replaced with the name of the user or group respectively.
|
|
|
|
//
|
|
|
|
// * File placeholders will be replaced with the name of the file.
|
|
|
|
func (m *TalkRoomMessageData) PlainMessage() string {
|
|
|
|
tr := m.Message
|
|
|
|
for key, value := range m.MessageParameters {
|
|
|
|
tr = strings.ReplaceAll(tr, "{"+key+"}", value.Name)
|
|
|
|
}
|
|
|
|
return tr
|
2020-07-18 14:08:25 +00:00
|
|
|
}
|
|
|
|
|
2020-10-01 20:59:35 +00:00
|
|
|
// DisplayName returns the display name for the sender of the message (" (Guest)" is appended if sent by a guest user)
|
|
|
|
func (m *TalkRoomMessageData) DisplayName() string {
|
|
|
|
if m.ActorType == ActorGuest {
|
|
|
|
if m.ActorDisplayName == "" {
|
|
|
|
return "Guest"
|
|
|
|
}
|
|
|
|
return m.ActorDisplayName + " (Guest)"
|
|
|
|
}
|
|
|
|
return m.ActorDisplayName
|
|
|
|
}
|
|
|
|
|
2020-07-18 14:08:25 +00:00
|
|
|
// TalkRoomMessage describes an ocs response for a Talk room message
|
|
|
|
type TalkRoomMessage struct {
|
2020-08-30 11:49:26 +00:00
|
|
|
OCS talkRoomMessage `json:"ocs"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type talkRoomMessage struct {
|
2020-07-18 14:08:25 +00:00
|
|
|
ocs
|
|
|
|
TalkRoomMessage []TalkRoomMessageData `json:"data"`
|
|
|
|
}
|
|
|
|
|
2020-08-30 11:49:26 +00:00
|
|
|
// TalkRoomMessageDataUnmarshal unmarshals given ocs request data and returns a TalkRoomMessageData
|
|
|
|
func TalkRoomMessageDataUnmarshal(data *[]byte) (*TalkRoomMessage, error) {
|
|
|
|
message := &TalkRoomMessage{}
|
|
|
|
err := json.Unmarshal(*data, message)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get RCS
|
|
|
|
var rcs struct {
|
|
|
|
OCS struct {
|
|
|
|
ocs
|
|
|
|
TalkRoomMessage []talkRoomMessageParameters `json:"data"`
|
|
|
|
} `json:"ocs"`
|
|
|
|
}
|
|
|
|
err = json.Unmarshal(*data, &rcs)
|
|
|
|
// There is no RCS data
|
|
|
|
if err != nil {
|
|
|
|
for i := range message.OCS.TalkRoomMessage {
|
|
|
|
message.OCS.TalkRoomMessage[i].MessageParameters = map[string]RichObjectString{}
|
|
|
|
}
|
|
|
|
return message, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// There is RCS data
|
|
|
|
for i := range message.OCS.TalkRoomMessage {
|
|
|
|
message.OCS.TalkRoomMessage[i].MessageParameters = rcs.OCS.TalkRoomMessage[i].MessageParameters
|
|
|
|
}
|
|
|
|
return message, nil
|
|
|
|
}
|
|
|
|
|
2020-07-18 14:08:25 +00:00
|
|
|
// TalkRoomSentResponse describes an ocs response for what is returned when a message is sent
|
|
|
|
type TalkRoomSentResponse struct {
|
2020-08-30 11:49:26 +00:00
|
|
|
OCS talkRoomSentResponse `json:"ocs"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type talkRoomSentResponse struct {
|
2020-07-18 14:08:25 +00:00
|
|
|
ocs
|
|
|
|
TalkRoomMessage TalkRoomMessageData `json:"data"`
|
|
|
|
}
|
2020-08-30 11:49:26 +00:00
|
|
|
|
|
|
|
// TalkRoomSentResponseUnmarshal unmarshals given ocs request data and returns a TalkRoomMessageData
|
|
|
|
func TalkRoomSentResponseUnmarshal(data *[]byte) (*TalkRoomSentResponse, error) {
|
|
|
|
message := &TalkRoomSentResponse{}
|
|
|
|
err := json.Unmarshal(*data, message)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get RCS
|
|
|
|
var rcs struct {
|
|
|
|
OCS struct {
|
|
|
|
ocs
|
|
|
|
TalkRoomMessage talkRoomMessageParameters `json:"data"`
|
|
|
|
} `json:"ocs"`
|
|
|
|
}
|
|
|
|
err = json.Unmarshal(*data, &rcs)
|
|
|
|
// There is no RCS data
|
|
|
|
if err != nil {
|
|
|
|
message.OCS.TalkRoomMessage.MessageParameters = map[string]RichObjectString{}
|
|
|
|
return message, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// There is RCS data
|
|
|
|
message.OCS.TalkRoomMessage.MessageParameters = rcs.OCS.TalkRoomMessage.MessageParameters
|
|
|
|
return message, nil
|
|
|
|
}
|