Files

321 lines
9.9 KiB
Go
Raw Permalink Normal View History

2017-11-28 21:58:37 +01:00
// Copyright 2017 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2017-11-28 21:58:37 +01:00
package lfs
import (
"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
2023-06-04 14:57:16 -04:00
auth_model "code.gitea.io/gitea/models/auth"
2022-06-12 23:51:54 +08:00
git_model "code.gitea.io/gitea/models/git"
repo_model "code.gitea.io/gitea/models/repo"
"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 11:32:41 +01:00
"code.gitea.io/gitea/modules/log"
2017-11-28 21:58:37 +01:00
"code.gitea.io/gitea/modules/setting"
2019-05-11 18:21:34 +08:00
api "code.gitea.io/gitea/modules/structs"
"code.gitea.io/gitea/services/context"
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 23:51:54 +08: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 23:51:54 +08:00
if git_model.IsErrLFSLockNotExist(err) {
ctx.JSON(http.StatusOK, api.LFSLockList{
2017-11-28 21:58:37 +01:00
Locks: []*api.LFSLock{},
})
return
}
ctx.JSON(http.StatusInternalServerError, api.LFSLockError{
2020-03-09 19:56:18 +00:00
Message: "unable to list locks : Internal Server Error",
2017-11-28 21:58:37 +01:00
})
return
}
2019-05-28 11:32:41 +01:00
if repo.ID != lock.RepoID {
ctx.JSON(http.StatusOK, api.LFSLockList{
2017-11-28 21:58:37 +01:00
Locks: []*api.LFSLock{},
})
return
}
ctx.JSON(http.StatusOK, api.LFSLockList{
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 11:32:41 +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 11:32:41 +01:00
log.Debug("Could not find repository: %s/%s - %s", rv.User, rv.Repo, err)
ctx.Resp.Header().Set("WWW-Authenticate", `Basic realm="gitea-lfs"`)
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
Message: "You must have pull access to list locks",
})
2019-05-28 11:32:41 +01:00
return
}
repository.MustOwner(ctx)
2019-05-28 11:32:41 +01:00
2023-06-04 14:57:16 -04:00
context.CheckRepoScopedToken(ctx, repository, auth_model.Read)
if ctx.Written() {
return
}
authenticated := authenticate(ctx, repository, rv.Authorization, true, false)
2019-05-28 11:32:41 +01:00
if !authenticated {
ctx.Resp.Header().Set("WWW-Authenticate", `Basic realm="gitea-lfs"`)
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
2019-05-28 11:32:41 +01:00
Message: "You must have pull access to list locks",
2017-11-28 21:58:37 +01:00
})
return
}
ctx.Resp.Header().Set("Content-Type", lfs_module.MediaType)
2020-03-09 19:56:18 +00:00
2025-06-18 03:48:09 +02:00
cursor := max(ctx.FormInt("cursor"), 0)
limit := ctx.FormInt("limit")
2020-03-09 19:56:18 +00:00
if limit > setting.LFS.LocksPagingNum && setting.LFS.LocksPagingNum > 0 {
limit = setting.LFS.LocksPagingNum
} else if limit < 0 {
limit = 0
}
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 {
ctx.JSON(http.StatusBadRequest, api.LFSLockError{
2017-11-28 21:58:37 +01:00
Message: "bad request : " + err.Error(),
})
return
}
lock, err := git_model.GetLFSLockByIDAndRepo(ctx, v, repository.ID)
2022-06-12 23:51:54 +08:00
if err != nil && !git_model.IsErrLFSLockNotExist(err) {
2020-03-09 19:56:18 +00:00
log.Error("Unable to get lock with ID[%s]: Error: %v", v, err)
}
2019-05-28 11:32:41 +01:00
handleLockListOut(ctx, repository, lock, err)
2017-11-28 21:58:37 +01:00
return
}
path := ctx.FormString("path")
2022-01-20 18:46:10 +01:00
if path != "" { // Case where we request a specific id
2022-06-12 23:51:54 +08:00
lock, err := git_model.GetLFSLock(ctx, repository, path)
if err != nil && !git_model.IsErrLFSLockNotExist(err) {
2020-03-09 19:56:18 +00:00
log.Error("Unable to get lock for repository %-v with path %s: Error: %v", repository, path, err)
}
2019-05-28 11:32:41 +01: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
lockList, err := git_model.GetLFSLockByRepoID(ctx, repository.ID, cursor, limit)
2017-11-28 21:58:37 +01:00
if err != nil {
2020-03-09 19:56:18 +00:00
log.Error("Unable to list locks for repository ID[%d]: Error: %v", repository.ID, err)
ctx.JSON(http.StatusInternalServerError, api.LFSLockError{
2020-03-09 19:56:18 +00: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 19:56:18 +00:00
next := ""
2017-11-28 21:58:37 +01:00
for i, l := range lockList {
lockListAPI[i] = convert.ToLFSLock(ctx, l)
2017-11-28 21:58:37 +01:00
}
2020-03-09 19:56:18 +00:00
if limit > 0 && len(lockList) == limit {
next = strconv.Itoa(cursor + 1)
}
ctx.JSON(http.StatusOK, api.LFSLockList{
2017-11-28 21:58:37 +01:00
Locks: lockListAPI,
2020-03-09 19:56:18 +00:00
Next: next,
2017-11-28 21:58:37 +01:00
})
}
// PostLockHandler create lock
func PostLockHandler(ctx *context.Context) {
2024-06-19 06:32:45 +08:00
userName := ctx.PathParam("username")
repoName := strings.TrimSuffix(ctx.PathParam("reponame"), ".git")
2019-05-28 11:32:41 +01:00
authorization := ctx.Req.Header.Get("Authorization")
repository, err := repo_model.GetRepositoryByOwnerAndName(ctx, userName, repoName)
2019-05-28 11:32:41 +01:00
if err != nil {
2020-03-09 19:56:18 +00:00
log.Error("Unable to get repository: %s/%s Error: %v", userName, repoName, err)
ctx.Resp.Header().Set("WWW-Authenticate", `Basic realm="gitea-lfs"`)
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
Message: "You must have push access to create locks",
})
2019-05-28 11:32:41 +01:00
return
}
repository.MustOwner(ctx)
2019-05-28 11:32:41 +01:00
2023-06-04 14:57:16 -04:00
context.CheckRepoScopedToken(ctx, repository, auth_model.Write)
if ctx.Written() {
return
}
authenticated := authenticate(ctx, repository, authorization, true, true)
2019-05-28 11:32:41 +01:00
if !authenticated {
ctx.Resp.Header().Set("WWW-Authenticate", `Basic realm="gitea-lfs"`)
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
2019-05-28 11:32:41 +01:00
Message: "You must have push access to create locks",
})
return
}
ctx.Resp.Header().Set("Content-Type", lfs_module.MediaType)
2017-11-28 21:58:37 +01:00
var req api.LFSLockRequest
2021-01-26 23:36:53 +08:00
bodyReader := ctx.Req.Body
defer bodyReader.Close()
dec := json.NewDecoder(bodyReader)
2019-05-28 11:32:41 +01:00
if err := dec.Decode(&req); err != nil {
2020-03-09 19:56:18 +00:00
log.Warn("Failed to decode lock request as json. Error: %v", err)
writeStatus(ctx, http.StatusBadRequest)
2017-11-28 21:58:37 +01:00
return
}
lock, err := git_model.CreateLFSLock(ctx, repository, &git_model.LFSLock{
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 23:51:54 +08:00
if git_model.IsErrLFSLockAlreadyExist(err) {
ctx.JSON(http.StatusConflict, api.LFSLockError{
Lock: convert.ToLFSLock(ctx, lock),
2017-11-28 21:58:37 +01:00
Message: "already created lock",
})
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)
ctx.JSON(http.StatusInternalServerError, api.LFSLockError{
2020-03-09 19:56:18 +00:00
Message: "internal server error : Internal Server Error",
2017-11-28 21:58:37 +01:00
})
return
}
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) {
2024-06-19 06:32:45 +08:00
userName := ctx.PathParam("username")
repoName := strings.TrimSuffix(ctx.PathParam("reponame"), ".git")
2019-05-28 11:32:41 +01:00
authorization := ctx.Req.Header.Get("Authorization")
repository, err := repo_model.GetRepositoryByOwnerAndName(ctx, userName, repoName)
2017-11-28 21:58:37 +01:00
if err != nil {
2020-03-09 19:56:18 +00:00
log.Error("Unable to get repository: %s/%s Error: %v", userName, repoName, err)
ctx.Resp.Header().Set("WWW-Authenticate", `Basic realm="gitea-lfs"`)
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
Message: "You must have push access to verify locks",
})
2019-05-28 11:32:41 +01:00
return
}
repository.MustOwner(ctx)
2019-05-28 11:32:41 +01:00
2023-06-04 14:57:16 -04:00
context.CheckRepoScopedToken(ctx, repository, auth_model.Read)
if ctx.Written() {
return
}
authenticated := authenticate(ctx, repository, authorization, true, true)
2019-05-28 11:32:41 +01:00
if !authenticated {
ctx.Resp.Header().Set("WWW-Authenticate", `Basic realm="gitea-lfs"`)
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
2019-05-28 11:32:41 +01:00
Message: "You must have push access to verify locks",
2017-11-28 21:58:37 +01:00
})
return
}
ctx.Resp.Header().Set("Content-Type", lfs_module.MediaType)
2025-06-18 03:48:09 +02:00
cursor := max(ctx.FormInt("cursor"), 0)
limit := ctx.FormInt("limit")
2020-03-09 19:56:18 +00:00
if limit > setting.LFS.LocksPagingNum && setting.LFS.LocksPagingNum > 0 {
limit = setting.LFS.LocksPagingNum
} else if limit < 0 {
limit = 0
}
lockList, err := git_model.GetLFSLockByRepoID(ctx, repository.ID, cursor, limit)
2017-11-28 21:58:37 +01:00
if err != nil {
2020-03-09 19:56:18 +00:00
log.Error("Unable to list locks for repository ID[%d]: Error: %v", repository.ID, err)
ctx.JSON(http.StatusInternalServerError, api.LFSLockError{
2020-03-09 19:56:18 +00:00
Message: "unable to list locks : Internal Server Error",
2017-11-28 21:58:37 +01:00
})
return
}
2020-03-09 19:56:18 +00: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 {
lockOursListAPI = append(lockOursListAPI, convert.ToLFSLock(ctx, l))
2017-11-28 21:58:37 +01:00
} else {
lockTheirsListAPI = append(lockTheirsListAPI, convert.ToLFSLock(ctx, l))
2017-11-28 21:58:37 +01:00
}
}
ctx.JSON(http.StatusOK, api.LFSLockListVerify{
2017-11-28 21:58:37 +01:00
Ours: lockOursListAPI,
Theirs: lockTheirsListAPI,
2020-03-09 19:56:18 +00:00
Next: next,
2017-11-28 21:58:37 +01:00
})
}
// UnLockHandler delete locks
func UnLockHandler(ctx *context.Context) {
2024-06-19 06:32:45 +08:00
userName := ctx.PathParam("username")
repoName := strings.TrimSuffix(ctx.PathParam("reponame"), ".git")
2019-05-28 11:32:41 +01:00
authorization := ctx.Req.Header.Get("Authorization")
repository, err := repo_model.GetRepositoryByOwnerAndName(ctx, userName, repoName)
2019-05-28 11:32:41 +01:00
if err != nil {
2020-03-09 19:56:18 +00:00
log.Error("Unable to get repository: %s/%s Error: %v", userName, repoName, err)
ctx.Resp.Header().Set("WWW-Authenticate", `Basic realm="gitea-lfs"`)
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
Message: "You must have push access to delete locks",
})
2019-05-28 11:32:41 +01:00
return
}
repository.MustOwner(ctx)
2019-05-28 11:32:41 +01:00
2023-06-04 14:57:16 -04:00
context.CheckRepoScopedToken(ctx, repository, auth_model.Write)
if ctx.Written() {
return
}
authenticated := authenticate(ctx, repository, authorization, true, true)
2019-05-28 11:32:41 +01:00
if !authenticated {
ctx.Resp.Header().Set("WWW-Authenticate", `Basic realm="gitea-lfs"`)
ctx.JSON(http.StatusUnauthorized, api.LFSLockError{
2019-05-28 11:32:41 +01:00
Message: "You must have push access to delete locks",
})
return
}
ctx.Resp.Header().Set("Content-Type", lfs_module.MediaType)
2017-11-28 21:58:37 +01:00
var req api.LFSLockDeleteRequest
2021-01-26 23:36:53 +08:00
bodyReader := ctx.Req.Body
defer bodyReader.Close()
dec := json.NewDecoder(bodyReader)
2019-05-28 11:32:41 +01:00
if err := dec.Decode(&req); err != nil {
2020-03-09 19:56:18 +00:00
log.Warn("Failed to decode lock request as json. Error: %v", err)
writeStatus(ctx, http.StatusBadRequest)
2017-11-28 21:58:37 +01:00
return
}
2024-06-19 06:32:45 +08:00
lock, err := git_model.DeleteLFSLockByID(ctx, ctx.PathParamInt64("lid"), repository, ctx.Doer, req.Force)
2017-11-28 21:58:37 +01:00
if err != nil {
2024-06-19 06:32:45 +08:00
log.Error("Unable to DeleteLFSLockByID[%d] by user %-v with force %t: Error: %v", ctx.PathParamInt64("lid"), ctx.Doer, req.Force, err)
ctx.JSON(http.StatusInternalServerError, api.LFSLockError{
2020-03-09 19:56:18 +00:00
Message: "unable to delete lock : Internal Server Error",
2017-11-28 21:58:37 +01:00
})
return
}
ctx.JSON(http.StatusOK, api.LFSLockResponse{Lock: convert.ToLFSLock(ctx, lock)})
2017-11-28 21:58:37 +01:00
}