5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 13:42:30 +00:00
matterbridge/vendor/github.com/mattermost/mattermost-server/model/command_response.go

68 lines
1.7 KiB
Go
Raw Normal View History

2017-08-16 21:37:37 +00:00
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
2016-04-10 21:39:38 +00:00
// See License.txt for license information.
package model
import (
"encoding/json"
"io"
2018-02-08 23:11:04 +00:00
"io/ioutil"
"strings"
"github.com/mattermost/mattermost-server/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 {
2017-03-25 20:04:10 +00:00
ResponseType string `json:"response_type"`
Text string `json:"text"`
Username string `json:"username"`
IconURL string `json:"icon_url"`
2018-02-08 23:11:04 +00:00
Type string `json:"type"`
Props StringInterface `json:"props"`
2017-03-25 20:04:10 +00:00
GotoLocation string `json:"goto_location"`
Attachments []*SlackAttachment `json:"attachments"`
2016-04-10 21:39:38 +00:00
}
func (o *CommandResponse) ToJson() string {
b, _ := json.Marshal(o)
return string(b)
2016-04-10 21:39:38 +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 {
return CommandResponseFromPlainText(string(b)), nil
2018-02-08 23:11:04 +00:00
}
return nil, nil
2018-02-08 23:11:04 +00:00
}
func CommandResponseFromPlainText(text string) *CommandResponse {
return &CommandResponse{
Text: text,
}
}
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
var o CommandResponse
err = json.Unmarshal(b, &o)
if err != nil {
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
return &o, nil
2016-04-10 21:39:38 +00:00
}