mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 06:24:11 +01:00 
			
		
		
		
	Fixes some problems in #27955: - autofocus of the search box before: if access the home page will jump to the search box  after: will not jump to the search box  - incorrect display of overview tab before:  after:  - improve the permission check to the private profile repo In #26295, we simply added access control to the private profile. But if user have access to the private profile repo , we should also display the profile. - add a button which can jump to the repo list? I agree @wxiaoguang 's opinion here: https://github.com/go-gitea/gitea/pull/27955#issuecomment-1803178239 But it seems that this feature is sponsored. So can we add a button which can quickly jump to the repo list or just move profile to the `overview` page? --------- Co-authored-by: silverwind <me@silverwind.io>
		
			
				
	
	
		
			186 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			186 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2019 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package org
 | 
						|
 | 
						|
import (
 | 
						|
	"net/http"
 | 
						|
	"strings"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/models/db"
 | 
						|
	"code.gitea.io/gitea/models/organization"
 | 
						|
	repo_model "code.gitea.io/gitea/models/repo"
 | 
						|
	user_model "code.gitea.io/gitea/models/user"
 | 
						|
	"code.gitea.io/gitea/modules/base"
 | 
						|
	"code.gitea.io/gitea/modules/context"
 | 
						|
	"code.gitea.io/gitea/modules/git"
 | 
						|
	"code.gitea.io/gitea/modules/log"
 | 
						|
	"code.gitea.io/gitea/modules/markup"
 | 
						|
	"code.gitea.io/gitea/modules/markup/markdown"
 | 
						|
	"code.gitea.io/gitea/modules/setting"
 | 
						|
	shared_user "code.gitea.io/gitea/routers/web/shared/user"
 | 
						|
)
 | 
						|
 | 
						|
const (
 | 
						|
	tplOrgHome base.TplName = "org/home"
 | 
						|
)
 | 
						|
 | 
						|
// Home show organization home page
 | 
						|
