Fix MM-54027 (#24495)
* Fix MM-54027 * Add tests --------- Co-authored-by: Mattermost Build <build@mattermost.com>
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
2e0e35dda9
Коммит
6c48cca78f
@@ -404,5 +404,8 @@ func (a *App) SessionHasPermissionToManageBot(session model.Session, botUserId s
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (a *App) HasPermissionToReadChannel(c request.CTX, userID string, channel *model.Channel) bool {
|
func (a *App) HasPermissionToReadChannel(c request.CTX, userID string, channel *model.Channel) bool {
|
||||||
|
if !*a.Config().TeamSettings.ExperimentalViewArchivedChannels && channel.DeleteAt != 0 {
|
||||||
|
return false
|
||||||
|
}
|
||||||
return a.HasPermissionToChannel(c, userID, channel.Id, model.PermissionReadChannelContent) || (channel.Type == model.ChannelTypeOpen && a.HasPermissionToTeam(userID, channel.TeamId, model.PermissionReadPublicChannel))
|
return a.HasPermissionToChannel(c, userID, channel.Id, model.PermissionReadChannelContent) || (channel.Type == model.ChannelTypeOpen && a.HasPermissionToTeam(userID, channel.TeamId, model.PermissionReadPublicChannel))
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2768,11 +2768,20 @@ func TestSanitizePostMetadataForUserAndChannel(t *testing.T) {
|
|||||||
th := Setup(t).InitBasic()
|
th := Setup(t).InitBasic()
|
||||||
defer th.TearDown()
|
defer th.TearDown()
|
||||||
|
|
||||||
|
enableLinkPreviews := *th.App.Config().ServiceSettings.EnableLinkPreviews
|
||||||
|
siteURL := *th.App.Config().ServiceSettings.SiteURL
|
||||||
|
defer func() {
|
||||||
|
th.App.UpdateConfig(func(cfg *model.Config) {
|
||||||
|
cfg.ServiceSettings.EnableLinkPreviews = &enableLinkPreviews
|
||||||
|
cfg.ServiceSettings.SiteURL = &siteURL
|
||||||
|
})
|
||||||
|
}()
|
||||||
th.App.UpdateConfig(func(cfg *model.Config) {
|
th.App.UpdateConfig(func(cfg *model.Config) {
|
||||||
*cfg.ServiceSettings.EnableLinkPreviews = true
|
*cfg.ServiceSettings.EnableLinkPreviews = true
|
||||||
*cfg.ServiceSettings.SiteURL = "http://mymattermost.com"
|
*cfg.ServiceSettings.SiteURL = "http://mymattermost.com"
|
||||||
})
|
})
|
||||||
|
|
||||||
|
t.Run("should not preview for users with no access to the channel", func(t *testing.T) {
|
||||||
directChannel, err := th.App.createDirectChannel(th.Context, th.BasicUser.Id, th.BasicUser2.Id)
|
directChannel, err := th.App.createDirectChannel(th.Context, th.BasicUser.Id, th.BasicUser2.Id)
|
||||||
assert.Nil(t, err)
|
assert.Nil(t, err)
|
||||||
|
|
||||||
@@ -2782,13 +2791,13 @@ func TestSanitizePostMetadataForUserAndChannel(t *testing.T) {
|
|||||||
Metadata: &model.PostMetadata{
|
Metadata: &model.PostMetadata{
|
||||||
Embeds: []*model.PostEmbed{
|
Embeds: []*model.PostEmbed{
|
||||||
{
|
{
|
||||||
Type: model.PostEmbedOpengraph,
|
Type: model.PostEmbedPermalink,
|
||||||
URL: "ogURL",
|
Data: &model.PreviewPost{
|
||||||
Data: &opengraph.OpenGraph{
|
PostID: "permalink_post_id",
|
||||||
Images: []*ogimage.Image{
|
Post: &model.Post{
|
||||||
{
|
Id: "permalink_post_id",
|
||||||
URL: "imageURL",
|
Message: "permalink post message",
|
||||||
},
|
ChannelId: directChannel.Id,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -2814,6 +2823,69 @@ func TestSanitizePostMetadataForUserAndChannel(t *testing.T) {
|
|||||||
|
|
||||||
actual = th.App.sanitizePostMetadataForUserAndChannel(th.Context, post, previewedPost, directChannel, guest.Id)
|
actual = th.App.sanitizePostMetadataForUserAndChannel(th.Context, post, previewedPost, directChannel, guest.Id)
|
||||||
assert.Nil(t, actual.Metadata.Embeds[0].Data)
|
assert.Nil(t, actual.Metadata.Embeds[0].Data)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("should not preview for archived channels", func(t *testing.T) {
|
||||||
|
experimentalViewArchivedChannels := *th.App.Config().TeamSettings.ExperimentalViewArchivedChannels
|
||||||
|
defer func() {
|
||||||
|
th.App.UpdateConfig(func(cfg *model.Config) {
|
||||||
|
cfg.TeamSettings.ExperimentalViewArchivedChannels = &experimentalViewArchivedChannels
|
||||||
|
})
|
||||||
|
}()
|
||||||
|
|
||||||
|
publicChannel, err := th.App.CreateChannel(th.Context, &model.Channel{
|
||||||
|
Name: "private_chanenl",
|
||||||
|
Type: model.ChannelTypeOpen,
|
||||||
|
TeamId: th.BasicTeam.Id,
|
||||||
|
CreatorId: th.SystemAdminUser.Id,
|
||||||
|
}, true)
|
||||||
|
|
||||||
|
require.Nil(t, err)
|
||||||
|
require.NotEmpty(t, publicChannel.Id)
|
||||||
|
|
||||||
|
err = th.App.DeleteChannel(th.Context, publicChannel, th.SystemAdminUser.Id)
|
||||||
|
require.Nil(t, err)
|
||||||
|
|
||||||
|
publicChannel, err = th.App.GetChannel(th.Context, publicChannel.Id)
|
||||||
|
require.Nil(t, err)
|
||||||
|
require.NotEmpty(t, publicChannel.Id)
|
||||||
|
require.NotEqual(t, 0, publicChannel.DeleteAt)
|
||||||
|
|
||||||
|
post := &model.Post{
|
||||||
|
Id: th.BasicUser.Id,
|
||||||
|
Metadata: &model.PostMetadata{
|
||||||
|
Embeds: []*model.PostEmbed{
|
||||||
|
{
|
||||||
|
Type: model.PostEmbedPermalink,
|
||||||
|
Data: &model.PreviewPost{
|
||||||
|
PostID: "permalink_post_id",
|
||||||
|
Post: &model.Post{
|
||||||
|
Id: "permalink_post_id",
|
||||||
|
Message: "permalink post message",
|
||||||
|
ChannelId: publicChannel.Id,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
previewedPost := model.NewPreviewPost(post, th.BasicTeam, publicChannel)
|
||||||
|
|
||||||
|
th.App.UpdateConfig(func(cfg *model.Config) {
|
||||||
|
*cfg.TeamSettings.ExperimentalViewArchivedChannels = true
|
||||||
|
})
|
||||||
|
|
||||||
|
actual := th.App.sanitizePostMetadataForUserAndChannel(th.Context, post, previewedPost, publicChannel, th.BasicUser.Id)
|
||||||
|
assert.NotNil(t, actual.Metadata.Embeds[0].Data)
|
||||||
|
|
||||||
|
th.App.UpdateConfig(func(cfg *model.Config) {
|
||||||
|
*cfg.TeamSettings.ExperimentalViewArchivedChannels = false
|
||||||
|
})
|
||||||
|
|
||||||
|
actual = th.App.sanitizePostMetadataForUserAndChannel(th.Context, post, previewedPost, publicChannel, th.BasicUser.Id)
|
||||||
|
assert.Nil(t, actual.Metadata.Embeds[0].Data)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestSanitizePostMetaDataForAudit(t *testing.T) {
|
func TestSanitizePostMetaDataForAudit(t *testing.T) {
|
||||||
@@ -2872,6 +2944,17 @@ func TestSanitizePostMetadataForUser(t *testing.T) {
|
|||||||
th := Setup(t).InitBasic()
|
th := Setup(t).InitBasic()
|
||||||
defer th.TearDown()
|
defer th.TearDown()
|
||||||
|
|
||||||
|
enableLinkPreviews := *th.App.Config().ServiceSettings.EnableLinkPreviews
|
||||||
|
defer func() {
|
||||||
|
th.App.UpdateConfig(func(cfg *model.Config) {
|
||||||
|
cfg.ServiceSettings.EnableLinkPreviews = &enableLinkPreviews
|
||||||
|
})
|
||||||
|
}()
|
||||||
|
th.App.UpdateConfig(func(cfg *model.Config) {
|
||||||
|
*cfg.ServiceSettings.EnableLinkPreviews = true
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("should remove embeds for not accessible channels", func(t *testing.T) {
|
||||||
privateChannel, err := th.App.CreateChannel(th.Context, &model.Channel{
|
privateChannel, err := th.App.CreateChannel(th.Context, &model.Channel{
|
||||||
Name: "private_chanenl",
|
Name: "private_chanenl",
|
||||||
Type: model.ChannelTypePrivate,
|
Type: model.ChannelTypePrivate,
|
||||||
@@ -2923,4 +3006,78 @@ func TestSanitizePostMetadataForUser(t *testing.T) {
|
|||||||
|
|
||||||
require.Equal(t, 1, len(sanitizedPost.Metadata.Embeds))
|
require.Equal(t, 1, len(sanitizedPost.Metadata.Embeds))
|
||||||
require.Equal(t, model.PostEmbedLink, sanitizedPost.Metadata.Embeds[0].Type)
|
require.Equal(t, model.PostEmbedLink, sanitizedPost.Metadata.Embeds[0].Type)
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("should remove embeds for archived channels if the config does not allow it", func(t *testing.T) {
|
||||||
|
publicChannel, err := th.App.CreateChannel(th.Context, &model.Channel{
|
||||||
|
Name: "private_chanenl",
|
||||||
|
Type: model.ChannelTypeOpen,
|
||||||
|
TeamId: th.BasicTeam.Id,
|
||||||
|
CreatorId: th.SystemAdminUser.Id,
|
||||||
|
}, true)
|
||||||
|
|
||||||
|
require.Nil(t, err)
|
||||||
|
require.NotEmpty(t, publicChannel.Id)
|
||||||
|
|
||||||
|
err = th.App.DeleteChannel(th.Context, publicChannel, th.SystemAdminUser.Id)
|
||||||
|
require.Nil(t, err)
|
||||||
|
|
||||||
|
publicChannel, err = th.App.GetChannel(th.Context, publicChannel.Id)
|
||||||
|
require.Nil(t, err)
|
||||||
|
require.NotEmpty(t, publicChannel.Id)
|
||||||
|
require.NotEqual(t, 0, publicChannel.DeleteAt)
|
||||||
|
|
||||||
|
post := &model.Post{
|
||||||
|
Id: "post_id_1",
|
||||||
|
UserId: th.BasicUser.Id,
|
||||||
|
Metadata: &model.PostMetadata{
|
||||||
|
Embeds: []*model.PostEmbed{
|
||||||
|
{
|
||||||
|
Type: model.PostEmbedPermalink,
|
||||||
|
Data: &model.PreviewPost{
|
||||||
|
PostID: "permalink_post_id",
|
||||||
|
Post: &model.Post{
|
||||||
|
Id: "permalink_post_id",
|
||||||
|
Message: "permalink post message",
|
||||||
|
ChannelId: publicChannel.Id,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
Type: model.PostEmbedLink,
|
||||||
|
URL: "https://mattermost.com",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
experimentalViewArchivedChannels := *th.App.Config().TeamSettings.ExperimentalViewArchivedChannels
|
||||||
|
defer func() {
|
||||||
|
th.App.UpdateConfig(func(cfg *model.Config) {
|
||||||
|
cfg.TeamSettings.ExperimentalViewArchivedChannels = &experimentalViewArchivedChannels
|
||||||
|
})
|
||||||
|
}()
|
||||||
|
|
||||||
|
th.App.UpdateConfig(func(cfg *model.Config) {
|
||||||
|
*cfg.TeamSettings.ExperimentalViewArchivedChannels = true
|
||||||
|
})
|
||||||
|
|
||||||
|
sanitizedPost, err := th.App.SanitizePostMetadataForUser(th.Context, post, th.BasicUser.Id)
|
||||||
|
require.Nil(t, err)
|
||||||
|
require.NotNil(t, sanitizedPost)
|
||||||
|
|
||||||
|
require.Equal(t, 2, len(sanitizedPost.Metadata.Embeds))
|
||||||
|
require.Equal(t, model.PostEmbedPermalink, sanitizedPost.Metadata.Embeds[0].Type)
|
||||||
|
|
||||||
|
th.App.UpdateConfig(func(cfg *model.Config) {
|
||||||
|
*cfg.TeamSettings.ExperimentalViewArchivedChannels = false
|
||||||
|
})
|
||||||
|
|
||||||
|
sanitizedPost, err = th.App.SanitizePostMetadataForUser(th.Context, post, th.BasicUser.Id)
|
||||||
|
require.Nil(t, err)
|
||||||
|
require.NotNil(t, sanitizedPost)
|
||||||
|
|
||||||
|
require.Equal(t, 1, len(sanitizedPost.Metadata.Embeds))
|
||||||
|
require.Equal(t, model.PostEmbedLink, sanitizedPost.Metadata.Embeds[0].Type)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user