mirror of https://github.com/go-gitea/gitea.git
* Fix LFS Locks over SSH * Mark test as skipped
This commit is contained in:
parent
7697a282d6
commit
dbd0a2e6dc
|
@ -61,6 +61,10 @@ func testGit(t *testing.T, u *url.URL) {
|
||||||
little = commitAndPush(t, littleSize, dstPath)
|
little = commitAndPush(t, littleSize, dstPath)
|
||||||
})
|
})
|
||||||
t.Run("Big", func(t *testing.T) {
|
t.Run("Big", func(t *testing.T) {
|
||||||
|
if testing.Short() {
|
||||||
|
t.Skip("skipping test in short mode.")
|
||||||
|
return
|
||||||
|
}
|
||||||
big = commitAndPush(t, bigSize, dstPath)
|
big = commitAndPush(t, bigSize, dstPath)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
@ -77,9 +81,15 @@ func testGit(t *testing.T, u *url.URL) {
|
||||||
|
|
||||||
t.Run("Little", func(t *testing.T) {
|
t.Run("Little", func(t *testing.T) {
|
||||||
littleLFS = commitAndPush(t, littleSize, dstPath)
|
littleLFS = commitAndPush(t, littleSize, dstPath)
|
||||||
|
lockFileTest(t, littleLFS, dstPath)
|
||||||
})
|
})
|
||||||
t.Run("Big", func(t *testing.T) {
|
t.Run("Big", func(t *testing.T) {
|
||||||
|
if testing.Short() {
|
||||||
|
t.Skip("skipping test in short mode.")
|
||||||
|
return
|
||||||
|
}
|
||||||
bigLFS = commitAndPush(t, bigSize, dstPath)
|
bigLFS = commitAndPush(t, bigSize, dstPath)
|
||||||
|
lockFileTest(t, bigLFS, dstPath)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
t.Run("Locks", func(t *testing.T) {
|
t.Run("Locks", func(t *testing.T) {
|
||||||
|
@ -94,19 +104,21 @@ func testGit(t *testing.T, u *url.URL) {
|
||||||
resp := session.MakeRequest(t, req, http.StatusOK)
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
||||||
assert.Equal(t, littleSize, resp.Body.Len())
|
assert.Equal(t, littleSize, resp.Body.Len())
|
||||||
|
|
||||||
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-17/raw/branch/master/", big))
|
|
||||||
nilResp := session.MakeRequestNilResponseRecorder(t, req, http.StatusOK)
|
|
||||||
assert.Equal(t, bigSize, nilResp.Length)
|
|
||||||
|
|
||||||
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-17/raw/branch/master/", littleLFS))
|
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-17/raw/branch/master/", littleLFS))
|
||||||
resp = session.MakeRequest(t, req, http.StatusOK)
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
||||||
assert.NotEqual(t, littleSize, resp.Body.Len())
|
assert.NotEqual(t, littleSize, resp.Body.Len())
|
||||||
assert.Contains(t, resp.Body.String(), models.LFSMetaFileIdentifier)
|
assert.Contains(t, resp.Body.String(), models.LFSMetaFileIdentifier)
|
||||||
|
|
||||||
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-17/raw/branch/master/", bigLFS))
|
if !testing.Short() {
|
||||||
resp = session.MakeRequest(t, req, http.StatusOK)
|
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-17/raw/branch/master/", big))
|
||||||
assert.NotEqual(t, bigSize, resp.Body.Len())
|
nilResp := session.MakeRequestNilResponseRecorder(t, req, http.StatusOK)
|
||||||
assert.Contains(t, resp.Body.String(), models.LFSMetaFileIdentifier)
|
assert.Equal(t, bigSize, nilResp.Length)
|
||||||
|
|
||||||
|
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-17/raw/branch/master/", bigLFS))
|
||||||
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
||||||
|
assert.NotEqual(t, bigSize, resp.Body.Len())
|
||||||
|
assert.Contains(t, resp.Body.String(), models.LFSMetaFileIdentifier)
|
||||||
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
t.Run("Media", func(t *testing.T) {
|
t.Run("Media", func(t *testing.T) {
|
||||||
|
@ -117,17 +129,19 @@ func testGit(t *testing.T, u *url.URL) {
|
||||||
resp := session.MakeRequestNilResponseRecorder(t, req, http.StatusOK)
|
resp := session.MakeRequestNilResponseRecorder(t, req, http.StatusOK)
|
||||||
assert.Equal(t, littleSize, resp.Length)
|
assert.Equal(t, littleSize, resp.Length)
|
||||||
|
|
||||||
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-17/media/branch/master/", big))
|
|
||||||
resp = session.MakeRequestNilResponseRecorder(t, req, http.StatusOK)
|
|
||||||
assert.Equal(t, bigSize, resp.Length)
|
|
||||||
|
|
||||||
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-17/media/branch/master/", littleLFS))
|
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-17/media/branch/master/", littleLFS))
|
||||||
resp = session.MakeRequestNilResponseRecorder(t, req, http.StatusOK)
|
resp = session.MakeRequestNilResponseRecorder(t, req, http.StatusOK)
|
||||||
assert.Equal(t, littleSize, resp.Length)
|
assert.Equal(t, littleSize, resp.Length)
|
||||||
|
|
||||||
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-17/media/branch/master/", bigLFS))
|
if !testing.Short() {
|
||||||
resp = session.MakeRequestNilResponseRecorder(t, req, http.StatusOK)
|
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-17/media/branch/master/", big))
|
||||||
assert.Equal(t, bigSize, resp.Length)
|
resp = session.MakeRequestNilResponseRecorder(t, req, http.StatusOK)
|
||||||
|
assert.Equal(t, bigSize, resp.Length)
|
||||||
|
|
||||||
|
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-17/media/branch/master/", bigLFS))
|
||||||
|
resp = session.MakeRequestNilResponseRecorder(t, req, http.StatusOK)
|
||||||
|
assert.Equal(t, bigSize, resp.Length)
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
})
|
||||||
|
@ -160,6 +174,10 @@ func testGit(t *testing.T, u *url.URL) {
|
||||||
little = commitAndPush(t, littleSize, dstPath)
|
little = commitAndPush(t, littleSize, dstPath)
|
||||||
})
|
})
|
||||||
t.Run("Big", func(t *testing.T) {
|
t.Run("Big", func(t *testing.T) {
|
||||||
|
if testing.Short() {
|
||||||
|
t.Skip("skipping test in short mode.")
|
||||||
|
return
|
||||||
|
}
|
||||||
big = commitAndPush(t, bigSize, dstPath)
|
big = commitAndPush(t, bigSize, dstPath)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
@ -176,9 +194,16 @@ func testGit(t *testing.T, u *url.URL) {
|
||||||
|
|
||||||
t.Run("Little", func(t *testing.T) {
|
t.Run("Little", func(t *testing.T) {
|
||||||
littleLFS = commitAndPush(t, littleSize, dstPath)
|
littleLFS = commitAndPush(t, littleSize, dstPath)
|
||||||
|
lockFileTest(t, littleLFS, dstPath)
|
||||||
|
|
||||||
})
|
})
|
||||||
t.Run("Big", func(t *testing.T) {
|
t.Run("Big", func(t *testing.T) {
|
||||||
|
if testing.Short() {
|
||||||
|
return
|
||||||
|
}
|
||||||
bigLFS = commitAndPush(t, bigSize, dstPath)
|
bigLFS = commitAndPush(t, bigSize, dstPath)
|
||||||
|
lockFileTest(t, bigLFS, dstPath)
|
||||||
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
t.Run("Locks", func(t *testing.T) {
|
t.Run("Locks", func(t *testing.T) {
|
||||||
|
@ -193,20 +218,21 @@ func testGit(t *testing.T, u *url.URL) {
|
||||||
resp := session.MakeRequest(t, req, http.StatusOK)
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
||||||
assert.Equal(t, littleSize, resp.Body.Len())
|
assert.Equal(t, littleSize, resp.Body.Len())
|
||||||
|
|
||||||
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-18/raw/branch/master/", big))
|
|
||||||
resp = session.MakeRequest(t, req, http.StatusOK)
|
|
||||||
assert.Equal(t, bigSize, resp.Body.Len())
|
|
||||||
|
|
||||||
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-18/raw/branch/master/", littleLFS))
|
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-18/raw/branch/master/", littleLFS))
|
||||||
resp = session.MakeRequest(t, req, http.StatusOK)
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
||||||
assert.NotEqual(t, littleSize, resp.Body.Len())
|
assert.NotEqual(t, littleSize, resp.Body.Len())
|
||||||
assert.Contains(t, resp.Body.String(), models.LFSMetaFileIdentifier)
|
assert.Contains(t, resp.Body.String(), models.LFSMetaFileIdentifier)
|
||||||
|
|
||||||
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-18/raw/branch/master/", bigLFS))
|
if !testing.Short() {
|
||||||
resp = session.MakeRequest(t, req, http.StatusOK)
|
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-18/raw/branch/master/", big))
|
||||||
assert.NotEqual(t, bigSize, resp.Body.Len())
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
||||||
assert.Contains(t, resp.Body.String(), models.LFSMetaFileIdentifier)
|
assert.Equal(t, bigSize, resp.Body.Len())
|
||||||
|
|
||||||
|
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-18/raw/branch/master/", bigLFS))
|
||||||
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
||||||
|
assert.NotEqual(t, bigSize, resp.Body.Len())
|
||||||
|
assert.Contains(t, resp.Body.String(), models.LFSMetaFileIdentifier)
|
||||||
|
}
|
||||||
})
|
})
|
||||||
t.Run("Media", func(t *testing.T) {
|
t.Run("Media", func(t *testing.T) {
|
||||||
session := loginUser(t, "user2")
|
session := loginUser(t, "user2")
|
||||||
|
@ -216,17 +242,19 @@ func testGit(t *testing.T, u *url.URL) {
|
||||||
resp := session.MakeRequest(t, req, http.StatusOK)
|
resp := session.MakeRequest(t, req, http.StatusOK)
|
||||||
assert.Equal(t, littleSize, resp.Body.Len())
|
assert.Equal(t, littleSize, resp.Body.Len())
|
||||||
|
|
||||||
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-18/media/branch/master/", big))
|
|
||||||
resp = session.MakeRequest(t, req, http.StatusOK)
|
|
||||||
assert.Equal(t, bigSize, resp.Body.Len())
|
|
||||||
|
|
||||||
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-18/media/branch/master/", littleLFS))
|
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-18/media/branch/master/", littleLFS))
|
||||||
resp = session.MakeRequest(t, req, http.StatusOK)
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
||||||
assert.Equal(t, littleSize, resp.Body.Len())
|
assert.Equal(t, littleSize, resp.Body.Len())
|
||||||
|
|
||||||
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-18/media/branch/master/", bigLFS))
|
if !testing.Short() {
|
||||||
resp = session.MakeRequest(t, req, http.StatusOK)
|
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-18/media/branch/master/", big))
|
||||||
assert.Equal(t, bigSize, resp.Body.Len())
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
||||||
|
assert.Equal(t, bigSize, resp.Body.Len())
|
||||||
|
|
||||||
|
req = NewRequest(t, "GET", path.Join("/user2/repo-tmp-18/media/branch/master/", bigLFS))
|
||||||
|
resp = session.MakeRequest(t, req, http.StatusOK)
|
||||||
|
assert.Equal(t, bigSize, resp.Body.Len())
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
})
|
})
|
||||||
|
@ -243,15 +271,17 @@ func ensureAnonymousClone(t *testing.T, u *url.URL) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func lockTest(t *testing.T, remote, repoPath string) {
|
func lockTest(t *testing.T, remote, repoPath string) {
|
||||||
_, err := git.NewCommand("remote").AddArguments("set-url", "origin", remote).RunInDir(repoPath) //TODO add test ssh git-lfs-creds
|
lockFileTest(t, "README.md", repoPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
func lockFileTest(t *testing.T, filename, repoPath string) {
|
||||||
|
_, err := git.NewCommand("lfs").AddArguments("locks").RunInDir(repoPath)
|
||||||
|
assert.NoError(t, err)
|
||||||
|
_, err = git.NewCommand("lfs").AddArguments("lock", filename).RunInDir(repoPath)
|
||||||
assert.NoError(t, err)
|
assert.NoError(t, err)
|
||||||
_, err = git.NewCommand("lfs").AddArguments("locks").RunInDir(repoPath)
|
_, err = git.NewCommand("lfs").AddArguments("locks").RunInDir(repoPath)
|
||||||
assert.NoError(t, err)
|
assert.NoError(t, err)
|
||||||
_, err = git.NewCommand("lfs").AddArguments("lock", "README.md").RunInDir(repoPath)
|
_, err = git.NewCommand("lfs").AddArguments("unlock", filename).RunInDir(repoPath)
|
||||||
assert.NoError(t, err)
|
|
||||||
_, err = git.NewCommand("lfs").AddArguments("locks").RunInDir(repoPath)
|
|
||||||
assert.NoError(t, err)
|
|
||||||
_, err = git.NewCommand("lfs").AddArguments("unlock", "README.md").RunInDir(repoPath)
|
|
||||||
assert.NoError(t, err)
|
assert.NoError(t, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,7 @@ import (
|
||||||
|
|
||||||
"code.gitea.io/gitea/models"
|
"code.gitea.io/gitea/models"
|
||||||
"code.gitea.io/gitea/modules/context"
|
"code.gitea.io/gitea/modules/context"
|
||||||
|
"code.gitea.io/gitea/modules/log"
|
||||||
"code.gitea.io/gitea/modules/setting"
|
"code.gitea.io/gitea/modules/setting"
|
||||||
api "code.gitea.io/sdk/gitea"
|
api "code.gitea.io/sdk/gitea"
|
||||||
)
|
)
|
||||||
|
@ -44,7 +45,7 @@ func checkIsValidRequest(ctx *context.Context, post bool) bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleLockListOut(ctx *context.Context, lock *models.LFSLock, err error) {
|
func handleLockListOut(ctx *context.Context, repo *models.Repository, lock *models.LFSLock, err error) {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if models.IsErrLFSLockNotExist(err) {
|
if models.IsErrLFSLockNotExist(err) {
|
||||||
ctx.JSON(200, api.LFSLockList{
|
ctx.JSON(200, api.LFSLockList{
|
||||||
|
@ -57,7 +58,7 @@ func handleLockListOut(ctx *context.Context, lock *models.LFSLock, err error) {
|
||||||
})
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if ctx.Repo.Repository.ID != lock.RepoID {
|
if repo.ID != lock.RepoID {
|
||||||
ctx.JSON(200, api.LFSLockList{
|
ctx.JSON(200, api.LFSLockList{
|
||||||
Locks: []*api.LFSLock{},
|
Locks: []*api.LFSLock{},
|
||||||
})
|
})
|
||||||
|
@ -75,17 +76,21 @@ func GetListLockHandler(ctx *context.Context) {
|
||||||
}
|
}
|
||||||
ctx.Resp.Header().Set("Content-Type", metaMediaType)
|
ctx.Resp.Header().Set("Content-Type", metaMediaType)
|
||||||
|
|
||||||
err := models.CheckLFSAccessForRepo(ctx.User, ctx.Repo.Repository, models.AccessModeRead)
|
rv := unpack(ctx)
|
||||||
|
|
||||||
|
repository, err := models.GetRepositoryByOwnerAndName(rv.User, rv.Repo)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if models.IsErrLFSUnauthorizedAction(err) {
|
log.Debug("Could not find repository: %s/%s - %s", rv.User, rv.Repo, err)
|
||||||
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=gitea-lfs")
|
writeStatus(ctx, 404)
|
||||||
ctx.JSON(401, api.LFSLockError{
|
return
|
||||||
Message: "You must have pull access to list locks : " + err.Error(),
|
}
|
||||||
})
|
repository.MustOwner()
|
||||||
return
|
|
||||||
}
|
authenticated := authenticate(ctx, repository, rv.Authorization, false)
|
||||||
ctx.JSON(500, api.LFSLockError{
|
if !authenticated {
|
||||||
Message: "unable to list lock : " + err.Error(),
|
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=gitea-lfs")
|
||||||
|
ctx.JSON(401, api.LFSLockError{
|
||||||
|
Message: "You must have pull access to list locks",
|
||||||
})
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -100,19 +105,19 @@ func GetListLockHandler(ctx *context.Context) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
lock, err := models.GetLFSLockByID(int64(v))
|
lock, err := models.GetLFSLockByID(int64(v))
|
||||||
handleLockListOut(ctx, lock, err)
|
handleLockListOut(ctx, repository, lock, err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
path := ctx.Query("path")
|
path := ctx.Query("path")
|
||||||
if path != "" { //Case where we request a specific id
|
if path != "" { //Case where we request a specific id
|
||||||
lock, err := models.GetLFSLock(ctx.Repo.Repository, path)
|
lock, err := models.GetLFSLock(repository, path)
|
||||||
handleLockListOut(ctx, lock, err)
|
handleLockListOut(ctx, repository, lock, err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
//If no query params path or id
|
//If no query params path or id
|
||||||
lockList, err := models.GetLFSLockByRepoID(ctx.Repo.Repository.ID)
|
lockList, err := models.GetLFSLockByRepoID(repository.ID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.JSON(500, api.LFSLockError{
|
ctx.JSON(500, api.LFSLockError{
|
||||||
Message: "unable to list locks : " + err.Error(),
|
Message: "unable to list locks : " + err.Error(),
|
||||||
|
@ -135,16 +140,36 @@ func PostLockHandler(ctx *context.Context) {
|
||||||
}
|
}
|
||||||
ctx.Resp.Header().Set("Content-Type", metaMediaType)
|
ctx.Resp.Header().Set("Content-Type", metaMediaType)
|
||||||
|
|
||||||
|
userName := ctx.Params("username")
|
||||||
|
repoName := strings.TrimSuffix(ctx.Params("reponame"), ".git")
|
||||||
|
authorization := ctx.Req.Header.Get("Authorization")
|
||||||
|
|
||||||
|
repository, err := models.GetRepositoryByOwnerAndName(userName, repoName)
|
||||||
|
if err != nil {
|
||||||
|
log.Debug("Could not find repository: %s/%s - %s", userName, repoName, err)
|
||||||
|
writeStatus(ctx, 404)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
repository.MustOwner()
|
||||||
|
|
||||||
|
authenticated := authenticate(ctx, repository, authorization, true)
|
||||||
|
if !authenticated {
|
||||||
|
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=gitea-lfs")
|
||||||
|
ctx.JSON(401, api.LFSLockError{
|
||||||
|
Message: "You must have push access to create locks",
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
var req api.LFSLockRequest
|
var req api.LFSLockRequest
|
||||||
dec := json.NewDecoder(ctx.Req.Body().ReadCloser())
|
dec := json.NewDecoder(ctx.Req.Body().ReadCloser())
|
||||||
err := dec.Decode(&req)
|
if err := dec.Decode(&req); err != nil {
|
||||||
if err != nil {
|
|
||||||
writeStatus(ctx, 400)
|
writeStatus(ctx, 400)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
lock, err := models.CreateLFSLock(&models.LFSLock{
|
lock, err := models.CreateLFSLock(&models.LFSLock{
|
||||||
Repo: ctx.Repo.Repository,
|
Repo: repository,
|
||||||
Path: req.Path,
|
Path: req.Path,
|
||||||
Owner: ctx.User,
|
Owner: ctx.User,
|
||||||
})
|
})
|
||||||
|
@ -178,23 +203,29 @@ func VerifyLockHandler(ctx *context.Context) {
|
||||||
}
|
}
|
||||||
ctx.Resp.Header().Set("Content-Type", metaMediaType)
|
ctx.Resp.Header().Set("Content-Type", metaMediaType)
|
||||||
|
|
||||||
err := models.CheckLFSAccessForRepo(ctx.User, ctx.Repo.Repository, models.AccessModeWrite)
|
userName := ctx.Params("username")
|
||||||
|
repoName := strings.TrimSuffix(ctx.Params("reponame"), ".git")
|
||||||
|
authorization := ctx.Req.Header.Get("Authorization")
|
||||||
|
|
||||||
|
repository, err := models.GetRepositoryByOwnerAndName(userName, repoName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if models.IsErrLFSUnauthorizedAction(err) {
|
log.Debug("Could not find repository: %s/%s - %s", userName, repoName, err)
|
||||||
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=gitea-lfs")
|
writeStatus(ctx, 404)
|
||||||
ctx.JSON(401, api.LFSLockError{
|
return
|
||||||
Message: "You must have push access to verify locks : " + err.Error(),
|
}
|
||||||
})
|
repository.MustOwner()
|
||||||
return
|
|
||||||
}
|
authenticated := authenticate(ctx, repository, authorization, true)
|
||||||
ctx.JSON(500, api.LFSLockError{
|
if !authenticated {
|
||||||
Message: "unable to verify lock : " + err.Error(),
|
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=gitea-lfs")
|
||||||
|
ctx.JSON(401, api.LFSLockError{
|
||||||
|
Message: "You must have push access to verify locks",
|
||||||
})
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO handle body json cursor and limit
|
//TODO handle body json cursor and limit
|
||||||
lockList, err := models.GetLFSLockByRepoID(ctx.Repo.Repository.ID)
|
lockList, err := models.GetLFSLockByRepoID(repository.ID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.JSON(500, api.LFSLockError{
|
ctx.JSON(500, api.LFSLockError{
|
||||||
Message: "unable to list locks : " + err.Error(),
|
Message: "unable to list locks : " + err.Error(),
|
||||||
|
@ -223,10 +254,30 @@ func UnLockHandler(ctx *context.Context) {
|
||||||
}
|
}
|
||||||
ctx.Resp.Header().Set("Content-Type", metaMediaType)
|
ctx.Resp.Header().Set("Content-Type", metaMediaType)
|
||||||
|
|
||||||
|
userName := ctx.Params("username")
|
||||||
|
repoName := strings.TrimSuffix(ctx.Params("reponame"), ".git")
|
||||||
|
authorization := ctx.Req.Header.Get("Authorization")
|
||||||
|
|
||||||
|
repository, err := models.GetRepositoryByOwnerAndName(userName, repoName)
|
||||||
|
if err != nil {
|
||||||
|
log.Debug("Could not find repository: %s/%s - %s", userName, repoName, err)
|
||||||
|
writeStatus(ctx, 404)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
repository.MustOwner()
|
||||||
|
|
||||||
|
authenticated := authenticate(ctx, repository, authorization, true)
|
||||||
|
if !authenticated {
|
||||||
|
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=gitea-lfs")
|
||||||
|
ctx.JSON(401, api.LFSLockError{
|
||||||
|
Message: "You must have push access to delete locks",
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
var req api.LFSLockDeleteRequest
|
var req api.LFSLockDeleteRequest
|
||||||
dec := json.NewDecoder(ctx.Req.Body().ReadCloser())
|
dec := json.NewDecoder(ctx.Req.Body().ReadCloser())
|
||||||
err := dec.Decode(&req)
|
if err := dec.Decode(&req); err != nil {
|
||||||
if err != nil {
|
|
||||||
writeStatus(ctx, 400)
|
writeStatus(ctx, 400)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
@ -827,7 +827,7 @@ func RegisterRoutes(m *macaron.Macaron) {
|
||||||
m.Post("/", lfs.PostLockHandler)
|
m.Post("/", lfs.PostLockHandler)
|
||||||
m.Post("/verify", lfs.VerifyLockHandler)
|
m.Post("/verify", lfs.VerifyLockHandler)
|
||||||
m.Post("/:lid/unlock", lfs.UnLockHandler)
|
m.Post("/:lid/unlock", lfs.UnLockHandler)
|
||||||
}, context.RepoAssignment())
|
})
|
||||||
m.Any("/*", func(ctx *context.Context) {
|
m.Any("/*", func(ctx *context.Context) {
|
||||||
ctx.NotFound("", nil)
|
ctx.NotFound("", nil)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue