Automatic Merge
Этот коммит содержится в:
Mattermost Build
2026-03-20 21:30:55 +01:00
коммит произвёл GitHub
родитель 532f2882d1
Коммит 450dba8cad
2 изменённых файлов: 56 добавлений и 0 удалений

Просмотреть файл

@@ -1020,6 +1020,12 @@ func updatePost(c *Context, w http.ResponseWriter, r *http.Request) {
return
}
// Users who can't create posts in a channel shouldn't be able to edit them either.
userCreatePostPermissionCheckWithContext(c, originalPost.ChannelId)
if c.Err != nil {
return
}
auditRec.AddEventPriorState(originalPost)
auditRec.AddEventObjectType("post")
@@ -1157,6 +1163,12 @@ func postPatchChecks(c *Context, auditRec *model.AuditRecord, message *string) b
return false
}
// Users who can't create posts in a channel shouldn't be able to edit them either.
userCreatePostPermissionCheckWithContext(c, originalPost.ChannelId)
if c.Err != nil {
return false
}
if *c.App.Config().ServiceSettings.PostEditTimeLimit != -1 && model.GetMillis() > originalPost.CreateAt+int64(*c.App.Config().ServiceSettings.PostEditTimeLimit*1000) && message != nil {
c.Err = model.NewAppError("patchPost", "api.post.update_post.permissions_time_limit.app_error", map[string]any{"timeLimit": *c.App.Config().ServiceSettings.PostEditTimeLimit}, "", http.StatusBadRequest)
return isMember

Просмотреть файл

@@ -1641,6 +1641,29 @@ func TestUpdatePost(t *testing.T) {
assert.Contains(t, updatedPost.FileIds, fileId)
})
t.Run("should prevent editing when create_post permission is revoked", func(t *testing.T) {
th.LoginBasic()
postToEdit, _, appErr := th.App.CreatePost(th.Context, &model.Post{
UserId: th.BasicUser.Id,
ChannelId: channel.Id,
Message: "original message",
}, channel, model.CreatePostFlags{SetOnline: true})
require.Nil(t, appErr)
th.RemovePermissionFromRole(model.PermissionCreatePost.Id, model.ChannelUserRoleId)
defer th.AddPermissionToRole(model.PermissionCreatePost.Id, model.ChannelUserRoleId)
updatePost := &model.Post{
Id: postToEdit.Id,
ChannelId: channel.Id,
Message: "edited message",
}
_, resp, err := client.UpdatePost(context.Background(), postToEdit.Id, updatePost)
require.Error(t, err)
CheckForbiddenStatus(t, resp)
})
t.Run("logged out", func(t *testing.T) {
_, err := client.Logout(context.Background())
require.NoError(t, err)
@@ -2027,6 +2050,27 @@ func TestPatchPost(t *testing.T) {
require.NoError(t, err)
})
t.Run("should prevent patching when create_post permission is revoked", func(t *testing.T) {
th.LoginBasic()
postToEdit, _, err := client.CreatePost(context.Background(), &model.Post{
ChannelId: channel.Id,
Message: "original message",
})
require.NoError(t, err)
defaultPerms := th.SaveDefaultRolePermissions()
defer th.RestoreDefaultRolePermissions(defaultPerms)
th.RemovePermissionFromRole(model.PermissionCreatePost.Id, model.ChannelUserRoleId)
patch := &model.PostPatch{
Message: model.NewPointer("edited message"),
}
_, resp, err := client.PatchPost(context.Background(), postToEdit.Id, patch)
require.Error(t, err)
CheckForbiddenStatus(t, resp)
})
t.Run("time limit expired", func(t *testing.T) {
th.App.UpdateConfig(func(cfg *model.Config) {
*cfg.ServiceSettings.PostEditTimeLimit = 1