Merge pull request #10136 from kobergj/ForbidActivitiesForSharees
[full-ci] Forbid Sharee access to Activities
This commit is contained in:
@@ -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
|
||||
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user