Skip to content

Commit 4e824a7

Browse files
GiteaBotlunny
andauthored
Allow get release download files and lfs files with oauth2 token format (#26430) (#27379)
Backport #26430 by @lunny Fix #26165 Fix #25257 Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
1 parent eea79ce commit 4e824a7

File tree

8 files changed

+66
-6
lines changed

8 files changed

+66
-6
lines changed

models/fixtures/attachment.yml

+13
Original file line numberDiff line numberDiff line change
@@ -140,3 +140,16 @@
140140
download_count: 0
141141
size: 0
142142
created_unix: 946684800
143+
144+
-
145+
id: 12
146+
uuid: a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a22
147+
repo_id: 2
148+
issue_id: 0
149+
release_id: 11
150+
uploader_id: 2
151+
comment_id: 0
152+
name: README.md
153+
download_count: 0
154+
size: 0
155+
created_unix: 946684800

models/fixtures/release.yml

+14
Original file line numberDiff line numberDiff line change
@@ -136,3 +136,17 @@
136136
is_prerelease: false
137137
is_tag: false
138138
created_unix: 946684803
139+
140+
- id: 11
141+
repo_id: 2
142+
publisher_id: 2
143+
tag_name: "v1.1"
144+
lower_tag_name: "v1.1"
145+
target: ""
146+
title: "v1.1"
147+
sha1: "205ac761f3326a7ebe416e8673760016450b5cec"
148+
num_commits: 2
149+
is_draft: false
150+
is_prerelease: false
151+
is_tag: false
152+
created_unix: 946684803

routers/web/web.go

+3-5
Original file line numberDiff line numberDiff line change
@@ -978,9 +978,6 @@ func registerRoutes(m *web.Route) {
978978
}, reqUnitAccess(unit.TypeCode, perm.AccessModeRead, false))
979979
}, ignSignIn, context_service.UserAssignmentWeb(), context.OrgAssignment()) // for "/{username}/-" (packages, projects, code)
980980

981-
// ***** Release Attachment Download without Signin
982-
m.Get("/{username}/{reponame}/releases/download/{vTag}/{fileName}", ignSignIn, context.RepoAssignment, repo.MustBeNotEmpty, repo.RedirectDownload)
983-
984981
m.Group("/{username}/{reponame}", func() {
985982
m.Group("/settings", func() {
986983
m.Group("", func() {
@@ -1240,8 +1237,9 @@ func registerRoutes(m *web.Route) {
12401237
m.Get(".rss", feedEnabled, repo.ReleasesFeedRSS)
12411238
m.Get(".atom", feedEnabled, repo.ReleasesFeedAtom)
12421239
}, ctxDataSet("EnableFeed", setting.Other.EnableFeed),
1243-
repo.MustBeNotEmpty, reqRepoReleaseReader, context.RepoRefByType(context.RepoRefTag, true))
1244-
m.Get("/releases/attachments/{uuid}", repo.MustBeNotEmpty, reqRepoReleaseReader, repo.GetAttachment)
1240+
repo.MustBeNotEmpty, context.RepoRefByType(context.RepoRefTag, true))
1241+
m.Get("/releases/attachments/{uuid}", repo.MustBeNotEmpty, repo.GetAttachment)
1242+
m.Get("/releases/download/{vTag}/{fileName}", repo.MustBeNotEmpty, repo.RedirectDownload)
12451243
m.Group("/releases", func() {
12461244
m.Get("/new", repo.NewRelease)
12471245
m.Post("/new", web.Bind(forms.NewReleaseForm{}), repo.NewReleasePost)

services/auth/oauth2.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,9 @@ func (o *OAuth2) userIDFromToken(ctx context.Context, tokenSHA string, store Dat
125125
// If verification is successful returns an existing user object.
126126
// Returns nil if verification fails.
127127
func (o *OAuth2) Verify(req *http.Request, w http.ResponseWriter, store DataStore, sess SessionStore) (*user_model.User, error) {
128-
if !middleware.IsAPIPath(req) && !isAttachmentDownload(req) && !isAuthenticatedTokenRequest(req) {
128+
// These paths are not API paths, but we still want to check for tokens because they maybe in the API returned URLs
129+
if !middleware.IsAPIPath(req) && !isAttachmentDownload(req) && !isAuthenticatedTokenRequest(req) &&
130+
!gitRawReleasePathRe.MatchString(req.URL.Path) {
129131
return nil, nil
130132
}
131133

Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1032bbf17fbc0d9c95bb5418dabe8f8c99278700

tests/integration/release_test.go

+17
Original file line numberDiff line numberDiff line change
@@ -239,3 +239,20 @@ func TestViewTagsList(t *testing.T) {
239239

240240
assert.EqualValues(t, []string{"v1.0", "delete-tag", "v1.1"}, tagNames)
241241
}
242+
243+
func TestDownloadReleaseAttachment(t *testing.T) {
244+
defer tests.PrepareTestEnv(t)()
245+
246+
tests.PrepareAttachmentsStorage(t)
247+
248+
repo := unittest.AssertExistsAndLoadBean(t, &repo_model.Repository{ID: 2})
249+
250+
url := repo.Link() + "/releases/download/v1.1/README.md"
251+
252+
req := NewRequest(t, "GET", url)
253+
MakeRequest(t, req, http.StatusNotFound)
254+
255+
req = NewRequest(t, "GET", url)
256+
session := loginUser(t, "user2")
257+
session.MakeRequest(t, req, http.StatusOK)
258+
}

tests/test_utils.go

+14
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,20 @@ func InitTest(requireGitea bool) {
179179
routers.InitWebInstalled(graceful.GetManager().HammerContext())
180180
}
181181

182+
func PrepareAttachmentsStorage(t testing.TB) {
183+
// prepare attachments directory and files
184+
assert.NoError(t, storage.Clean(storage.Attachments))
185+
186+
s, err := storage.NewStorage(setting.LocalStorageType, &setting.Storage{
187+
Path: filepath.Join(filepath.Dir(setting.AppPath), "tests", "testdata", "data", "attachments"),
188+
})
189+
assert.NoError(t, err)
190+
assert.NoError(t, s.IterateObjects("", func(p string, obj storage.Object) error {
191+
_, err = storage.Copy(storage.Attachments, p, s, p)
192+
return err
193+
}))
194+
}
195+
182196
func PrepareTestEnv(t testing.TB, skip ...int) func() {
183197
t.Helper()
184198
ourSkip := 1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# This is a release README

0 commit comments

Comments
 (0)