mirror of
https://github.com/go-gitea/gitea.git
synced 2026-07-21 22:05:17 +02:00
before: gitrepo vs git packages after: git package fully handle all git operations by the way, use `WithRepo(repo)` instead of `WithDir(repo.Path)` to hide path details. benefits: 1. remove all unnecessary wrappers, developers no need to struggle with "which package should be used" 2. simplify code, RepositoryFacade can (will) be used everywhere, all "path" details are (will be) hidden
52 lines
1.6 KiB
Go
52 lines
1.6 KiB
Go
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package git
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
|
|
"gitea.dev/modules/git/gitcmd"
|
|
"gitea.dev/modules/reqctx"
|
|
"gitea.dev/modules/util"
|
|
)
|
|
|
|
// contextKey is a value for use with context.WithValue.
|
|
type contextKey struct {
|
|
key string
|
|
}
|
|
|
|
// RepositoryFromContextOrOpen attempts to get the repository from the context or just opens it
|
|
// The caller must call Closer.Close()
|
|
func RepositoryFromContextOrOpen(ctx context.Context, repo RepositoryFacade) (*Repository, io.Closer, error) {
|
|
reqCtx := reqctx.FromContext(ctx)
|
|
if reqCtx != nil {
|
|
gitRepo, err := RepositoryFromRequestContextOrOpen(reqCtx, repo)
|
|
return gitRepo, util.NopCloser{}, err
|
|
}
|
|
gitRepo, err := OpenRepository(repo)
|
|
return gitRepo, gitRepo, err
|
|
}
|
|
|
|
// RepositoryFromRequestContextOrOpen opens the repository at the given relative path in the provided request context.
|
|
// Caller shouldn't close the git repo manually, the git repo will be automatically closed when the request context is done.
|
|
func RepositoryFromRequestContextOrOpen(ctx reqctx.RequestContext, repo RepositoryFacade) (*Repository, error) {
|
|
ck := contextKey{key: repo.GitRepoLocation()}
|
|
if gitRepo, ok := ctx.Value(ck).(*Repository); ok {
|
|
return gitRepo, nil
|
|
}
|
|
gitRepo, err := OpenRepository(repo)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
ctx.AddCloser(gitRepo)
|
|
ctx.SetContextValue(ck, gitRepo)
|
|
return gitRepo, nil
|
|
}
|
|
|
|
func UpdateServerInfo(ctx context.Context, repo RepositoryFacade) error {
|
|
_, _, err := gitcmd.NewCommand("update-server-info").WithRepo(repo).RunStdBytes(ctx)
|
|
return err
|
|
}
|