2017-04-12 08:27:57 -04:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
2019-11-29 12:59:40 +01:00
|
|
|
// See LICENSE.txt for license information.
|
2015-06-14 23:53:32 -08:00
|
|
|
|
|
|
|
|
package model
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"encoding/json"
|
2020-03-13 21:12:20 +01:00
|
|
|
"errors"
|
2015-06-14 23:53:32 -08:00
|
|
|
"io"
|
2017-09-15 13:32:11 +01:00
|
|
|
"net/http"
|
2020-03-03 05:22:49 -05:00
|
|
|
"regexp"
|
2018-01-22 15:32:50 -06:00
|
|
|
"sort"
|
2017-09-27 11:09:09 -04:00
|
|
|
"strings"
|
2020-03-13 21:12:20 +01:00
|
|
|
"sync"
|
2015-11-05 09:25:59 -05:00
|
|
|
"unicode/utf8"
|
2018-01-22 15:32:50 -06:00
|
|
|
|
2019-11-28 14:39:38 +01:00
|
|
|
"github.com/mattermost/mattermost-server/v5/utils/markdown"
|
2015-06-14 23:53:32 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
const (
|
2018-01-19 00:05:00 +03:00
|
|
|
POST_SYSTEM_MESSAGE_PREFIX = "system_"
|
|
|
|
|
POST_DEFAULT = ""
|
|
|
|
|
POST_SLACK_ATTACHMENT = "slack_attachment"
|
|
|
|
|
POST_SYSTEM_GENERIC = "system_generic"
|
|
|
|
|
POST_JOIN_LEAVE = "system_join_leave" // Deprecated, use POST_JOIN_CHANNEL or POST_LEAVE_CHANNEL instead
|
|
|
|
|
POST_JOIN_CHANNEL = "system_join_channel"
|
2019-08-26 12:02:45 +02:00
|
|
|
POST_GUEST_JOIN_CHANNEL = "system_guest_join_channel"
|
2018-01-19 00:05:00 +03:00
|
|
|
POST_LEAVE_CHANNEL = "system_leave_channel"
|
|
|
|
|
POST_JOIN_TEAM = "system_join_team"
|
|
|
|
|
POST_LEAVE_TEAM = "system_leave_team"
|
2018-04-12 12:02:36 -07:00
|
|
|
POST_AUTO_RESPONDER = "system_auto_responder"
|
2018-01-19 00:05:00 +03:00
|
|
|
POST_ADD_REMOVE = "system_add_remove" // Deprecated, use POST_ADD_TO_CHANNEL or POST_REMOVE_FROM_CHANNEL instead
|
|
|
|
|
POST_ADD_TO_CHANNEL = "system_add_to_channel"
|
2019-08-26 12:02:45 +02:00
|
|
|
POST_ADD_GUEST_TO_CHANNEL = "system_add_guest_to_chan"
|
2018-01-19 00:05:00 +03:00
|
|
|
POST_REMOVE_FROM_CHANNEL = "system_remove_from_channel"
|
2018-02-07 09:17:18 -05:00
|
|
|
POST_MOVE_CHANNEL = "system_move_channel"
|
2018-01-23 15:07:31 -05:00
|
|
|
POST_ADD_TO_TEAM = "system_add_to_team"
|
|
|
|
|
POST_REMOVE_FROM_TEAM = "system_remove_from_team"
|
2018-01-19 00:05:00 +03:00
|
|
|
POST_HEADER_CHANGE = "system_header_change"
|
|
|
|
|
POST_DISPLAYNAME_CHANGE = "system_displayname_change"
|
2018-03-27 21:14:42 +08:00
|
|
|
POST_CONVERT_CHANNEL = "system_convert_channel"
|
2018-01-19 00:05:00 +03:00
|
|
|
POST_PURPOSE_CHANGE = "system_purpose_change"
|
|
|
|
|
POST_CHANNEL_DELETED = "system_channel_deleted"
|
2020-01-09 00:42:29 -08:00
|
|
|
POST_CHANNEL_RESTORED = "system_channel_restored"
|
2018-01-19 00:05:00 +03:00
|
|
|
POST_EPHEMERAL = "system_ephemeral"
|
|
|
|
|
POST_CHANGE_CHANNEL_PRIVACY = "system_change_chan_privacy"
|
2019-06-13 07:36:13 -04:00
|
|
|
POST_ADD_BOT_TEAMS_CHANNELS = "add_bot_teams_channels"
|
2018-01-19 00:05:00 +03:00
|
|
|
POST_FILEIDS_MAX_RUNES = 150
|
|
|
|
|
POST_FILENAMES_MAX_RUNES = 4000
|
|
|
|
|
POST_HASHTAGS_MAX_RUNES = 1000
|
Relax 4k post message limit (#8478)
* MM-9661: rename POST_MESSAGE_MAX_RUNES to \0_v1
* MM-9661: s/4000/POST_MESSAGE_MAX_RUNES_V1/ in tests
* MM-9661: introduce POST_MESSAGE_MAX_RUNES_V2
* MM-9661: migrate Postgres Posts.Message column to TEXT from VARCHAR(4000)
This is safe to do in a production instance since the underyling type is
not changing. We explicitly don't do this automatically for MySQL, but
also don't need to since the ORM would have already created a TEXT column
for MySQL in that case.
* MM-9661: emit MaxPostSize in client config
This value remains unconfigurable at this time, but exposes the current
limit to the client. The limit remains at 4k in this commit.
* MM-9661: introduce and use SqlPostStore.GetMaxPostSize
Enforce a byte limitation in the database, and use 1/4 of that value as
the rune count limitation (assuming a worst case UTF-8 representation).
* move maxPostSizeCached, lastPostsCache and lastPostTimeCache out of the global context and onto the SqlPostStore
* address feedback from code review:
* ensure sqlstore unit tests are actually being run
* move global caches into SqlPostStore
* leverage sync.Once to address a race condition
* modify upgrade semantics to match new db semantics
gorp's behaviour on creating columns with a maximum length on Postgres
differs from MySQL:
* Postgres
* gorp uses TEXT for string columns without a maximum length
* gorp uses VARCHAR(N) for string columns with a maximum length of N
* MySQL
* gorp uses TEXT for string columns with a maximum length >= 256
* gorp uses VARCHAR(N) for string columns with a maximum length of N
* gorp defaults to a maximum length of 255, implying VARCHAR(255)
So the Message column has been TEXT on MySQL but VARCHAR(4000) on
Postgres. With the new, longer limits of 65535, and without changes to
gorp, the expected behaviour is TEXT on MySQL and VARCHAR(65535) on
Postgres. This commit makes the upgrade semantics match the new database
semantics.
Ideally, we'd revisit the gorp behaviour at a later time.
* allow TestMaxPostSize test cases to actually run in parallel
* default maxPostSizeCached to POST_MESSAGE_MAX_RUNES_V1 in case the once initializer panics
* fix casting error
* MM-9661: skip the schema migration for Postgres
It turns out resizing VARCHAR requires a rewrite in some versions of
Postgres, but migrating VARCHAR to TEXT does not. Given the increasing
complexity, let's defer the migration to the enduser instead.
2018-03-26 17:55:35 -04:00
|
|
|
POST_MESSAGE_MAX_RUNES_V1 = 4000
|
|
|
|
|
POST_MESSAGE_MAX_BYTES_V2 = 65535 // Maximum size of a TEXT column in MySQL
|
|
|
|
|
POST_MESSAGE_MAX_RUNES_V2 = POST_MESSAGE_MAX_BYTES_V2 / 4 // Assume a worst-case representation
|
2018-01-19 00:05:00 +03:00
|
|
|
POST_PROPS_MAX_RUNES = 8000
|
|
|
|
|
POST_PROPS_MAX_USER_RUNES = POST_PROPS_MAX_RUNES - 400 // Leave some room for system / pre-save modifications
|
|
|
|
|
POST_CUSTOM_TYPE_PREFIX = "custom_"
|
2019-06-20 17:16:36 -04:00
|
|
|
POST_ME = "me"
|
2018-01-19 00:05:00 +03:00
|
|
|
PROPS_ADD_CHANNEL_MEMBER = "add_channel_member"
|
2019-07-17 09:01:18 +00:00
|
|
|
|
|
|
|
|
POST_PROPS_ADDED_USER_ID = "addedUserId"
|
|
|
|
|
POST_PROPS_DELETE_BY = "deleteBy"
|
|
|
|
|
POST_PROPS_OVERRIDE_ICON_URL = "override_icon_url"
|
|
|
|
|
POST_PROPS_OVERRIDE_ICON_EMOJI = "override_icon_emoji"
|
2020-03-03 05:22:49 -05:00
|
|
|
|
|
|
|
|
POST_PROPS_MENTION_HIGHLIGHT_DISABLED = "mentionHighlightDisabled"
|
2020-05-05 06:00:59 -04:00
|
|
|
POST_PROPS_GROUP_HIGHLIGHT_DISABLED = "disable_group_highlight"
|
2020-07-22 20:32:21 -07:00
|
|
|
POST_SYSTEM_WARN_METRIC_STATUS = "warn_metric_status"
|
2015-06-14 23:53:32 -08:00
|
|
|
)
|
|
|
|
|
|
2020-05-05 06:00:59 -04:00
|
|
|
var AT_MENTION_PATTEN = regexp.MustCompile(`\B@`)
|
|
|
|
|
|
2015-06-14 23:53:32 -08:00
|
|
|
type Post struct {
|
2018-01-22 15:32:50 -06:00
|
|
|
Id string `json:"id"`
|
|
|
|
|
CreateAt int64 `json:"create_at"`
|
|
|
|
|
UpdateAt int64 `json:"update_at"`
|
|
|
|
|
EditAt int64 `json:"edit_at"`
|
|
|
|
|
DeleteAt int64 `json:"delete_at"`
|
|
|
|
|
IsPinned bool `json:"is_pinned"`
|
|
|
|
|
UserId string `json:"user_id"`
|
|
|
|
|
ChannelId string `json:"channel_id"`
|
|
|
|
|
RootId string `json:"root_id"`
|
|
|
|
|
ParentId string `json:"parent_id"`
|
|
|
|
|
OriginalId string `json:"original_id"`
|
|
|
|
|
|
|
|
|
|
Message string `json:"message"`
|
|
|
|
|
// MessageSource will contain the message as submitted by the user if Message has been modified
|
|
|
|
|
// by Mattermost for presentation (e.g if an image proxy is being used). It should be used to
|
|
|
|
|
// populate edit boxes if present.
|
|
|
|
|
MessageSource string `json:"message_source,omitempty" db:"-"`
|
|
|
|
|
|
2015-11-05 23:32:44 +01:00
|
|
|
Type string `json:"type"`
|
2020-03-13 21:12:20 +01:00
|
|
|
propsMu sync.RWMutex `db:"-"` // Unexported mutex used to guard Post.Props.
|
|
|
|
|
Props StringInterface `json:"props"` // Deprecated: use GetProps()
|
2015-11-05 23:32:44 +01:00
|
|
|
Hashtags string `json:"hashtags"`
|
2016-09-30 11:06:30 -04:00
|
|
|
Filenames StringArray `json:"filenames,omitempty"` // Deprecated, do not use this field any more
|
2018-11-22 13:09:27 -05:00
|
|
|
FileIds StringArray `json:"file_ids,omitempty"`
|
2015-11-05 23:32:44 +01:00
|
|
|
PendingPostId string `json:"pending_post_id" db:"-"`
|
2018-11-22 13:09:27 -05:00
|
|
|
HasReactions bool `json:"has_reactions,omitempty"`
|
2018-08-07 16:24:56 -04:00
|
|
|
|
2018-10-24 04:49:55 -04:00
|
|
|
// Transient data populated before sending a post to the client
|
2020-02-05 13:27:35 +01:00
|
|
|
ReplyCount int64 `json:"reply_count" db:"-"`
|
|
|
|
|
Metadata *PostMetadata `json:"metadata,omitempty" db:"-"`
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
2018-04-17 14:20:47 +02:00
|
|
|
type PostEphemeral struct {
|
|
|
|
|
UserID string `json:"user_id"`
|
|
|
|
|
Post *Post `json:"post"`
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-30 00:06:51 +09:00
|
|
|
type PostPatch struct {
|
|
|
|
|
IsPinned *bool `json:"is_pinned"`
|
|
|
|
|
Message *string `json:"message"`
|
|
|
|
|
Props *StringInterface `json:"props"`
|
|
|
|
|
FileIds *StringArray `json:"file_ids"`
|
|
|
|
|
HasReactions *bool `json:"has_reactions"`
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-28 13:09:32 -04:00
|
|
|
type SearchParameter struct {
|
2018-09-26 07:27:04 -07:00
|
|
|
Terms *string `json:"terms"`
|
|
|
|
|
IsOrSearch *bool `json:"is_or_search"`
|
|
|
|
|
TimeZoneOffset *int `json:"time_zone_offset"`
|
|
|
|
|
Page *int `json:"page"`
|
|
|
|
|
PerPage *int `json:"per_page"`
|
|
|
|
|
IncludeDeletedChannels *bool `json:"include_deleted_channels"`
|
2018-08-28 13:09:32 -04:00
|
|
|
}
|
|
|
|
|
|
2019-07-02 16:10:22 -05:00
|
|
|
type AnalyticsPostCountsOptions struct {
|
|
|
|
|
TeamId string
|
|
|
|
|
BotsOnly bool
|
|
|
|
|
YesterdayOnly bool
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-22 15:32:50 -06:00
|
|
|
func (o *PostPatch) WithRewrittenImageURLs(f func(string) string) *PostPatch {
|
|
|
|
|
copy := *o
|
|
|
|
|
if copy.Message != nil {
|
|
|
|
|
*copy.Message = RewriteImageURLs(*o.Message, f)
|
|
|
|
|
}
|
|
|
|
|
return ©
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-17 15:51:26 +01:00
|
|
|
type PostForExport struct {
|
|
|
|
|
Post
|
|
|
|
|
TeamName string
|
|
|
|
|
ChannelName string
|
|
|
|
|
Username string
|
|
|
|
|
ReplyCount int
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-15 12:28:43 -03:00
|
|
|
type DirectPostForExport struct {
|
|
|
|
|
Post
|
|
|
|
|
User string
|
|
|
|
|
ChannelMembers *[]string
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-17 15:51:26 +01:00
|
|
|
type ReplyForExport struct {
|
|
|
|
|
Post
|
|
|
|
|
Username string
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-11 09:09:15 +01:00
|
|
|
type PostForIndexing struct {
|
|
|
|
|
Post
|
|
|
|
|
TeamId string `json:"team_id"`
|
|
|
|
|
ParentCreateAt *int64 `json:"parent_create_at"`
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-13 21:12:20 +01:00
|
|
|
// ShallowCopy is an utility function to shallow copy a Post to the given
|
|
|
|
|
// destination without touching the internal RWMutex.
|
|
|
|
|
func (o *Post) ShallowCopy(dst *Post) error {
|
|
|
|
|
if dst == nil {
|
|
|
|
|
return errors.New("dst cannot be nil")
|
|
|
|
|
}
|
|
|
|
|
o.propsMu.RLock()
|
|
|
|
|
defer o.propsMu.RUnlock()
|
|
|
|
|
dst.propsMu.Lock()
|
|
|
|
|
defer dst.propsMu.Unlock()
|
|
|
|
|
dst.Id = o.Id
|
|
|
|
|
dst.CreateAt = o.CreateAt
|
|
|
|
|
dst.UpdateAt = o.UpdateAt
|
|
|
|
|
dst.EditAt = o.EditAt
|
|
|
|
|
dst.DeleteAt = o.DeleteAt
|
|
|
|
|
dst.IsPinned = o.IsPinned
|
|
|
|
|
dst.UserId = o.UserId
|
|
|
|
|
dst.ChannelId = o.ChannelId
|
|
|
|
|
dst.RootId = o.RootId
|
|
|
|
|
dst.ParentId = o.ParentId
|
|
|
|
|
dst.OriginalId = o.OriginalId
|
|
|
|
|
dst.Message = o.Message
|
|
|
|
|
dst.MessageSource = o.MessageSource
|
|
|
|
|
dst.Type = o.Type
|
|
|
|
|
dst.Props = o.Props
|
|
|
|
|
dst.Hashtags = o.Hashtags
|
|
|
|
|
dst.Filenames = o.Filenames
|
|
|
|
|
dst.FileIds = o.FileIds
|
|
|
|
|
dst.PendingPostId = o.PendingPostId
|
|
|
|
|
dst.HasReactions = o.HasReactions
|
|
|
|
|
dst.ReplyCount = o.ReplyCount
|
|
|
|
|
dst.Metadata = o.Metadata
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Clone shallowly copies the post and returns the copy.
|
2018-08-07 16:24:56 -04:00
|
|
|
func (o *Post) Clone() *Post {
|
2020-03-13 21:12:20 +01:00
|
|
|
copy := &Post{}
|
|
|
|
|
o.ShallowCopy(copy)
|
|
|
|
|
return copy
|
2018-08-07 16:24:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (o *Post) ToJson() string {
|
|
|
|
|
copy := o.Clone()
|
2017-08-29 16:14:59 -05:00
|
|
|
copy.StripActionIntegrations()
|
2018-08-07 16:24:56 -04:00
|
|
|
b, _ := json.Marshal(copy)
|
2018-02-08 10:54:45 -06:00
|
|
|
return string(b)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (o *Post) ToUnsanitizedJson() string {
|
|
|
|
|
b, _ := json.Marshal(o)
|
|
|
|
|
return string(b)
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
2020-02-05 13:27:35 +01:00
|
|
|
type GetPostsSinceOptions struct {
|
|
|
|
|
ChannelId string
|
|
|
|
|
Time int64
|
|
|
|
|
SkipFetchThreads bool
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type GetPostsOptions struct {
|
|
|
|
|
ChannelId string
|
|
|
|
|
PostId string
|
|
|
|
|
Page int
|
|
|
|
|
PerPage int
|
|
|
|
|
SkipFetchThreads bool
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-14 23:53:32 -08:00
|
|
|
func PostFromJson(data io.Reader) *Post {
|
2018-01-30 17:23:00 -06:00
|
|
|
var o *Post
|
|
|
|
|
json.NewDecoder(data).Decode(&o)
|
|
|
|
|
return o
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (o *Post) Etag() string {
|
|
|
|
|
return Etag(o.Id, o.UpdateAt)
|
|
|
|
|
}
|
|
|
|
|
|
Relax 4k post message limit (#8478)
* MM-9661: rename POST_MESSAGE_MAX_RUNES to \0_v1
* MM-9661: s/4000/POST_MESSAGE_MAX_RUNES_V1/ in tests
* MM-9661: introduce POST_MESSAGE_MAX_RUNES_V2
* MM-9661: migrate Postgres Posts.Message column to TEXT from VARCHAR(4000)
This is safe to do in a production instance since the underyling type is
not changing. We explicitly don't do this automatically for MySQL, but
also don't need to since the ORM would have already created a TEXT column
for MySQL in that case.
* MM-9661: emit MaxPostSize in client config
This value remains unconfigurable at this time, but exposes the current
limit to the client. The limit remains at 4k in this commit.
* MM-9661: introduce and use SqlPostStore.GetMaxPostSize
Enforce a byte limitation in the database, and use 1/4 of that value as
the rune count limitation (assuming a worst case UTF-8 representation).
* move maxPostSizeCached, lastPostsCache and lastPostTimeCache out of the global context and onto the SqlPostStore
* address feedback from code review:
* ensure sqlstore unit tests are actually being run
* move global caches into SqlPostStore
* leverage sync.Once to address a race condition
* modify upgrade semantics to match new db semantics
gorp's behaviour on creating columns with a maximum length on Postgres
differs from MySQL:
* Postgres
* gorp uses TEXT for string columns without a maximum length
* gorp uses VARCHAR(N) for string columns with a maximum length of N
* MySQL
* gorp uses TEXT for string columns with a maximum length >= 256
* gorp uses VARCHAR(N) for string columns with a maximum length of N
* gorp defaults to a maximum length of 255, implying VARCHAR(255)
So the Message column has been TEXT on MySQL but VARCHAR(4000) on
Postgres. With the new, longer limits of 65535, and without changes to
gorp, the expected behaviour is TEXT on MySQL and VARCHAR(65535) on
Postgres. This commit makes the upgrade semantics match the new database
semantics.
Ideally, we'd revisit the gorp behaviour at a later time.
* allow TestMaxPostSize test cases to actually run in parallel
* default maxPostSizeCached to POST_MESSAGE_MAX_RUNES_V1 in case the once initializer panics
* fix casting error
* MM-9661: skip the schema migration for Postgres
It turns out resizing VARCHAR requires a rewrite in some versions of
Postgres, but migrating VARCHAR to TEXT does not. Given the increasing
complexity, let's defer the migration to the enduser instead.
2018-03-26 17:55:35 -04:00
|
|
|
func (o *Post) IsValid(maxPostSize int) *AppError {
|
2020-05-07 22:57:35 +05:30
|
|
|
if !IsValidId(o.Id) {
|
2017-09-15 13:32:11 +01:00
|
|
|
return NewAppError("Post.IsValid", "model.post.is_valid.id.app_error", nil, "", http.StatusBadRequest)
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if o.CreateAt == 0 {
|
2017-09-15 13:32:11 +01:00
|
|
|
return NewAppError("Post.IsValid", "model.post.is_valid.create_at.app_error", nil, "id="+o.Id, http.StatusBadRequest)
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if o.UpdateAt == 0 {
|
2017-09-15 13:32:11 +01:00
|
|
|
return NewAppError("Post.IsValid", "model.post.is_valid.update_at.app_error", nil, "id="+o.Id, http.StatusBadRequest)
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
2020-05-07 22:57:35 +05:30
|
|
|
if !IsValidId(o.UserId) {
|
2017-09-15 13:32:11 +01:00
|
|
|
return NewAppError("Post.IsValid", "model.post.is_valid.user_id.app_error", nil, "", http.StatusBadRequest)
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
2020-05-07 22:57:35 +05:30
|
|
|
if !IsValidId(o.ChannelId) {
|
2017-09-15 13:32:11 +01:00
|
|
|
return NewAppError("Post.IsValid", "model.post.is_valid.channel_id.app_error", nil, "", http.StatusBadRequest)
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
2020-05-07 22:57:35 +05:30
|
|
|
if !(IsValidId(o.RootId) || len(o.RootId) == 0) {
|
2017-09-15 13:32:11 +01:00
|
|
|
return NewAppError("Post.IsValid", "model.post.is_valid.root_id.app_error", nil, "", http.StatusBadRequest)
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
2020-05-07 22:57:35 +05:30
|
|
|
if !(IsValidId(o.ParentId) || len(o.ParentId) == 0) {
|
2017-09-15 13:32:11 +01:00
|
|
|
return NewAppError("Post.IsValid", "model.post.is_valid.parent_id.app_error", nil, "", http.StatusBadRequest)
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if len(o.ParentId) == 26 && len(o.RootId) == 0 {
|
2017-09-15 13:32:11 +01:00
|
|
|
return NewAppError("Post.IsValid", "model.post.is_valid.root_parent.app_error", nil, "", http.StatusBadRequest)
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if !(len(o.OriginalId) == 26 || len(o.OriginalId) == 0) {
|
2017-09-15 13:32:11 +01:00
|
|
|
return NewAppError("Post.IsValid", "model.post.is_valid.original_id.app_error", nil, "", http.StatusBadRequest)
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
Relax 4k post message limit (#8478)
* MM-9661: rename POST_MESSAGE_MAX_RUNES to \0_v1
* MM-9661: s/4000/POST_MESSAGE_MAX_RUNES_V1/ in tests
* MM-9661: introduce POST_MESSAGE_MAX_RUNES_V2
* MM-9661: migrate Postgres Posts.Message column to TEXT from VARCHAR(4000)
This is safe to do in a production instance since the underyling type is
not changing. We explicitly don't do this automatically for MySQL, but
also don't need to since the ORM would have already created a TEXT column
for MySQL in that case.
* MM-9661: emit MaxPostSize in client config
This value remains unconfigurable at this time, but exposes the current
limit to the client. The limit remains at 4k in this commit.
* MM-9661: introduce and use SqlPostStore.GetMaxPostSize
Enforce a byte limitation in the database, and use 1/4 of that value as
the rune count limitation (assuming a worst case UTF-8 representation).
* move maxPostSizeCached, lastPostsCache and lastPostTimeCache out of the global context and onto the SqlPostStore
* address feedback from code review:
* ensure sqlstore unit tests are actually being run
* move global caches into SqlPostStore
* leverage sync.Once to address a race condition
* modify upgrade semantics to match new db semantics
gorp's behaviour on creating columns with a maximum length on Postgres
differs from MySQL:
* Postgres
* gorp uses TEXT for string columns without a maximum length
* gorp uses VARCHAR(N) for string columns with a maximum length of N
* MySQL
* gorp uses TEXT for string columns with a maximum length >= 256
* gorp uses VARCHAR(N) for string columns with a maximum length of N
* gorp defaults to a maximum length of 255, implying VARCHAR(255)
So the Message column has been TEXT on MySQL but VARCHAR(4000) on
Postgres. With the new, longer limits of 65535, and without changes to
gorp, the expected behaviour is TEXT on MySQL and VARCHAR(65535) on
Postgres. This commit makes the upgrade semantics match the new database
semantics.
Ideally, we'd revisit the gorp behaviour at a later time.
* allow TestMaxPostSize test cases to actually run in parallel
* default maxPostSizeCached to POST_MESSAGE_MAX_RUNES_V1 in case the once initializer panics
* fix casting error
* MM-9661: skip the schema migration for Postgres
It turns out resizing VARCHAR requires a rewrite in some versions of
Postgres, but migrating VARCHAR to TEXT does not. Given the increasing
complexity, let's defer the migration to the enduser instead.
2018-03-26 17:55:35 -04:00
|
|
|
if utf8.RuneCountInString(o.Message) > maxPostSize {
|
2017-09-15 13:32:11 +01:00
|
|
|
return NewAppError("Post.IsValid", "model.post.is_valid.msg.app_error", nil, "id="+o.Id, http.StatusBadRequest)
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
2016-12-02 13:13:15 +00:00
|
|
|
if utf8.RuneCountInString(o.Hashtags) > POST_HASHTAGS_MAX_RUNES {
|
2017-09-15 13:32:11 +01:00
|
|
|
return NewAppError("Post.IsValid", "model.post.is_valid.hashtags.app_error", nil, "id="+o.Id, http.StatusBadRequest)
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
2017-12-08 22:15:33 +03:00
|
|
|
switch o.Type {
|
|
|
|
|
case
|
|
|
|
|
POST_DEFAULT,
|
2019-12-06 20:00:47 -06:00
|
|
|
POST_SYSTEM_GENERIC,
|
2017-12-08 22:15:33 +03:00
|
|
|
POST_JOIN_LEAVE,
|
2018-04-12 12:02:36 -07:00
|
|
|
POST_AUTO_RESPONDER,
|
2017-12-08 22:15:33 +03:00
|
|
|
POST_ADD_REMOVE,
|
|
|
|
|
POST_JOIN_CHANNEL,
|
2019-08-26 12:02:45 +02:00
|
|
|
POST_GUEST_JOIN_CHANNEL,
|
2017-12-08 22:15:33 +03:00
|
|
|
POST_LEAVE_CHANNEL,
|
2018-01-10 14:22:51 -05:00
|
|
|
POST_JOIN_TEAM,
|
2017-12-08 22:15:33 +03:00
|
|
|
POST_LEAVE_TEAM,
|
|
|
|
|
POST_ADD_TO_CHANNEL,
|
2019-08-26 12:02:45 +02:00
|
|
|
POST_ADD_GUEST_TO_CHANNEL,
|
2018-01-10 14:22:51 -05:00
|
|
|
POST_REMOVE_FROM_CHANNEL,
|
2018-02-07 09:17:18 -05:00
|
|
|
POST_MOVE_CHANNEL,
|
2017-12-08 22:15:33 +03:00
|
|
|
POST_ADD_TO_TEAM,
|
2018-01-10 14:22:51 -05:00
|
|
|
POST_REMOVE_FROM_TEAM,
|
2017-12-08 22:15:33 +03:00
|
|
|
POST_SLACK_ATTACHMENT,
|
|
|
|
|
POST_HEADER_CHANGE,
|
|
|
|
|
POST_PURPOSE_CHANGE,
|
|
|
|
|
POST_DISPLAYNAME_CHANGE,
|
2018-03-27 21:14:42 +08:00
|
|
|
POST_CONVERT_CHANNEL,
|
2018-01-19 00:05:00 +03:00
|
|
|
POST_CHANNEL_DELETED,
|
2020-01-09 00:42:29 -08:00
|
|
|
POST_CHANNEL_RESTORED,
|
2019-06-13 07:36:13 -04:00
|
|
|
POST_CHANGE_CHANNEL_PRIVACY,
|
2019-06-20 17:16:36 -04:00
|
|
|
POST_ME,
|
2020-07-22 20:32:21 -07:00
|
|
|
POST_ADD_BOT_TEAMS_CHANNELS,
|
|
|
|
|
POST_SYSTEM_WARN_METRIC_STATUS:
|
2017-12-08 22:15:33 +03:00
|
|
|
default:
|
|
|
|
|
if !strings.HasPrefix(o.Type, POST_CUSTOM_TYPE_PREFIX) {
|
|
|
|
|
return NewAppError("Post.IsValid", "model.post.is_valid.type.app_error", nil, "id="+o.Type, http.StatusBadRequest)
|
|
|
|
|
}
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
2016-12-02 13:13:15 +00:00
|
|
|
if utf8.RuneCountInString(ArrayToJson(o.Filenames)) > POST_FILENAMES_MAX_RUNES {
|
2017-09-15 13:32:11 +01:00
|
|
|
return NewAppError("Post.IsValid", "model.post.is_valid.filenames.app_error", nil, "id="+o.Id, http.StatusBadRequest)
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
2016-12-02 13:13:15 +00:00
|
|
|
if utf8.RuneCountInString(ArrayToJson(o.FileIds)) > POST_FILEIDS_MAX_RUNES {
|
2017-09-15 13:32:11 +01:00
|
|
|
return NewAppError("Post.IsValid", "model.post.is_valid.file_ids.app_error", nil, "id="+o.Id, http.StatusBadRequest)
|
2016-09-30 11:06:30 -04:00
|
|
|
}
|
|
|
|
|
|
2020-03-13 21:12:20 +01:00
|
|
|
if utf8.RuneCountInString(StringInterfaceToJson(o.GetProps())) > POST_PROPS_MAX_RUNES {
|
2017-09-15 13:32:11 +01:00
|
|
|
return NewAppError("Post.IsValid", "model.post.is_valid.props.app_error", nil, "id="+o.Id, http.StatusBadRequest)
|
2015-12-03 11:57:20 -05:00
|
|
|
}
|
|
|
|
|
|
2015-06-14 23:53:32 -08:00
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-21 01:38:26 +08:00
|
|
|
func (o *Post) SanitizeProps() {
|
|
|
|
|
membersToSanitize := []string{
|
|
|
|
|
PROPS_ADD_CHANNEL_MEMBER,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for _, member := range membersToSanitize {
|
2020-03-13 21:12:20 +01:00
|
|
|
if _, ok := o.GetProps()[member]; ok {
|
|
|
|
|
o.DelProp(member)
|
2017-10-21 01:38:26 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-14 23:53:32 -08:00
|
|
|
func (o *Post) PreSave() {
|
|
|
|
|
if o.Id == "" {
|
|
|
|
|
o.Id = NewId()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
o.OriginalId = ""
|
|
|
|
|
|
2015-10-02 20:16:27 +10:00
|
|
|
if o.CreateAt == 0 {
|
|
|
|
|
o.CreateAt = GetMillis()
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-14 23:53:32 -08:00
|
|
|
o.UpdateAt = o.CreateAt
|
2017-09-19 16:05:20 -05:00
|
|
|
o.PreCommit()
|
|
|
|
|
}
|
2015-06-14 23:53:32 -08:00
|
|
|
|
2017-09-19 16:05:20 -05:00
|
|
|
func (o *Post) PreCommit() {
|
2020-03-13 21:12:20 +01:00
|
|
|
if o.GetProps() == nil {
|
|
|
|
|
o.SetProps(make(map[string]interface{}))
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if o.Filenames == nil {
|
|
|
|
|
o.Filenames = []string{}
|
|
|
|
|
}
|
2016-09-30 11:06:30 -04:00
|
|
|
|
|
|
|
|
if o.FileIds == nil {
|
|
|
|
|
o.FileIds = []string{}
|
|
|
|
|
}
|
2017-09-19 16:05:20 -05:00
|
|
|
|
|
|
|
|
o.GenerateActionIds()
|
2019-01-22 16:58:22 -04:00
|
|
|
|
|
|
|
|
// There's a rare bug where the client sends up duplicate FileIds so protect against that
|
|
|
|
|
o.FileIds = RemoveDuplicateStrings(o.FileIds)
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (o *Post) MakeNonNil() {
|
2020-03-13 21:12:20 +01:00
|
|
|
if o.GetProps() == nil {
|
|
|
|
|
o.SetProps(make(map[string]interface{}))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (o *Post) DelProp(key string) {
|
|
|
|
|
o.propsMu.Lock()
|
|
|
|
|
defer o.propsMu.Unlock()
|
|
|
|
|
propsCopy := make(map[string]interface{}, len(o.Props)-1)
|
|
|
|
|
for k, v := range o.Props {
|
|
|
|
|
propsCopy[k] = v
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
2020-03-13 21:12:20 +01:00
|
|
|
delete(propsCopy, key)
|
|
|
|
|
o.Props = propsCopy
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
2015-11-05 23:32:44 +01:00
|
|
|
func (o *Post) AddProp(key string, value interface{}) {
|
2020-03-13 21:12:20 +01:00
|
|
|
o.propsMu.Lock()
|
|
|
|
|
defer o.propsMu.Unlock()
|
|
|
|
|
propsCopy := make(map[string]interface{}, len(o.Props)+1)
|
|
|
|
|
for k, v := range o.Props {
|
|
|
|
|
propsCopy[k] = v
|
|
|
|
|
}
|
|
|
|
|
propsCopy[key] = value
|
|
|
|
|
o.Props = propsCopy
|
|
|
|
|
}
|
2015-06-14 23:53:32 -08:00
|
|
|
|
2020-03-13 21:12:20 +01:00
|
|
|
func (o *Post) GetProps() StringInterface {
|
|
|
|
|
o.propsMu.RLock()
|
|
|
|
|
defer o.propsMu.RUnlock()
|
|
|
|
|
return o.Props
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (o *Post) SetProps(props StringInterface) {
|
|
|
|
|
o.propsMu.Lock()
|
|
|
|
|
defer o.propsMu.Unlock()
|
|
|
|
|
o.Props = props
|
|
|
|
|
}
|
2015-06-14 23:53:32 -08:00
|
|
|
|
2020-03-13 21:12:20 +01:00
|
|
|
func (o *Post) GetProp(key string) interface{} {
|
|
|
|
|
o.propsMu.RLock()
|
|
|
|
|
defer o.propsMu.RUnlock()
|
|
|
|
|
return o.Props[key]
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
2015-08-26 12:49:07 -04:00
|
|
|
|
2015-12-04 02:07:47 +01:00
|
|
|
func (o *Post) IsSystemMessage() bool {
|
|
|
|
|
return len(o.Type) >= len(POST_SYSTEM_MESSAGE_PREFIX) && o.Type[:len(POST_SYSTEM_MESSAGE_PREFIX)] == POST_SYSTEM_MESSAGE_PREFIX
|
|
|
|
|
}
|
2017-03-30 00:06:51 +09:00
|
|
|
|
2019-12-03 14:51:50 -05:00
|
|
|
func (o *Post) IsJoinLeaveMessage() bool {
|
|
|
|
|
return o.Type == POST_JOIN_LEAVE ||
|
|
|
|
|
o.Type == POST_ADD_REMOVE ||
|
|
|
|
|
o.Type == POST_JOIN_CHANNEL ||
|
|
|
|
|
o.Type == POST_LEAVE_CHANNEL ||
|
|
|
|
|
o.Type == POST_JOIN_TEAM ||
|
|
|
|
|
o.Type == POST_LEAVE_TEAM ||
|
|
|
|
|
o.Type == POST_ADD_TO_CHANNEL ||
|
|
|
|
|
o.Type == POST_REMOVE_FROM_CHANNEL ||
|
|
|
|
|
o.Type == POST_ADD_TO_TEAM ||
|
|
|
|
|
o.Type == POST_REMOVE_FROM_TEAM
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-07 10:47:03 +01:00
|
|
|
func (o *Post) Patch(patch *PostPatch) {
|
2017-03-30 00:06:51 +09:00
|
|
|
if patch.IsPinned != nil {
|
2020-01-07 10:47:03 +01:00
|
|
|
o.IsPinned = *patch.IsPinned
|
2017-03-30 00:06:51 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if patch.Message != nil {
|
2020-01-07 10:47:03 +01:00
|
|
|
o.Message = *patch.Message
|
2017-03-30 00:06:51 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if patch.Props != nil {
|
2020-03-13 21:12:20 +01:00
|
|
|
newProps := *patch.Props
|
|
|
|
|
o.SetProps(newProps)
|
2017-03-30 00:06:51 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if patch.FileIds != nil {
|
2020-01-07 10:47:03 +01:00
|
|
|
o.FileIds = *patch.FileIds
|
2017-03-30 00:06:51 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if patch.HasReactions != nil {
|
2020-01-07 10:47:03 +01:00
|
|
|
o.HasReactions = *patch.HasReactions
|
2017-03-30 00:06:51 +09:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (o *PostPatch) ToJson() string {
|
|
|
|
|
b, err := json.Marshal(o)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return string(b)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func PostPatchFromJson(data io.Reader) *PostPatch {
|
|
|
|
|
decoder := json.NewDecoder(data)
|
|
|
|
|
var post PostPatch
|
|
|
|
|
err := decoder.Decode(&post)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return &post
|
|
|
|
|
}
|
2017-08-29 16:14:59 -05:00
|
|
|
|
2018-08-28 13:09:32 -04:00
|
|
|
func (o *SearchParameter) SearchParameterToJson() string {
|
|
|
|
|
b, err := json.Marshal(o)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return ""
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return string(b)
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-08 20:36:59 +02:00
|
|
|
func SearchParameterFromJson(data io.Reader) (*SearchParameter, error) {
|
2018-08-28 13:09:32 -04:00
|
|
|
decoder := json.NewDecoder(data)
|
|
|
|
|
var searchParam SearchParameter
|
2020-09-08 20:36:59 +02:00
|
|
|
if err := decoder.Decode(&searchParam); err != nil {
|
|
|
|
|
return nil, err
|
2018-08-28 13:09:32 -04:00
|
|
|
}
|
|
|
|
|
|
2020-09-08 20:36:59 +02:00
|
|
|
return &searchParam, nil
|
2018-08-28 13:09:32 -04:00
|
|
|
}
|
|
|
|
|
|
2018-06-26 16:46:58 -04:00
|
|
|
func (o *Post) ChannelMentions() []string {
|
|
|
|
|
return ChannelMentions(o.Message)
|
2017-11-28 15:02:56 -06:00
|
|
|
}
|
|
|
|
|
|
2020-03-03 05:22:49 -05:00
|
|
|
// DisableMentionHighlights disables a posts mention highlighting and returns the first channel mention that was present in the message.
|
|
|
|
|
func (o *Post) DisableMentionHighlights() string {
|
|
|
|
|
mention, hasMentions := findAtChannelMention(o.Message)
|
|
|
|
|
if hasMentions {
|
|
|
|
|
o.AddProp(POST_PROPS_MENTION_HIGHLIGHT_DISABLED, true)
|
|
|
|
|
}
|
|
|
|
|
return mention
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// DisableMentionHighlights disables mention highlighting for a post patch if required.
|
|
|
|
|
func (o *PostPatch) DisableMentionHighlights() {
|
2020-07-06 20:29:36 +05:30
|
|
|
if o.Message == nil {
|
|
|
|
|
return
|
|
|
|
|
}
|
2020-03-03 05:22:49 -05:00
|
|
|
if _, hasMentions := findAtChannelMention(*o.Message); hasMentions {
|
|
|
|
|
if o.Props == nil {
|
|
|
|
|
o.Props = &StringInterface{}
|
|
|
|
|
}
|
|
|
|
|
(*o.Props)[POST_PROPS_MENTION_HIGHLIGHT_DISABLED] = true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func findAtChannelMention(message string) (mention string, found bool) {
|
|
|
|
|
re := regexp.MustCompile(`(?i)\B@(channel|all|here)\b`)
|
|
|
|
|
matched := re.FindStringSubmatch(message)
|
|
|
|
|
if found = (len(matched) > 0); found {
|
|
|
|
|
mention = strings.ToLower(matched[0])
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-29 16:14:59 -05:00
|
|
|
func (o *Post) Attachments() []*SlackAttachment {
|
2020-03-13 21:12:20 +01:00
|
|
|
if attachments, ok := o.GetProp("attachments").([]*SlackAttachment); ok {
|
2017-08-29 16:14:59 -05:00
|
|
|
return attachments
|
|
|
|
|
}
|
|
|
|
|
var ret []*SlackAttachment
|
2020-03-13 21:12:20 +01:00
|
|
|
if attachments, ok := o.GetProp("attachments").([]interface{}); ok {
|
2017-08-29 16:14:59 -05:00
|
|
|
for _, attachment := range attachments {
|
|
|
|
|
if enc, err := json.Marshal(attachment); err == nil {
|
|
|
|
|
var decoded SlackAttachment
|
|
|
|
|
if json.Unmarshal(enc, &decoded) == nil {
|
|
|
|
|
ret = append(ret, &decoded)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return ret
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-04 20:01:21 +02:00
|
|
|
func (o *Post) AttachmentsEqual(input *Post) bool {
|
|
|
|
|
attachments := o.Attachments()
|
|
|
|
|
inputAttachments := input.Attachments()
|
|
|
|
|
|
|
|
|
|
if len(attachments) != len(inputAttachments) {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for i := range attachments {
|
|
|
|
|
if !attachments[i].Equals(inputAttachments[i]) {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-22 15:32:50 -06:00
|
|
|
var markdownDestinationEscaper = strings.NewReplacer(
|
|
|
|
|
`\`, `\\`,
|
|
|
|
|
`<`, `\<`,
|
|
|
|
|
`>`, `\>`,
|
|
|
|
|
`(`, `\(`,
|
|
|
|
|
`)`, `\)`,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// WithRewrittenImageURLs returns a new shallow copy of the post where the message has been
|
|
|
|
|
// rewritten via RewriteImageURLs.
|
|
|
|
|
func (o *Post) WithRewrittenImageURLs(f func(string) string) *Post {
|
2018-08-07 16:24:56 -04:00
|
|
|
copy := o.Clone()
|
2018-01-22 15:32:50 -06:00
|
|
|
copy.Message = RewriteImageURLs(o.Message, f)
|
|
|
|
|
if copy.MessageSource == "" && copy.Message != o.Message {
|
|
|
|
|
copy.MessageSource = o.Message
|
|
|
|
|
}
|
2018-08-07 16:24:56 -04:00
|
|
|
return copy
|
2018-01-22 15:32:50 -06:00
|
|
|
}
|
|
|
|
|
|
2018-04-17 14:20:47 +02:00
|
|
|
func (o *PostEphemeral) ToUnsanitizedJson() string {
|
|
|
|
|
b, _ := json.Marshal(o)
|
|
|
|
|
return string(b)
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-22 15:32:50 -06:00
|
|
|
// RewriteImageURLs takes a message and returns a copy that has all of the image URLs replaced
|
|
|
|
|
// according to the function f. For each image URL, f will be invoked, and the resulting markdown
|
|
|
|
|
// will contain the URL returned by that invocation instead.
|
|
|
|
|
//
|
|
|
|
|
// Image URLs are destination URLs used in inline images or reference definitions that are used
|
|
|
|
|
// anywhere in the input markdown as an image.
|
|
|
|
|
func RewriteImageURLs(message string, f func(string) string) string {
|
|
|
|
|
if !strings.Contains(message, "![") {
|
|
|
|
|
return message
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var ranges []markdown.Range
|
|
|
|
|
|
|
|
|
|
markdown.Inspect(message, func(blockOrInline interface{}) bool {
|
|
|
|
|
switch v := blockOrInline.(type) {
|
|
|
|
|
case *markdown.ReferenceImage:
|
|
|
|
|
ranges = append(ranges, v.ReferenceDefinition.RawDestination)
|
|
|
|
|
case *markdown.InlineImage:
|
|
|
|
|
ranges = append(ranges, v.RawDestination)
|
|
|
|
|
default:
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
return true
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
if ranges == nil {
|
|
|
|
|
return message
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sort.Slice(ranges, func(i, j int) bool {
|
|
|
|
|
return ranges[i].Position < ranges[j].Position
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
copyRanges := make([]markdown.Range, 0, len(ranges))
|
|
|
|
|
urls := make([]string, 0, len(ranges))
|
|
|
|
|
resultLength := len(message)
|
|
|
|
|
|
|
|
|
|
start := 0
|
|
|
|
|
for i, r := range ranges {
|
|
|
|
|
switch {
|
|
|
|
|
case i == 0:
|
|
|
|
|
case r.Position != ranges[i-1].Position:
|
|
|
|
|
start = ranges[i-1].End
|
|
|
|
|
default:
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
original := message[r.Position:r.End]
|
|
|
|
|
replacement := markdownDestinationEscaper.Replace(f(markdown.Unescape(original)))
|
|
|
|
|
resultLength += len(replacement) - len(original)
|
|
|
|
|
copyRanges = append(copyRanges, markdown.Range{Position: start, End: r.Position})
|
|
|
|
|
urls = append(urls, replacement)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
result := make([]byte, resultLength)
|
|
|
|
|
|
|
|
|
|
offset := 0
|
|
|
|
|
for i, r := range copyRanges {
|
|
|
|
|
offset += copy(result[offset:], message[r.Position:r.End])
|
|
|
|
|
offset += copy(result[offset:], urls[i])
|
|
|
|
|
}
|
|
|
|
|
copy(result[offset:], message[ranges[len(ranges)-1].End:])
|
|
|
|
|
|
|
|
|
|
return string(result)
|
|
|
|
|
}
|