Skip to content

Commit

Permalink
Merge pull request cs3org#4775 from 2403905/issue-9482
Browse files Browse the repository at this point in the history
fixed the response code when copying the file from shares to personal space
  • Loading branch information
2403905 authored Jul 24, 2024
2 parents 1a6e7f6 + e3d669e commit 53e5aaf
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions changelog/unreleased/fix-copy-responce.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Bugfix: Fixed the response code when copying the shared from to personal

We fixed the response code when copying the file from shares to personal space with a secure view role.

https://github.com/cs3org/reva/pull/4775
https://github.com/owncloud/ocis/issues/9482
6 changes: 6 additions & 0 deletions internal/http/services/owncloud/ocdav/copy.go
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,12 @@ func (s *svc) executeSpacesCopy(ctx context.Context, w http.ResponseWriter, sele
return err
}
defer httpDownloadRes.Body.Close()
if httpDownloadRes.StatusCode == http.StatusForbidden {
w.WriteHeader(http.StatusForbidden)
b, err := errors.Marshal(http.StatusForbidden, http.StatusText(http.StatusForbidden), "", strconv.Itoa(http.StatusForbidden))
errors.HandleWebdavError(log, w, b, err)
return nil
}
if httpDownloadRes.StatusCode != http.StatusOK {
return fmt.Errorf("status code %d", httpDownloadRes.StatusCode)
}
Expand Down

0 comments on commit 53e5aaf

Please sign in to comment.