func Home(ctx *context.Context) {
 | 
						|
	uname := ctx.Params(":username")
 | 
						|
 | 
						|
	if strings.HasSuffix(uname, ".keys") || strings.HasSuffix(uname, ".gpg") {
 | 
						|
		ctx.NotFound("", nil)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	ctx.SetParams(":org", uname)
 | 
						|
	context.HandleOrgAssignment(ctx)
 | 
						|
	if ctx.Written() {
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	org := ctx.Org.Organization
 | 
						|
 | 
						|
	ctx.Data["PageIsUserProfile"] = true
 | 
						|
	ctx.Data["Title"] = org.DisplayName()
 | 
						|
	if len(org.Description) != 0 {
 | 
						|
		desc, err := markdown.RenderString(&markup.RenderContext{
 | 
						|
			Ctx:       ctx,
 | 
						|
			URLPrefix: ctx.Repo.RepoLink,
 | 
						|
			Metas:     map[string]string{"mode": "document"},
 | 
						|
			GitRepo:   ctx.Repo.GitRepo,
 | 
						|
		}, org.Description)
 | 
						|
		if err != nil {
 | 
						|
			ctx.ServerError("RenderString", err)
 | 
						|
			return
 | 
						|
		}
 | 
						|
		ctx.Data["RenderedDescription"] = desc
 | 
						|
	}
 | 
						|
 | 
						|
	var orderBy db.SearchOrderBy
 | 
						|
	ctx.Data["SortType"] = ctx.FormString("sort")
 | 
						|
	switch ctx.FormString("sort") {
 | 
						|
	case "newest":
 | 
						|
		orderBy = db.SearchOrderByNewest
 | 
						|
	case "oldest":
 | 
						|
		orderBy = db.SearchOrderByOldest
 | 
						|
	case "recentupdate":
 | 
						|
		orderBy = db.SearchOrderByRecentUpdated
 | 
						|
	case "leastupdate":
 | 
						|
		orderBy = db.SearchOrderByLeastUpdated
 | 
						|
	case "reversealphabetically":
 | 
						|
		orderBy = db.SearchOrderByAlphabeticallyReverse
 | 
						|
	case "alphabetically":
 | 
						|
		orderBy = db.SearchOrderByAlphabetically
 | 
						|
	case "moststars":
 | 
						|
		orderBy = db.SearchOrderByStarsReverse
 | 
						|
	case "feweststars":
 | 
						|
		orderBy = db.SearchOrderByStars
 | 
						|
	case "mostforks":
 | 
						|
		orderBy = db.SearchOrderByForksReverse
 | 
						|
	case "fewestforks":
 | 
						|
		orderBy = db.SearchOrderByForks
 | 
						|
	default:
 | 
						|
		ctx.Data["SortType"] = "recentupdate"
 | 
						|
		orderBy = db.SearchOrderByRecentUpdated
 | 
						|
	}
 | 
						|
 | 
						|
	keyword := ctx.FormTrim("q")
 | 
						|
	ctx.Data["Keyword"] = keyword
 | 
						|
 | 
						|
	language := ctx.FormTrim("language")
 | 
						|
	ctx.Data["Language"] = language
 | 
						|
 | 
						|
	page := ctx.FormInt("page")
 | 
						|
	if page <= 0 {
 | 
						|
		page = 1
 | 
						|
	}
 | 
						|
 | 
						|
	var (
 | 
						|
		repos []*repo_model.Repository
 | 
						|
		count int64
 | 
						|
		err   error
 | 
						|
	)
 | 
						|
	repos, count, err = repo_model.SearchRepository(ctx, &repo_model.SearchRepoOptions{
 | 
						|
		ListOptions: db.ListOptions{
 | 
						|
			PageSize: setting.UI.User.RepoPagingNum,
 | 
						|
			Page:     page,
 | 
						|
		},
 | 
						|
		Keyword:            keyword,
 | 
						|
		OwnerID:            org.ID,
 | 
						|
		OrderBy:            orderBy,
 | 
						|
		Private:            ctx.IsSigned,
 | 
						|
		Actor:              ctx.Doer,
 | 
						|
		Language:           language,
 | 
						|
		IncludeDescription: setting.UI.SearchRepoDescription,
 | 
						|
	})
 | 
						|
	if err != nil {
 | 
						|
		ctx.ServerError("SearchRepository", err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	opts := &organization.FindOrgMembersOpts{
 | 
						|
		OrgID:       org.ID,
 | 
						|
		PublicOnly:  ctx.Org.PublicMemberOnly,
 | 
						|
		ListOptions: db.ListOptions{Page: 1, PageSize: 25},
 | 
						|
	}
 | 
						|
	members, _, err := organization.FindOrgMembers(ctx, opts)
 | 
						|
	if err != nil {
 | 
						|
		ctx.ServerError("FindOrgMembers", err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	var isFollowing bool
 | 
						|
	if ctx.Doer != nil {
 | 
						|
		isFollowing = user_model.IsFollowing(ctx, ctx.Doer.ID, ctx.ContextUser.ID)
 | 
						|
	}
 | 
						|
 | 
						|
	ctx.Data["Repos"] = repos
 | 
						|
	ctx.Data["Total"] = count
 | 
						|
	ctx.Data["Members"] = members
 | 
						|
	ctx.Data["Teams"] = ctx.Org.Teams
 | 
						|
	ctx.Data["DisableNewPullMirrors"] = setting.Mirror.DisableNewPull
 | 
						|
	ctx.Data["PageIsViewRepositories"] = true
 | 
						|
	ctx.Data["IsFollowing"] = isFollowing
 | 
						|
 | 
						|
	err = shared_user.LoadHeaderCount(ctx)
 | 
						|
	if err != nil {
 | 
						|
		ctx.ServerError("LoadHeaderCount", err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	pager := context.NewPagination(int(count), setting.UI.User.RepoPagingNum, page, 5)
 | 
						|
	pager.SetDefaultParams(ctx)
 | 
						|
	pager.AddParam(ctx, "language", "Language")
 | 
						|
	ctx.Data["Page"] = pager
 | 
						|
 | 
						|
	ctx.Data["ShowMemberAndTeamTab"] = ctx.Org.IsMember || len(members) > 0
 | 
						|
 | 
						|
	profileGitRepo, profileReadmeBlob, profileClose := shared_user.FindUserProfileReadme(ctx, ctx.Doer)
 | 
						|
	defer profileClose()
 | 
						|
	prepareOrgProfileReadme(ctx, profileGitRepo, profileReadmeBlob)
 | 
						|
 | 
						|
	ctx.HTML(http.StatusOK, tplOrgHome)
 | 
						|
}
 | 
						|
 | 
						|
func prepareOrgProfileReadme(ctx *context.Context, profileGitRepo *git.Repository, profileReadme *git.Blob) {
 | 
						|
	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{
 | 
						|
			Ctx:     ctx,
 | 
						|
			GitRepo: profileGitRepo,
 | 
						|
			Metas:   map[string]string{"mode": "document"},
 | 
						|
		}, bytes); err != nil {
 | 
						|
			log.Error("failed to RenderString: %v", err)
 | 
						|
		} else {
 | 
						|
			ctx.Data["ProfileReadme"] = profileContent
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |