2020-08-09 22:29:54 +00:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
|
|
// See LICENSE.txt for license information.
|
2016-04-10 21:39:38 +00:00
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
2018-02-08 23:11:04 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"strings"
|
2018-11-18 17:55:05 +00:00
|
|
|
|
2020-08-09 22:29:54 +00:00
|
|
|
"github.com/mattermost/mattermost-server/v5/utils/jsonutils"
|
2016-04-10 21:39:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
COMMAND_RESPONSE_TYPE_IN_CHANNEL = "in_channel"
|
|
|
|
COMMAND_RESPONSE_TYPE_EPHEMERAL = "ephemeral"
|
|
|
|
)
|
|
|
|
|
|
|
|
type CommandResponse struct {
|
2020-08-09 22:29:54 +00:00
|
|
|
ResponseType string `json:"response_type"`
|
|
|
|
Text string `json:"text"`
|
|
|
|
Username string `json:"username"`
|
|
|
|
ChannelId string `json:"channel_id"`
|
|
|
|
IconURL string `json:"icon_url"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
Props StringInterface `json:"props"`
|
|
|
|
GotoLocation string `json:"goto_location"`
|
|
|
|
TriggerId string `json:"trigger_id"`
|
|
|
|
SkipSlackParsing bool `json:"skip_slack_parsing"` // Set to `true` to skip the Slack-compatibility handling of Text.
|
|
|
|
Attachments []*SlackAttachment `json:"attachments"`
|
|
|
|
ExtraResponses []*CommandResponse `json:"extra_responses"`
|
2016-04-10 21:39:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (o *CommandResponse) ToJson() string {
|
2018-11-18 17:55:05 +00:00
|
|
|
b, _ := json.Marshal(o)
|
|
|
|
return string(b)
|
2016-04-10 21:39:38 +00:00
|
|
|
}
|
|
|
|
|
2018-11-18 17:55:05 +00:00
|
|
|
func CommandResponseFromHTTPBody(contentType string, body io.Reader) (*CommandResponse, error) {
|
2018-02-08 23:11:04 +00:00
|
|
|
if strings.TrimSpace(strings.Split(contentType, ";")[0]) == "application/json" {
|
|
|
|
return CommandResponseFromJson(body)
|
|
|
|
}
|
|
|
|
if b, err := ioutil.ReadAll(body); err == nil {
|
2018-11-18 17:55:05 +00:00
|
|
|
return CommandResponseFromPlainText(string(b)), nil
|
2018-02-08 23:11:04 +00:00
|
|
|
}
|
2018-11-18 17:55:05 +00:00
|
|
|
return nil, nil
|
2018-02-08 23:11:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func CommandResponseFromPlainText(text string) *CommandResponse {
|
|
|
|
return &CommandResponse{
|
|
|
|
Text: text,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-18 17:55:05 +00:00
|
|
|
func CommandResponseFromJson(data io.Reader) (*CommandResponse, error) {
|
|
|
|
b, err := ioutil.ReadAll(data)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2017-03-25 20:04:10 +00:00
|
|
|
|
2018-11-18 17:55:05 +00:00
|
|
|
var o CommandResponse
|
|
|
|
err = json.Unmarshal(b, &o)
|
|
|
|
if err != nil {
|
2021-10-16 22:47:22 +00:00
|
|
|
return nil, jsonutils.HumanizeJSONError(err, b)
|
2016-04-10 21:39:38 +00:00
|
|
|
}
|
2017-03-25 20:04:10 +00:00
|
|
|
|
2018-02-08 23:11:04 +00:00
|
|
|
o.Attachments = StringifySlackFieldValue(o.Attachments)
|
2017-03-25 20:04:10 +00:00
|
|
|
|
2020-08-09 22:29:54 +00:00
|
|
|
if o.ExtraResponses != nil {
|
|
|
|
for _, resp := range o.ExtraResponses {
|
|
|
|
resp.Attachments = StringifySlackFieldValue(resp.Attachments)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-18 17:55:05 +00:00
|
|
|
return &o, nil
|
2016-04-10 21:39:38 +00:00
|
|
|
}
|