Backport #37735 by @lunny Follow #37698 Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
@@ -364,6 +364,10 @@ func RedirectDownload(ctx *context.Context) {
|
|||||||
|
|
||||||
// Download an archive of a repository
|
// Download an archive of a repository
|
||||||
func Download(ctx *context.Context) {
|
func Download(ctx *context.Context) {
|
||||||
|
if !checkDownloadTokenScope(ctx) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
aReq, err := archiver_service.NewRequest(ctx.Repo.Repository, ctx.Repo.GitRepo, ctx.PathParam("*"), ctx.FormStrings("path"))
|
aReq, err := archiver_service.NewRequest(ctx.Repo.Repository, ctx.Repo.GitRepo, ctx.PathParam("*"), ctx.FormStrings("path"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if errors.Is(err, util.ErrInvalidArgument) {
|
if errors.Is(err, util.ErrInvalidArgument) {
|
||||||
@@ -389,6 +393,10 @@ func Download(ctx *context.Context) {
|
|||||||
// a request that's already in-progress, but the archiver service will just
|
// a request that's already in-progress, but the archiver service will just
|
||||||
// kind of drop it on the floor if this is the case.
|
// kind of drop it on the floor if this is the case.
|
||||||
func InitiateDownload(ctx *context.Context) {
|
func InitiateDownload(ctx *context.Context) {
|
||||||
|
if !checkDownloadTokenScope(ctx) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
paths := ctx.FormStrings("path")
|
paths := ctx.FormStrings("path")
|
||||||
if setting.Repository.StreamArchives || len(paths) > 0 {
|
if setting.Repository.StreamArchives || len(paths) > 0 {
|
||||||
ctx.JSON(http.StatusOK, map[string]any{
|
ctx.JSON(http.StatusOK, map[string]any{
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ import (
|
|||||||
|
|
||||||
type downloadScopeCase struct {
|
type downloadScopeCase struct {
|
||||||
name string
|
name string
|
||||||
|
method string
|
||||||
url string
|
url string
|
||||||
withScope int
|
withScope int
|
||||||
publicOnlyOK bool
|
publicOnlyOK bool
|
||||||
@@ -88,68 +89,107 @@ func TestDownloadRepoContentTokenScopes(t *testing.T) {
|
|||||||
publicOnlyToken := getUserToken(t, "user2", auth_model.AccessTokenScopeReadRepository, auth_model.AccessTokenScopePublicOnly)
|
publicOnlyToken := getUserToken(t, "user2", auth_model.AccessTokenScopeReadRepository, auth_model.AccessTokenScopePublicOnly)
|
||||||
|
|
||||||
cases := []downloadScopeCase{
|
cases := []downloadScopeCase{
|
||||||
|
{
|
||||||
|
name: "PublicArchiveDownload",
|
||||||
|
method: http.MethodGet,
|
||||||
|
url: "/user2/repo1/archive/master.tar.gz",
|
||||||
|
withScope: http.StatusOK,
|
||||||
|
publicOnlyOK: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "PrivateArchiveDownload",
|
||||||
|
method: http.MethodGet,
|
||||||
|
url: "/user2/repo2/archive/master.tar.gz",
|
||||||
|
withScope: http.StatusOK,
|
||||||
|
publicOnlyOK: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "PublicArchiveInitiate",
|
||||||
|
method: http.MethodPost,
|
||||||
|
url: "/user2/repo1/archive/master.tar.gz",
|
||||||
|
withScope: http.StatusOK,
|
||||||
|
publicOnlyOK: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "PrivateArchiveInitiate",
|
||||||
|
method: http.MethodPost,
|
||||||
|
url: "/user2/repo2/archive/master.tar.gz",
|
||||||
|
withScope: http.StatusOK,
|
||||||
|
publicOnlyOK: false,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: "PublicRawBlob",
|
name: "PublicRawBlob",
|
||||||
|
method: http.MethodGet,
|
||||||
url: "/user2/repo1/raw/blob/4b4851ad51df6a7d9f25c979345979eaeb5b349f",
|
url: "/user2/repo1/raw/blob/4b4851ad51df6a7d9f25c979345979eaeb5b349f",
|
||||||
withScope: http.StatusOK,
|
withScope: http.StatusOK,
|
||||||
publicOnlyOK: true,
|
publicOnlyOK: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PublicRawBranch",
|
name: "PublicRawBranch",
|
||||||
|
method: http.MethodGet,
|
||||||
url: "/user2/repo1/raw/branch/master/README.md",
|
url: "/user2/repo1/raw/branch/master/README.md",
|
||||||
withScope: http.StatusOK,
|
withScope: http.StatusOK,
|
||||||
publicOnlyOK: true,
|
publicOnlyOK: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PublicRawTag",
|
name: "PublicRawTag",
|
||||||
|
method: http.MethodGet,
|
||||||
url: "/user2/repo1/raw/tag/v1.1/README.md",
|
url: "/user2/repo1/raw/tag/v1.1/README.md",
|
||||||
withScope: http.StatusOK,
|
withScope: http.StatusOK,
|
||||||
publicOnlyOK: true,
|
publicOnlyOK: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PublicRawCommit",
|
name: "PublicRawCommit",
|
||||||
|
method: http.MethodGet,
|
||||||
url: "/user2/repo1/raw/commit/65f1bf27bc3bf70f64657658635e66094edbcb4d/README.md",
|
url: "/user2/repo1/raw/commit/65f1bf27bc3bf70f64657658635e66094edbcb4d/README.md",
|
||||||
withScope: http.StatusOK,
|
withScope: http.StatusOK,
|
||||||
publicOnlyOK: true,
|
publicOnlyOK: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PublicMediaBlob",
|
name: "PublicMediaBlob",
|
||||||
|
method: http.MethodGet,
|
||||||
url: "/user2/repo1/media/blob/4b4851ad51df6a7d9f25c979345979eaeb5b349f",
|
url: "/user2/repo1/media/blob/4b4851ad51df6a7d9f25c979345979eaeb5b349f",
|
||||||
withScope: http.StatusOK,
|
withScope: http.StatusOK,
|
||||||
publicOnlyOK: true,
|
publicOnlyOK: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PublicMediaBranch",
|
name: "PublicMediaBranch",
|
||||||
|
method: http.MethodGet,
|
||||||
url: "/user2/repo1/media/branch/master/README.md",
|
url: "/user2/repo1/media/branch/master/README.md",
|
||||||
withScope: http.StatusOK,
|
withScope: http.StatusOK,
|
||||||
publicOnlyOK: true,
|
publicOnlyOK: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PublicMediaTag",
|
name: "PublicMediaTag",
|
||||||
|
method: http.MethodGet,
|
||||||
url: "/user2/repo1/media/tag/v1.1/README.md",
|
url: "/user2/repo1/media/tag/v1.1/README.md",
|
||||||
withScope: http.StatusOK,
|
withScope: http.StatusOK,
|
||||||
publicOnlyOK: true,
|
publicOnlyOK: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PublicMediaCommit",
|
name: "PublicMediaCommit",
|
||||||
|
method: http.MethodGet,
|
||||||
url: "/user2/repo1/media/commit/65f1bf27bc3bf70f64657658635e66094edbcb4d/README.md",
|
url: "/user2/repo1/media/commit/65f1bf27bc3bf70f64657658635e66094edbcb4d/README.md",
|
||||||
withScope: http.StatusOK,
|
withScope: http.StatusOK,
|
||||||
publicOnlyOK: true,
|
publicOnlyOK: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PrivateRawBranch",
|
name: "PrivateRawBranch",
|
||||||
|
method: http.MethodGet,
|
||||||
url: "/user2/repo2/raw/branch/master/test.xml",
|
url: "/user2/repo2/raw/branch/master/test.xml",
|
||||||
withScope: http.StatusOK,
|
withScope: http.StatusOK,
|
||||||
publicOnlyOK: false,
|
publicOnlyOK: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PrivateRawBlob",
|
name: "PrivateRawBlob",
|
||||||
|
method: http.MethodGet,
|
||||||
url: "/user2/repo2/raw/blob/6395b68e1feebb1e4c657b4f9f6ba2676a283c0b",
|
url: "/user2/repo2/raw/blob/6395b68e1feebb1e4c657b4f9f6ba2676a283c0b",
|
||||||
withScope: http.StatusOK,
|
withScope: http.StatusOK,
|
||||||
publicOnlyOK: false,
|
publicOnlyOK: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "PrivateMediaBranch",
|
name: "PrivateMediaBranch",
|
||||||
|
method: http.MethodGet,
|
||||||
url: "/user2/repo2/media/branch/master/test.xml",
|
url: "/user2/repo2/media/branch/master/test.xml",
|
||||||
withScope: http.StatusOK,
|
withScope: http.StatusOK,
|
||||||
publicOnlyOK: false,
|
publicOnlyOK: false,
|
||||||
@@ -158,14 +198,14 @@ func TestDownloadRepoContentTokenScopes(t *testing.T) {
|
|||||||
|
|
||||||
for _, tc := range cases {
|
for _, tc := range cases {
|
||||||
t.Run(tc.name, func(t *testing.T) {
|
t.Run(tc.name, func(t *testing.T) {
|
||||||
MakeRequest(t, NewRequest(t, "GET", tc.url).AddTokenAuth(miscToken), http.StatusForbidden)
|
MakeRequest(t, NewRequest(t, tc.method, tc.url).AddTokenAuth(miscToken), http.StatusForbidden)
|
||||||
MakeRequest(t, NewRequest(t, "GET", tc.url).AddTokenAuth(ownerReadToken), tc.withScope)
|
MakeRequest(t, NewRequest(t, tc.method, tc.url).AddTokenAuth(ownerReadToken), tc.withScope)
|
||||||
|
|
||||||
publicOnlyStatus := http.StatusForbidden
|
publicOnlyStatus := http.StatusForbidden
|
||||||
if tc.publicOnlyOK {
|
if tc.publicOnlyOK {
|
||||||
publicOnlyStatus = tc.withScope
|
publicOnlyStatus = tc.withScope
|
||||||
}
|
}
|
||||||
MakeRequest(t, NewRequest(t, "GET", tc.url).AddTokenAuth(publicOnlyToken), publicOnlyStatus)
|
MakeRequest(t, NewRequest(t, tc.method, tc.url).AddTokenAuth(publicOnlyToken), publicOnlyStatus)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user