2023-01-20 04:42:33 -07:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
2024-02-18 02:52:02 -07:00
|
|
|
"net/url"
|
|
|
|
|
2023-07-06 12:59:24 -06:00
|
|
|
"code.gitea.io/gitea/models/db"
|
|
|
|
"code.gitea.io/gitea/models/organization"
|
2023-11-13 07:33:22 -07:00
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
2023-11-17 20:02:42 -07:00
|
|
|
project_model "code.gitea.io/gitea/models/project"
|
2023-05-08 23:57:24 -06:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2023-11-13 07:33:22 -07:00
|
|
|
"code.gitea.io/gitea/models/unit"
|
2023-07-06 12:59:24 -06:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2023-05-08 23:57:24 -06:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
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>
2024-01-27 13:09:51 -07:00
|
|
|
"code.gitea.io/gitea/modules/gitrepo"
|
2023-07-06 12:59:24 -06:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2023-01-20 04:42:33 -07:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2023-08-11 11:08:05 -06:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2024-02-27 00:12:22 -07:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2023-01-20 04:42:33 -07:00
|
|
|
)
|
|
|
|
|
2023-07-06 12:59:24 -06:00
|
|
|
// prepareContextForCommonProfile store some common data into context data for user's profile related pages (including the nav menu)
|
|
|
|
// It is designed to be fast and safe to be called multiple times in one request
|
|
|
|
func prepareContextForCommonProfile(ctx *context.Context) {
|
2023-03-10 08:18:20 -07:00
|
|
|
ctx.Data["IsPackageEnabled"] = setting.Packages.Enabled
|
2023-01-20 04:42:33 -07:00
|
|
|
ctx.Data["IsRepoIndexerEnabled"] = setting.Indexer.RepoIndexerEnabled
|
2023-07-06 12:59:24 -06:00
|
|
|
ctx.Data["EnableFeed"] = setting.Other.EnableFeed
|
|
|
|
ctx.Data["FeedURL"] = ctx.ContextUser.HomeLink()
|
|
|
|
}
|
|
|
|
|
|
|
|
// PrepareContextForProfileBigAvatar set the context for big avatar view on the profile page
|
|
|
|
func PrepareContextForProfileBigAvatar(ctx *context.Context) {
|
|
|
|
prepareContextForCommonProfile(ctx)
|
|
|
|
|
|
|
|
ctx.Data["ShowUserEmail"] = setting.UI.ShowUserEmail && ctx.ContextUser.Email != "" && ctx.IsSigned && !ctx.ContextUser.KeepEmailPrivate
|
2024-02-28 09:03:06 -07:00
|
|
|
if setting.Service.UserLocationMapURL != "" {
|
|
|
|
ctx.Data["ContextUserLocationMapURL"] = setting.Service.UserLocationMapURL + url.QueryEscape(ctx.ContextUser.Location)
|
|
|
|
}
|
2023-07-06 12:59:24 -06:00
|
|
|
// Show OpenID URIs
|
2023-09-15 00:13:19 -06:00
|
|
|
openIDs, err := user_model.GetUserOpenIDs(ctx, ctx.ContextUser.ID)
|
2023-07-06 12:59:24 -06:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetUserOpenIDs", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["OpenIDs"] = openIDs
|
|
|
|
|
|
|
|
showPrivate := ctx.IsSigned && (ctx.Doer.IsAdmin || ctx.Doer.ID == ctx.ContextUser.ID)
|
2023-11-23 20:49:41 -07:00
|
|
|
orgs, err := db.Find[organization.Organization](ctx, organization.FindOrgOptions{
|
2023-07-06 12:59:24 -06:00
|
|
|
UserID: ctx.ContextUser.ID,
|
|
|
|
IncludePrivate: showPrivate,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("FindOrgs", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Orgs"] = orgs
|
2023-10-03 04:30:41 -06:00
|
|
|
ctx.Data["HasOrgsVisible"] = organization.HasOrgsVisible(ctx, orgs, ctx.Doer)
|
2023-07-06 12:59:24 -06:00
|
|
|
|
|
|
|
badges, _, err := user_model.GetUserBadges(ctx, ctx.ContextUser)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetUserBadges", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Badges"] = badges
|
|
|
|
|
|
|
|
// in case the numbers are already provided by other functions, no need to query again (which is slow)
|
|
|
|
if _, ok := ctx.Data["NumFollowers"]; !ok {
|
|
|
|
_, ctx.Data["NumFollowers"], _ = user_model.GetUserFollowers(ctx, ctx.ContextUser, ctx.Doer, db.ListOptions{PageSize: 1, Page: 1})
|
|
|
|
}
|
|
|
|
if _, ok := ctx.Data["NumFollowing"]; !ok {
|
|
|
|
_, ctx.Data["NumFollowing"], _ = user_model.GetUserFollowing(ctx, ctx.ContextUser, ctx.Doer, db.ListOptions{PageSize: 1, Page: 1})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-27 01:32:27 -07:00
|
|
|
func FindUserProfileReadme(ctx *context.Context, doer *user_model.User) (profileDbRepo *repo_model.Repository, profileGitRepo *git.Repository, profileReadmeBlob *git.Blob, profileClose func()) {
|
2023-10-10 22:24:07 -06:00
|
|
|
profileDbRepo, err := repo_model.GetRepositoryByName(ctx, ctx.ContextUser.ID, ".profile")
|
2023-11-13 07:33:22 -07:00
|
|
|
if err == nil {
|
|
|
|
perm, err := access_model.GetUserRepoPermission(ctx, profileDbRepo, doer)
|
|
|
|
if err == nil && !profileDbRepo.IsEmpty && perm.CanRead(unit.TypeCode) {
|
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>
2024-01-27 13:09:51 -07:00
|
|
|
if profileGitRepo, err = gitrepo.OpenRepository(ctx, profileDbRepo); err != nil {
|
2023-11-13 07:33:22 -07:00
|
|
|
log.Error("FindUserProfileReadme failed to OpenRepository: %v", err)
|
2023-07-06 12:59:24 -06:00
|
|
|
} else {
|
2023-11-13 07:33:22 -07:00
|
|
|
if commit, err := profileGitRepo.GetBranchCommit(profileDbRepo.DefaultBranch); err != nil {
|
|
|
|
log.Error("FindUserProfileReadme failed to GetBranchCommit: %v", err)
|
|
|
|
} else {
|
|
|
|
profileReadmeBlob, _ = commit.GetBlobByPath("README.md")
|
|
|
|
}
|
2023-07-06 12:59:24 -06:00
|
|
|
}
|
2023-05-08 23:57:24 -06:00
|
|
|
}
|
2023-11-13 07:33:22 -07:00
|
|
|
} else if !repo_model.IsErrRepoNotExist(err) {
|
|
|
|
log.Error("FindUserProfileReadme failed to GetRepositoryByName: %v", err)
|
2023-07-06 12:59:24 -06:00
|
|
|
}
|
2023-12-27 01:32:27 -07:00
|
|
|
return profileDbRepo, profileGitRepo, profileReadmeBlob, func() {
|
2023-07-06 12:59:24 -06:00
|
|
|
if profileGitRepo != nil {
|
|
|
|
_ = profileGitRepo.Close()
|
2023-05-08 23:57:24 -06:00
|
|
|
}
|
|
|
|
}
|
2023-01-20 04:42:33 -07:00
|
|
|
}
|
2023-07-06 12:59:24 -06:00
|
|
|
|
|
|
|
func RenderUserHeader(ctx *context.Context) {
|
|
|
|
prepareContextForCommonProfile(ctx)
|
|
|
|
|
2023-12-27 01:32:27 -07:00
|
|
|
_, _, profileReadmeBlob, profileClose := FindUserProfileReadme(ctx, ctx.Doer)
|
2023-07-06 12:59:24 -06:00
|
|
|
defer profileClose()
|
|
|
|
ctx.Data["HasProfileReadme"] = profileReadmeBlob != nil
|
|
|
|
}
|
2023-08-11 11:08:05 -06:00
|
|
|
|
|
|
|
func LoadHeaderCount(ctx *context.Context) error {
|
|
|
|
prepareContextForCommonProfile(ctx)
|
|
|
|
|
|
|
|
repoCount, err := repo_model.CountRepository(ctx, &repo_model.SearchRepoOptions{
|
|
|
|
Actor: ctx.Doer,
|
|
|
|
OwnerID: ctx.ContextUser.ID,
|
|
|
|
Private: ctx.IsSigned,
|
|
|
|
Collaborate: util.OptionalBoolFalse,
|
|
|
|
IncludeDescription: setting.UI.SearchRepoDescription,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ctx.Data["RepoCount"] = repoCount
|
|
|
|
|
2023-11-17 20:02:42 -07:00
|
|
|
var projectType project_model.Type
|
|
|
|
if ctx.ContextUser.IsOrganization() {
|
|
|
|
projectType = project_model.TypeOrganization
|
|
|
|
} else {
|
|
|
|
projectType = project_model.TypeIndividual
|
|
|
|
}
|
2023-11-23 20:49:41 -07:00
|
|
|
projectCount, err := db.Count[project_model.Project](ctx, project_model.SearchOptions{
|
2023-11-17 20:02:42 -07:00
|
|
|
OwnerID: ctx.ContextUser.ID,
|
|
|
|
IsClosed: util.OptionalBoolOf(false),
|
|
|
|
Type: projectType,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ctx.Data["ProjectCount"] = projectCount
|
|
|
|
|
2023-08-11 11:08:05 -06:00
|
|
|
return nil
|
|
|
|
}
|