2017-11-28 21:58:37 +01:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-11-28 21:58:37 +01:00
|
|
|
|
|
|
|
package lfs
|
|
|
|
|
|
|
|
import (
|
2021-04-05 17:30:52 +02:00
|
|
|
"net/http"
|
2017-11-28 21:58:37 +01:00
|
|
|
"strconv"
|
2017-11-29 00:35:23 +01:00
|
|
|
"strings"
|
2017-11-28 21:58:37 +01:00
|
|
|
|
2022-06-12 17:51:54 +02:00
|
|
|
git_model "code.gitea.io/gitea/models/git"
|
2021-12-10 02:27:50 +01:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2017-11-28 21:58:37 +01:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2021-07-24 18:03:58 +02:00
|
|
|
"code.gitea.io/gitea/modules/json"
|
2021-04-09 00:25:57 +02:00
|
|
|
lfs_module "code.gitea.io/gitea/modules/lfs"
|
2019-05-28 12:32:41 +02:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2017-11-28 21:58:37 +01:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-05-11 12:21:34 +02:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2022-12-29 03:57:15 +01:00
|
|
|
"code.gitea.io/gitea/services/convert"
|
2017-11-28 21:58:37 +01:00
|
|
|
)
|
|
|
|
|
2022-06-12 17:51:54 +02:00
|
|
|
func handleLockListOut(ctx *context.Context, repo *repo_model.Repository, lock *git_model.LFSLock, err error) {
|
2017-11-28 21:58:37 +01:00
|
|
|
if err != nil {
|
2022-06-12 17:51:54 +02:00
|
|
|
if git_model.IsErrLFSLockNotExist(err) {
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusOK, api.LFSLockList{
|
2017-11-28 21:58:37 +01:00
|
|
|
Locks: []*api.LFSLock{},
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusInternalServerError, api.LFSLockError{
|
2020-03-09 20:56:18 +01:00
|
|
|
Message: "unable to list locks : Internal Server Error",
|
2017-11-28 21:58:37 +01:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2019-05-28 12:32:41 +02:00
|
|
|
if repo.ID != lock.RepoID {
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusOK, api.LFSLockList{
|
2017-11-28 21:58:37 +01:00
|
|
|
Locks: []*api.LFSLock{},
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusOK, api.LFSLockList{
|
2022-12-03 03:48:26 +01:00
|
|
|
Locks: []*api.LFSLock{convert.ToLFSLock(ctx, lock)},
|
2017-11-28 21:58:37 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetListLockHandler list locks
|
|
|
|
func GetListLockHandler(ctx *context.Context) {
|
2021-06-06 01:59:27 +02:00
|
|
|
rv := getRequestContext(ctx)
|
2019-05-28 12:32:41 +02:00
|
|
|
|
2022-12-03 03:48:26 +01:00
|
|
|
repository, err := repo_model.GetRepositoryByOwnerAndName(ctx, rv.User, rv.Repo)
|
2017-11-28 21:58:37 +01:00
|
|
|
if err != nil {
|
2019-05-28 12:32:41 +02:00
|
|
|
log.Debug("Could not find repository: %s/%s - %s", rv.User, rv.Repo, err)
|
2021-05-15 17:32:09 +02:00
|
|
|
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=gitea-lfs")
|
2022-03-23 05:54:07 +01:00
|
|
|
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
|
2021-05-15 17:32:09 +02:00
|
|
|
Message: "You must have pull access to list locks",
|
|
|
|
})
|
2019-05-28 12:32:41 +02:00
|
|
|
return
|
|
|
|
}
|
2022-11-19 09:12:33 +01:00
|
|
|
repository.MustOwner(ctx)
|
2019-05-28 12:32:41 +02:00
|
|
|
|
2021-05-15 17:32:09 +02:00
|
|
|
authenticated := authenticate(ctx, repository, rv.Authorization, true, false)
|
2019-05-28 12:32:41 +02:00
|
|
|
if !authenticated {
|
|
|
|
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=gitea-lfs")
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
|
2019-05-28 12:32:41 +02:00
|
|
|
Message: "You must have pull access to list locks",
|
2017-11-28 21:58:37 +01:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2021-05-15 17:32:09 +02:00
|
|
|
ctx.Resp.Header().Set("Content-Type", lfs_module.MediaType)
|
2020-03-09 20:56:18 +01:00
|
|
|
|
2021-07-29 03:42:15 +02:00
|
|
|
cursor := ctx.FormInt("cursor")
|
2020-03-09 20:56:18 +01:00
|
|
|
if cursor < 0 {
|
|
|
|
cursor = 0
|
|
|
|
}
|
2021-07-29 03:42:15 +02:00
|
|
|
limit := ctx.FormInt("limit")
|
2020-03-09 20:56:18 +01:00
|
|
|
if limit > setting.LFS.LocksPagingNum && setting.LFS.LocksPagingNum > 0 {
|
|
|
|
limit = setting.LFS.LocksPagingNum
|
|
|
|
} else if limit < 0 {
|
|
|
|
limit = 0
|
|
|
|
}
|
2021-08-11 02:31:13 +02:00
|
|
|
id := ctx.FormString("id")
|
2022-01-20 18:46:10 +01:00
|
|
|
if id != "" { // Case where we request a specific id
|
2017-11-28 21:58:37 +01:00
|
|
|
v, err := strconv.ParseInt(id, 10, 64)
|
|
|
|
if err != nil {
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusBadRequest, api.LFSLockError{
|
2017-11-28 21:58:37 +01:00
|
|
|
Message: "bad request : " + err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2022-06-12 17:51:54 +02:00
|
|
|
lock, err := git_model.GetLFSLockByID(ctx, v)
|
|
|
|
if err != nil && !git_model.IsErrLFSLockNotExist(err) {
|
2020-03-09 20:56:18 +01:00
|
|
|
log.Error("Unable to get lock with ID[%s]: Error: %v", v, err)
|
|
|
|
}
|
2019-05-28 12:32:41 +02:00
|
|
|
handleLockListOut(ctx, repository, lock, err)
|
2017-11-28 21:58:37 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-08-11 02:31:13 +02:00
|
|
|
path := ctx.FormString("path")
|
2022-01-20 18:46:10 +01:00
|
|
|
if path != "" { // Case where we request a specific id
|
2022-06-12 17:51:54 +02:00
|
|
|
lock, err := git_model.GetLFSLock(ctx, repository, path)
|
|
|
|
if err != nil && !git_model.IsErrLFSLockNotExist(err) {
|
2020-03-09 20:56:18 +01:00
|
|
|
log.Error("Unable to get lock for repository %-v with path %s: Error: %v", repository, path, err)
|
|
|
|
}
|
2019-05-28 12:32:41 +02:00
|
|
|
handleLockListOut(ctx, repository, lock, err)
|
2017-11-28 21:58:37 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-01-20 18:46:10 +01:00
|
|
|
// If no query params path or id
|
2023-01-09 04:50:54 +01:00
|
|
|
lockList, err := git_model.GetLFSLockByRepoID(ctx, repository.ID, cursor, limit)
|
2017-11-28 21:58:37 +01:00
|
|
|
if err != nil {
|
2020-03-09 20:56:18 +01:00
|
|
|
log.Error("Unable to list locks for repository ID[%d]: Error: %v", repository.ID, err)
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusInternalServerError, api.LFSLockError{
|
2020-03-09 20:56:18 +01:00
|
|
|
Message: "unable to list locks : Internal Server Error",
|
2017-11-28 21:58:37 +01:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
lockListAPI := make([]*api.LFSLock, len(lockList))
|
2020-03-09 20:56:18 +01:00
|
|
|
next := ""
|
2017-11-28 21:58:37 +01:00
|
|
|
for i, l := range lockList {
|
2022-12-03 03:48:26 +01:00
|
|
|
lockListAPI[i] = convert.ToLFSLock(ctx, l)
|
2017-11-28 21:58:37 +01:00
|
|
|
}
|
2020-03-09 20:56:18 +01:00
|
|
|
if limit > 0 && len(lockList) == limit {
|
|
|
|
next = strconv.Itoa(cursor + 1)
|
|
|
|
}
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusOK, api.LFSLockList{
|
2017-11-28 21:58:37 +01:00
|
|
|
Locks: lockListAPI,
|
2020-03-09 20:56:18 +01:00
|
|
|
Next: next,
|
2017-11-28 21:58:37 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// PostLockHandler create lock
|
|
|
|
func PostLockHandler(ctx *context.Context) {
|
2019-05-28 12:32:41 +02:00
|
|
|
userName := ctx.Params("username")
|
|
|
|
repoName := strings.TrimSuffix(ctx.Params("reponame"), ".git")
|
|
|
|
authorization := ctx.Req.Header.Get("Authorization")
|
|
|
|
|
2022-12-03 03:48:26 +01:00
|
|
|
repository, err := repo_model.GetRepositoryByOwnerAndName(ctx, userName, repoName)
|
2019-05-28 12:32:41 +02:00
|
|
|
if err != nil {
|
2020-03-09 20:56:18 +01:00
|
|
|
log.Error("Unable to get repository: %s/%s Error: %v", userName, repoName, err)
|
2021-05-15 17:32:09 +02:00
|
|
|
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=gitea-lfs")
|
2022-03-23 05:54:07 +01:00
|
|
|
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
|
2021-05-15 17:32:09 +02:00
|
|
|
Message: "You must have push access to create locks",
|
|
|
|
})
|
2019-05-28 12:32:41 +02:00
|
|
|
return
|
|
|
|
}
|
2022-11-19 09:12:33 +01:00
|
|
|
repository.MustOwner(ctx)
|
2019-05-28 12:32:41 +02:00
|
|
|
|
2021-05-15 17:32:09 +02:00
|
|
|
authenticated := authenticate(ctx, repository, authorization, true, true)
|
2019-05-28 12:32:41 +02:00
|
|
|
if !authenticated {
|
|
|
|
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=gitea-lfs")
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
|
2019-05-28 12:32:41 +02:00
|
|
|
Message: "You must have push access to create locks",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-15 17:32:09 +02:00
|
|
|
ctx.Resp.Header().Set("Content-Type", lfs_module.MediaType)
|
|
|
|
|
2017-11-28 21:58:37 +01:00
|
|
|
var req api.LFSLockRequest
|
2021-01-26 16:36:53 +01:00
|
|
|
bodyReader := ctx.Req.Body
|
2019-10-10 19:42:28 +02:00
|
|
|
defer bodyReader.Close()
|
2021-07-24 18:03:58 +02:00
|
|
|
|
2019-10-10 19:42:28 +02:00
|
|
|
dec := json.NewDecoder(bodyReader)
|
2019-05-28 12:32:41 +02:00
|
|
|
if err := dec.Decode(&req); err != nil {
|
2020-03-09 20:56:18 +01:00
|
|
|
log.Warn("Failed to decode lock request as json. Error: %v", err)
|
2022-03-23 05:54:07 +01:00
|
|
|
writeStatus(ctx, http.StatusBadRequest)
|
2017-11-28 21:58:37 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-01-09 04:50:54 +01:00
|
|
|
lock, err := git_model.CreateLFSLock(ctx, repository, &git_model.LFSLock{
|
2021-11-24 10:49:20 +01:00
|
|
|
Path: req.Path,
|
2022-03-22 08:03:22 +01:00
|
|
|
OwnerID: ctx.Doer.ID,
|
2017-11-28 21:58:37 +01:00
|
|
|
})
|
|
|
|
if err != nil {
|
2022-06-12 17:51:54 +02:00
|
|
|
if git_model.IsErrLFSLockAlreadyExist(err) {
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusConflict, api.LFSLockError{
|
2022-12-03 03:48:26 +01:00
|
|
|
Lock: convert.ToLFSLock(ctx, lock),
|
2017-11-28 21:58:37 +01:00
|
|
|
Message: "already created lock",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2022-06-12 17:51:54 +02:00
|
|
|
if git_model.IsErrLFSUnauthorizedAction(err) {
|
2018-01-27 17:48:15 +01:00
|
|
|
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=gitea-lfs")
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
|
2017-11-28 21:58:37 +01:00
|
|
|
Message: "You must have push access to create locks : " + err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2022-03-22 08:03:22 +01:00
|
|
|
log.Error("Unable to CreateLFSLock in repository %-v at %s for user %-v: Error: %v", repository, req.Path, ctx.Doer, err)
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusInternalServerError, api.LFSLockError{
|
2020-03-09 20:56:18 +01:00
|
|
|
Message: "internal server error : Internal Server Error",
|
2017-11-28 21:58:37 +01:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2022-12-03 03:48:26 +01:00
|
|
|
ctx.JSON(http.StatusCreated, api.LFSLockResponse{Lock: convert.ToLFSLock(ctx, lock)})
|
2017-11-28 21:58:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// VerifyLockHandler list locks for verification
|
|
|
|
func VerifyLockHandler(ctx *context.Context) {
|
2019-05-28 12:32:41 +02:00
|
|
|
userName := ctx.Params("username")
|
|
|
|
repoName := strings.TrimSuffix(ctx.Params("reponame"), ".git")
|
|
|
|
authorization := ctx.Req.Header.Get("Authorization")
|
|
|
|
|
2022-12-03 03:48:26 +01:00
|
|
|
repository, err := repo_model.GetRepositoryByOwnerAndName(ctx, userName, repoName)
|
2017-11-28 21:58:37 +01:00
|
|
|
if err != nil {
|
2020-03-09 20:56:18 +01:00
|
|
|
log.Error("Unable to get repository: %s/%s Error: %v", userName, repoName, err)
|
2021-05-15 17:32:09 +02:00
|
|
|
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=gitea-lfs")
|
2022-03-23 05:54:07 +01:00
|
|
|
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
|
2021-05-15 17:32:09 +02:00
|
|
|
Message: "You must have push access to verify locks",
|
|
|
|
})
|
2019-05-28 12:32:41 +02:00
|
|
|
return
|
|
|
|
}
|
2022-11-19 09:12:33 +01:00
|
|
|
repository.MustOwner(ctx)
|
2019-05-28 12:32:41 +02:00
|
|
|
|
2021-05-15 17:32:09 +02:00
|
|
|
authenticated := authenticate(ctx, repository, authorization, true, true)
|
2019-05-28 12:32:41 +02:00
|
|
|
if !authenticated {
|
|
|
|
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=gitea-lfs")
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
|
2019-05-28 12:32:41 +02:00
|
|
|
Message: "You must have push access to verify locks",
|
2017-11-28 21:58:37 +01:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-15 17:32:09 +02:00
|
|
|
ctx.Resp.Header().Set("Content-Type", lfs_module.MediaType)
|
|
|
|
|
2021-07-29 03:42:15 +02:00
|
|
|
cursor := ctx.FormInt("cursor")
|
2020-03-09 20:56:18 +01:00
|
|
|
if cursor < 0 {
|
|
|
|
cursor = 0
|
|
|
|
}
|
2021-07-29 03:42:15 +02:00
|
|
|
limit := ctx.FormInt("limit")
|
2020-03-09 20:56:18 +01:00
|
|
|
if limit > setting.LFS.LocksPagingNum && setting.LFS.LocksPagingNum > 0 {
|
|
|
|
limit = setting.LFS.LocksPagingNum
|
|
|
|
} else if limit < 0 {
|
|
|
|
limit = 0
|
|
|
|
}
|
2023-01-09 04:50:54 +01:00
|
|
|
lockList, err := git_model.GetLFSLockByRepoID(ctx, repository.ID, cursor, limit)
|
2017-11-28 21:58:37 +01:00
|
|
|
if err != nil {
|
2020-03-09 20:56:18 +01:00
|
|
|
log.Error("Unable to list locks for repository ID[%d]: Error: %v", repository.ID, err)
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusInternalServerError, api.LFSLockError{
|
2020-03-09 20:56:18 +01:00
|
|
|
Message: "unable to list locks : Internal Server Error",
|
2017-11-28 21:58:37 +01:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2020-03-09 20:56:18 +01:00
|
|
|
next := ""
|
|
|
|
if limit > 0 && len(lockList) == limit {
|
|
|
|
next = strconv.Itoa(cursor + 1)
|
|
|
|
}
|
2017-11-28 21:58:37 +01:00
|
|
|
lockOursListAPI := make([]*api.LFSLock, 0, len(lockList))
|
|
|
|
lockTheirsListAPI := make([]*api.LFSLock, 0, len(lockList))
|
|
|
|
for _, l := range lockList {
|
2022-03-22 08:03:22 +01:00
|
|
|
if l.OwnerID == ctx.Doer.ID {
|
2022-12-03 03:48:26 +01:00
|
|
|
lockOursListAPI = append(lockOursListAPI, convert.ToLFSLock(ctx, l))
|
2017-11-28 21:58:37 +01:00
|
|
|
} else {
|
2022-12-03 03:48:26 +01:00
|
|
|
lockTheirsListAPI = append(lockTheirsListAPI, convert.ToLFSLock(ctx, l))
|
2017-11-28 21:58:37 +01:00
|
|
|
}
|
|
|
|
}
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusOK, api.LFSLockListVerify{
|
2017-11-28 21:58:37 +01:00
|
|
|
Ours: lockOursListAPI,
|
|
|
|
Theirs: lockTheirsListAPI,
|
2020-03-09 20:56:18 +01:00
|
|
|
Next: next,
|
2017-11-28 21:58:37 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnLockHandler delete locks
|
|
|
|
func UnLockHandler(ctx *context.Context) {
|
2019-05-28 12:32:41 +02:00
|
|
|
userName := ctx.Params("username")
|
|
|
|
repoName := strings.TrimSuffix(ctx.Params("reponame"), ".git")
|
|
|
|
authorization := ctx.Req.Header.Get("Authorization")
|
|
|
|
|
2022-12-03 03:48:26 +01:00
|
|
|
repository, err := repo_model.GetRepositoryByOwnerAndName(ctx, userName, repoName)
|
2019-05-28 12:32:41 +02:00
|
|
|
if err != nil {
|
2020-03-09 20:56:18 +01:00
|
|
|
log.Error("Unable to get repository: %s/%s Error: %v", userName, repoName, err)
|
2021-05-15 17:32:09 +02:00
|
|
|
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=gitea-lfs")
|
2022-03-23 05:54:07 +01:00
|
|
|
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
|
2021-05-15 17:32:09 +02:00
|
|
|
Message: "You must have push access to delete locks",
|
|
|
|
})
|
2019-05-28 12:32:41 +02:00
|
|
|
return
|
|
|
|
}
|
2022-11-19 09:12:33 +01:00
|
|
|
repository.MustOwner(ctx)
|
2019-05-28 12:32:41 +02:00
|
|
|
|
2021-05-15 17:32:09 +02:00
|
|
|
authenticated := authenticate(ctx, repository, authorization, true, true)
|
2019-05-28 12:32:41 +02:00
|
|
|
if !authenticated {
|
|
|
|
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=gitea-lfs")
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
|
2019-05-28 12:32:41 +02:00
|
|
|
Message: "You must have push access to delete locks",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-05-15 17:32:09 +02:00
|
|
|
ctx.Resp.Header().Set("Content-Type", lfs_module.MediaType)
|
|
|
|
|
2017-11-28 21:58:37 +01:00
|
|
|
var req api.LFSLockDeleteRequest
|
2021-01-26 16:36:53 +01:00
|
|
|
bodyReader := ctx.Req.Body
|
2019-10-10 19:42:28 +02:00
|
|
|
defer bodyReader.Close()
|
2021-07-24 18:03:58 +02:00
|
|
|
|
2019-10-10 19:42:28 +02:00
|
|
|
dec := json.NewDecoder(bodyReader)
|
2019-05-28 12:32:41 +02:00
|
|
|
if err := dec.Decode(&req); err != nil {
|
2020-03-09 20:56:18 +01:00
|
|
|
log.Warn("Failed to decode lock request as json. Error: %v", err)
|
2022-03-23 05:54:07 +01:00
|
|
|
writeStatus(ctx, http.StatusBadRequest)
|
2017-11-28 21:58:37 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-01-09 04:50:54 +01:00
|
|
|
lock, err := git_model.DeleteLFSLockByID(ctx, ctx.ParamsInt64("lid"), repository, ctx.Doer, req.Force)
|
2017-11-28 21:58:37 +01:00
|
|
|
if err != nil {
|
2022-06-12 17:51:54 +02:00
|
|
|
if git_model.IsErrLFSUnauthorizedAction(err) {
|
2018-01-27 17:48:15 +01:00
|
|
|
ctx.Resp.Header().Set("WWW-Authenticate", "Basic realm=gitea-lfs")
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
|
2017-11-28 21:58:37 +01:00
|
|
|
Message: "You must have push access to delete locks : " + err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2022-03-22 08:03:22 +01:00
|
|
|
log.Error("Unable to DeleteLFSLockByID[%d] by user %-v with force %t: Error: %v", ctx.ParamsInt64("lid"), ctx.Doer, req.Force, err)
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.JSON(http.StatusInternalServerError, api.LFSLockError{
|
2020-03-09 20:56:18 +01:00
|
|
|
Message: "unable to delete lock : Internal Server Error",
|
2017-11-28 21:58:37 +01:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2022-12-03 03:48:26 +01:00
|
|
|
ctx.JSON(http.StatusOK, api.LFSLockResponse{Lock: convert.ToLFSLock(ctx, lock)})
|
2017-11-28 21:58:37 +01:00
|
|
|
}
|