Added additional validation for slack attachment format on server (#5680)

Этот коммит содержится в:
Harrison Healey
2017-03-08 04:15:33 -05:00
коммит произвёл George Goldberg
родитель f3a266ee5d
Коммит 5d62b3661b
6 изменённых файлов: 152 добавлений и 86 удалений

28
model/slack_attachment.go Обычный файл
Просмотреть файл

@@ -0,0 +1,28 @@
// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package model
type SlackAttachment struct {
Fallback string `json:"fallback"`
Color string `json:"color"`
Pretext string `json:"pretext"`
AuthorName string `json:"author_name"`
AuthorLink string `json:"author_link"`
AuthorIcon string `json:"author_icon"`
Title string `json:"title"`
TitleLink string `json:"title_link"`
Text string `json:"text"`
Fields []*SlackAttachmentField `json:"fields"`
ImageURL string `json:"image_url"`
ThumbURL string `json:"thumb_url"`
Footer string `json:"footer"`
FooterIcon string `json:"footer_icon"`
Timestamp int64 `json:"ts"`
}
type SlackAttachmentField struct {
Title string `json:"title"`
Value interface{} `json:"value"`
Short bool `json:"short"`
}