You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitea/modules/context
Lunny Xiao 5f82ead13c
Simplify how git repositories are opened (#28937)
## Purpose
This is a refactor toward building an abstraction over managing git
repositories.
Afterwards, it does not matter anymore if they are stored on the local
disk or somewhere remote.

## What this PR changes
We used `git.OpenRepository` everywhere previously.
Now, we should split them into two distinct functions:

Firstly, there are temporary repositories which do not change:

```go
git.OpenRepository(ctx, diskPath)
```

Gitea managed repositories having a record in the database in the
`repository` table are moved into the new package `gitrepo`:

```go
gitrepo.OpenRepository(ctx, repo_model.Repo)
```

Why is `repo_model.Repository` the second parameter instead of file
path?
Because then we can easily adapt our repository storage strategy.
The repositories can be stored locally, however, they could just as well
be stored on a remote server.

## Further changes in other PRs
- A Git Command wrapper on package `gitrepo` could be created. i.e.
`NewCommand(ctx, repo_model.Repository, commands...)`. `git.RunOpts{Dir:
repo.RepoPath()}`, the directory should be empty before invoking this
method and it can be filled in the function only. #28940
- Remove the `RepoPath()`/`WikiPath()` functions to reduce the
possibility of mistakes.

---------

Co-authored-by: delvh <dev.lh@web.de>
1 year ago
..
access_log.go Replace `interface{}` with `any` (#25686) 2 years ago
api.go Simplify how git repositories are opened (#28937) 1 year ago
api_org.go Implement FSFE REUSE for golang files (#21840) 2 years ago
api_test.go Implement FSFE REUSE for golang files (#21840) 2 years ago
base.go Introduce ctx.PathParamRaw to avoid incorrect unescaping (#26392) 2 years ago
captcha.go Replace `interface{}` with `any` (#25686) 2 years ago
context.go Simplify how git repositories are opened (#28937) 1 year ago
context_cookie.go Enhanced auth token / remember me (#27606) 1 year ago
context_model.go Improve Gitea's web context, decouple "issue template" code into service package (#24590) 2 years ago
context_request.go Decouple the different contexts from each other (#24786) 2 years ago
context_response.go Start using template context function (#26254) 2 years ago
context_template.go Start using template context function (#26254) 2 years ago
context_test.go Use standard HTTP library to serve files (#24693) 2 years ago
csrf.go Refactor cookie (#24107) 2 years ago
org.go Even more `db.DefaultContext` refactor (#27352) 1 year ago
package.go Prevent anonymous container access if `RequireSignInView` is enabled (#28877) 1 year ago
pagination.go Replace `interface{}` with `any` (#25686) 2 years ago
permission.go Add context parameter to some database functions (#26055) 2 years ago
private.go Replace `interface{}` with `any` (#25686) 2 years ago
repo.go Simplify how git repositories are opened (#28937) 1 year ago
response.go Refactor web package and context package (#25298) 2 years ago
utils.go Avoid double-unescaping of form value (#26853) 1 year ago
xsrf.go Update gitea-vet to check FSFE REUSE (#22004) 2 years ago
xsrf_test.go Update gitea-vet to check FSFE REUSE (#22004) 2 years ago