2019-12-14 07:36:59 +01:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-12-14 07:36:59 +01:00
|
|
|
|
|
|
|
package org
|
|
|
|
|
|
|
|
import (
|
2021-04-05 17:30:52 +02:00
|
|
|
"net/http"
|
2024-01-15 09:49:24 +01:00
|
|
|
"path"
|
2022-03-02 02:37:32 +01:00
|
|
|
"strings"
|
2019-12-14 07:36:59 +01:00
|
|
|
|
2021-09-24 13:32:56 +02:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-03-29 08:29:02 +02:00
|
|
|
"code.gitea.io/gitea/models/organization"
|
2021-12-10 02:27:50 +01:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2023-04-29 21:13:58 +02:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2019-12-14 07:36:59 +01:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2023-11-09 15:05:52 +01:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
2021-04-20 00:25:08 +02:00
|
|
|
"code.gitea.io/gitea/modules/markup"
|
2020-11-15 17:28:08 +01:00
|
|
|
"code.gitea.io/gitea/modules/markup/markdown"
|
2019-12-14 07:36:59 +01:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2023-12-27 09:32:27 +01:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2023-08-11 19:08:05 +02:00
|
|
|
shared_user "code.gitea.io/gitea/routers/web/shared/user"
|
2019-12-14 07:36:59 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
tplOrgHome base.TplName = "org/home"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Home show organization home page
|
|
|
|
func Home(ctx *context.Context) {
|
2022-03-02 02:37:32 +01:00
|
|
|
uname := ctx.Params(":username")
|
|
|
|
|
|
|
|
if strings.HasSuffix(uname, ".keys") || strings.HasSuffix(uname, ".gpg") {
|
|
|
|
ctx.NotFound("", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.SetParams(":org", uname)
|
2019-12-14 07:36:59 +01:00
|
|
|
context.HandleOrgAssignment(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
org := ctx.Org.Organization
|
|
|
|
|
2020-09-11 08:41:43 +02:00
|
|
|
ctx.Data["PageIsUserProfile"] = true
|
2019-12-14 07:36:59 +01:00
|
|
|
ctx.Data["Title"] = org.DisplayName()
|
2020-11-15 17:28:08 +01:00
|
|
|
if len(org.Description) != 0 {
|
2021-04-20 00:25:08 +02:00
|
|
|
desc, err := markdown.RenderString(&markup.RenderContext{
|
2024-01-15 09:49:24 +01:00
|
|
|
Ctx: ctx,
|
|
|
|
Metas: map[string]string{"mode": "document"},
|
2021-04-20 00:25:08 +02:00
|
|
|
}, org.Description)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("RenderString", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["RenderedDescription"] = desc
|
2020-11-15 17:28:08 +01:00
|
|
|
}
|
2019-12-14 07:36:59 +01:00
|
|
|
|
2021-11-24 10:49:20 +01:00
|
|
|
var orderBy db.SearchOrderBy
|
2021-08-11 02:31:13 +02:00
|
|
|
ctx.Data["SortType"] = ctx.FormString("sort")
|
|
|
|
switch ctx.FormString("sort") {
|
2019-12-14 07:36:59 +01:00
|
|
|
case "newest":
|
2021-11-24 10:49:20 +01:00
|
|
|
orderBy = db.SearchOrderByNewest
|
2019-12-14 07:36:59 +01:00
|
|
|
case "oldest":
|
2021-11-24 10:49:20 +01:00
|
|
|
orderBy = db.SearchOrderByOldest
|
2019-12-14 07:36:59 +01:00
|
|
|
case "recentupdate":
|
2021-11-24 10:49:20 +01:00
|
|
|
orderBy = db.SearchOrderByRecentUpdated
|
2019-12-14 07:36:59 +01:00
|
|
|
case "leastupdate":
|
2021-11-24 10:49:20 +01:00
|
|
|
orderBy = db.SearchOrderByLeastUpdated
|
2019-12-14 07:36:59 +01:00
|
|
|
case "reversealphabetically":
|
2021-11-24 10:49:20 +01:00
|
|
|
orderBy = db.SearchOrderByAlphabeticallyReverse
|
2019-12-14 07:36:59 +01:00
|
|
|
case "alphabetically":
|
2021-11-24 10:49:20 +01:00
|
|
|
orderBy = db.SearchOrderByAlphabetically
|
2019-12-14 07:36:59 +01:00
|
|
|
case "moststars":
|
2021-11-24 10:49:20 +01:00
|
|
|
orderBy = db.SearchOrderByStarsReverse
|
2019-12-14 07:36:59 +01:00
|
|
|
case "feweststars":
|
2021-11-24 10:49:20 +01:00
|
|
|
orderBy = db.SearchOrderByStars
|
2019-12-14 07:36:59 +01:00
|
|
|
case "mostforks":
|
2021-11-24 10:49:20 +01:00
|
|
|
orderBy = db.SearchOrderByForksReverse
|
2019-12-14 07:36:59 +01:00
|
|
|
case "fewestforks":
|
2021-11-24 10:49:20 +01:00
|
|
|
orderBy = db.SearchOrderByForks
|
2019-12-14 07:36:59 +01:00
|
|
|
default:
|
|
|
|
ctx.Data["SortType"] = "recentupdate"
|
2021-11-24 10:49:20 +01:00
|
|
|
orderBy = db.SearchOrderByRecentUpdated
|
2019-12-14 07:36:59 +01:00
|
|
|
}
|
|
|
|
|
2021-08-11 17:08:52 +02:00
|
|
|
keyword := ctx.FormTrim("q")
|
2019-12-14 07:36:59 +01:00
|
|
|
ctx.Data["Keyword"] = keyword
|
|
|
|
|
2022-01-28 12:29:04 +01:00
|
|
|
language := ctx.FormTrim("language")
|
|
|
|
ctx.Data["Language"] = language
|
|
|
|
|
2021-07-29 03:42:15 +02:00
|
|
|
page := ctx.FormInt("page")
|
2019-12-14 07:36:59 +01:00
|
|
|
if page <= 0 {
|
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2021-12-10 02:27:50 +01:00
|
|
|
repos []*repo_model.Repository
|
2019-12-14 07:36:59 +01:00
|
|
|
count int64
|
|
|
|
err error
|
|
|
|
)
|
2022-11-19 09:12:33 +01:00
|
|
|
repos, count, err = repo_model.SearchRepository(ctx, &repo_model.SearchRepoOptions{
|
2021-09-24 13:32:56 +02:00
|
|
|
ListOptions: db.ListOptions{
|
2020-01-24 20:00:29 +01:00
|
|
|
PageSize: setting.UI.User.RepoPagingNum,
|
|
|
|
Page: page,
|
|
|
|
},
|
2019-12-14 07:36:59 +01:00
|
|
|
Keyword: keyword,
|
|
|
|
OwnerID: org.ID,
|
|
|
|
OrderBy: orderBy,
|
|
|
|
Private: ctx.IsSigned,
|
2022-03-22 08:03:22 +01:00
|
|
|
Actor: ctx.Doer,
|
2022-01-28 12:29:04 +01:00
|
|
|
Language: language,
|
2019-12-14 07:36:59 +01:00
|
|
|
IncludeDescription: setting.UI.SearchRepoDescription,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("SearchRepository", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-29 08:29:02 +02:00
|
|
|
opts := &organization.FindOrgMembersOpts{
|
2020-01-24 20:00:29 +01:00
|
|
|
OrgID: org.ID,
|
2023-08-15 16:00:35 +02:00
|
|
|
PublicOnly: ctx.Org.PublicMemberOnly,
|
2021-09-24 13:32:56 +02:00
|
|
|
ListOptions: db.ListOptions{Page: 1, PageSize: 25},
|
2019-12-14 07:36:59 +01:00
|
|
|
}
|
2023-09-14 19:09:32 +02:00
|
|
|
members, _, err := organization.FindOrgMembers(ctx, opts)
|
2019-12-14 07:36:59 +01:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("FindOrgMembers", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-04-29 21:13:58 +02:00
|
|
|
var isFollowing bool
|
|
|
|
if ctx.Doer != nil {
|
2023-09-16 16:39:12 +02:00
|
|
|
isFollowing = user_model.IsFollowing(ctx, ctx.Doer.ID, ctx.ContextUser.ID)
|
2023-04-29 21:13:58 +02:00
|
|
|
}
|
|
|
|
|
2019-12-14 07:36:59 +01:00
|
|
|
ctx.Data["Repos"] = repos
|
|
|
|
ctx.Data["Total"] = count
|
|
|
|
ctx.Data["Members"] = members
|
2021-11-19 12:41:40 +01:00
|
|
|
ctx.Data["Teams"] = ctx.Org.Teams
|
2021-09-07 17:49:36 +02:00
|
|
|
ctx.Data["DisableNewPullMirrors"] = setting.Mirror.DisableNewPull
|
2021-11-24 17:12:54 +01:00
|
|
|
ctx.Data["PageIsViewRepositories"] = true
|
2023-04-29 21:13:58 +02:00
|
|
|
ctx.Data["IsFollowing"] = isFollowing
|
2020-10-24 01:01:58 +02:00
|
|
|
|
2023-08-11 19:08:05 +02:00
|
|
|
err = shared_user.LoadHeaderCount(ctx)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("LoadHeaderCount", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-12-14 07:36:59 +01:00
|
|
|
pager := context.NewPagination(int(count), setting.UI.User.RepoPagingNum, page, 5)
|
|
|
|
pager.SetDefaultParams(ctx)
|
2022-01-28 12:29:04 +01:00
|
|
|
pager.AddParam(ctx, "language", "Language")
|
2019-12-14 07:36:59 +01:00
|
|
|
ctx.Data["Page"] = pager
|
|
|
|
|
2023-08-15 16:00:35 +02:00
|
|
|
ctx.Data["ShowMemberAndTeamTab"] = ctx.Org.IsMember || len(members) > 0
|
|
|
|
|
2023-12-27 09:32:27 +01:00
|
|
|
profileDbRepo, profileGitRepo, profileReadmeBlob, profileClose := shared_user.FindUserProfileReadme(ctx, ctx.Doer)
|
2023-11-09 15:05:52 +01:00
|
|
|
defer profileClose()
|
2023-12-27 09:32:27 +01:00
|
|
|
prepareOrgProfileReadme(ctx, profileGitRepo, profileDbRepo, profileReadmeBlob)
|
2023-11-09 15:05:52 +01:00
|
|
|
|
2021-04-05 17:30:52 +02:00
|
|
|
ctx.HTML(http.StatusOK, tplOrgHome)
|
2019-12-14 07:36:59 +01:00
|
|
|
}
|
2023-11-09 15:05:52 +01:00
|
|
|
|
2023-12-27 09:32:27 +01:00
|
|
|
func prepareOrgProfileReadme(ctx *context.Context, profileGitRepo *git.Repository, profileDbRepo *repo_model.Repository, profileReadme *git.Blob) {
|
2023-11-09 15:05:52 +01:00
|
|
|
if profileGitRepo == nil || profileReadme == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if bytes, err := profileReadme.GetBlobContent(setting.UI.MaxDisplayFileSize); err != nil {
|
|
|
|
log.Error("failed to GetBlobContent: %v", err)
|
|
|
|
} else {
|
|
|
|
if profileContent, err := markdown.RenderString(&markup.RenderContext{
|
2024-01-15 09:49:24 +01:00
|
|
|
Ctx: ctx,
|
|
|
|
GitRepo: profileGitRepo,
|
|
|
|
Links: markup.Links{
|
|
|
|
// Pass repo link to markdown render for the full link of media elements.
|
|
|
|
// The profile of default branch would be shown.
|
|
|
|
Base: profileDbRepo.Link(),
|
|
|
|
BranchPath: path.Join("branch", util.PathEscapeSegments(profileDbRepo.DefaultBranch)),
|
|
|
|
},
|
|
|
|
Metas: map[string]string{"mode": "document"},
|
2023-11-09 15:05:52 +01:00
|
|
|
}, bytes); err != nil {
|
|
|
|
log.Error("failed to RenderString: %v", err)
|
|
|
|
} else {
|
|
|
|
ctx.Data["ProfileReadme"] = profileContent
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|