5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 16:02:31 +00:00
matterbridge/vendor/github.com/mattermost/mattermost-server/v5/model/file.go

30 lines
613 B
Go
Raw Normal View History

2017-08-16 21:37:37 +00:00
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
2020-08-09 22:29:54 +00:00
// See LICENSE.txt for license information.
2016-04-10 21:39:38 +00:00
package model
import (
"encoding/json"
"io"
)
2017-03-25 20:04:10 +00:00
const (
2020-08-09 22:29:54 +00:00
MaxImageSize = int64(6048 * 4032) // 24 megapixels, roughly 36MB as a raw image
2017-03-25 20:04:10 +00:00
)
2016-04-10 21:39:38 +00:00
type FileUploadResponse struct {
2016-11-12 21:00:53 +00:00
FileInfos []*FileInfo `json:"file_infos"`
ClientIds []string `json:"client_ids"`
2016-04-10 21:39:38 +00:00
}
func FileUploadResponseFromJson(data io.Reader) *FileUploadResponse {
var o *FileUploadResponse
json.NewDecoder(data).Decode(&o)
return o
2016-04-10 21:39:38 +00:00
}
func (o *FileUploadResponse) ToJson() string {
b, _ := json.Marshal(o)
return string(b)
2016-04-10 21:39:38 +00:00
}