Merge pull request #10136 from kobergj/ForbidActivitiesForSharees

[full-ci] Forbid Sharee access to Activities
This commit is contained in:
kobergj
2024-09-23 18:15:18 +02:00
committed by GitHub
2 changed files with 12 additions and 1 deletions
@@ -0,0 +1,5 @@
Bugfix: Forbid Activities for Sharees
Sharees may not see item activities. We now bind it to ListGrants permission.
https://github.com/owncloud/ocis/pull/10136
+7 -1
View File
@@ -67,12 +67,18 @@ func (s *ActivitylogService) HandleGetItemActivities(w http.ResponseWriter, r *h
return
}
_, err = utils.GetResourceByID(ctx, rid, gwc)
info, err := utils.GetResourceByID(ctx, rid, gwc)
if err != nil {
w.WriteHeader(http.StatusForbidden)
return
}
// you need ListGrants to see activities
if !info.GetPermissionSet().GetListGrants() {
w.WriteHeader(http.StatusForbidden)
return
}
raw, err := s.Activities(rid)
if err != nil {
s.log.Error().Err(err).Msg("error getting activities")