2021-06-08 23:33:54 +00:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package explore
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"net/http"
|
|
|
|
|
2021-09-24 11:32:56 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-06-08 23:33:54 +00:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/modules/structs"
|
|
|
|
"code.gitea.io/gitea/modules/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// tplExploreUsers explore users page template
|
|
|
|
tplExploreUsers base.TplName = "explore/users"
|
|
|
|
)
|
|
|
|
|
2021-10-12 18:11:35 +00:00
|
|
|
// UserSearchDefaultSortType is the default sort type for user search
|
|
|
|
const UserSearchDefaultSortType = "alphabetically"
|
|
|
|
|
2022-01-20 17:46:10 +00:00
|
|
|
var nullByte = []byte{0x00}
|
2021-06-08 23:33:54 +00:00
|
|
|
|
|
|
|
func isKeywordValid(keyword string) bool {
|
|
|
|
return !bytes.Contains([]byte(keyword), nullByte)
|
|
|
|
}
|
|
|
|
|
|
|
|
// RenderUserSearch render user search page
|
2021-11-24 09:49:20 +00:00
|
|
|
func RenderUserSearch(ctx *context.Context, opts *user_model.SearchUserOptions, tplName base.TplName) {
|
2021-07-29 01:42:15 +00:00
|
|
|
opts.Page = ctx.FormInt("page")
|
2021-06-08 23:33:54 +00:00
|
|
|
if opts.Page <= 1 {
|
|
|
|
opts.Page = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2021-11-24 09:49:20 +00:00
|
|
|
users []*user_model.User
|
2021-06-08 23:33:54 +00:00
|
|
|
count int64
|
|
|
|
err error
|
2021-11-24 09:49:20 +00:00
|
|
|
orderBy db.SearchOrderBy
|
2021-06-08 23:33:54 +00:00
|
|
|
)
|
|
|
|
|
2021-10-12 18:11:35 +00:00
|
|
|
// we can not set orderBy to `models.SearchOrderByXxx`, because there may be a JOIN in the statement, different tables may have the same name columns
|
2021-08-11 00:31:13 +00:00
|
|
|
ctx.Data["SortType"] = ctx.FormString("sort")
|
|
|
|
switch ctx.FormString("sort") {
|
2021-06-08 23:33:54 +00:00
|
|
|
case "newest":
|
2021-10-12 18:11:35 +00:00
|
|
|
orderBy = "`user`.id DESC"
|
2021-06-08 23:33:54 +00:00
|
|
|
case "oldest":
|
2021-10-12 18:11:35 +00:00
|
|
|
orderBy = "`user`.id ASC"
|
2021-06-08 23:33:54 +00:00
|
|
|
case "recentupdate":
|
2021-10-12 18:11:35 +00:00
|
|
|
orderBy = "`user`.updated_unix DESC"
|
2021-06-08 23:33:54 +00:00
|
|
|
case "leastupdate":
|
2021-10-12 18:11:35 +00:00
|
|
|
orderBy = "`user`.updated_unix ASC"
|
2021-06-08 23:33:54 +00:00
|
|
|
case "reversealphabetically":
|
2021-10-12 18:11:35 +00:00
|
|
|
orderBy = "`user`.name DESC"
|
|
|
|
case UserSearchDefaultSortType: // "alphabetically"
|
2021-06-08 23:33:54 +00:00
|
|
|
default:
|
2021-10-12 18:11:35 +00:00
|
|
|
orderBy = "`user`.name ASC"
|
|
|
|
ctx.Data["SortType"] = UserSearchDefaultSortType
|
2021-06-08 23:33:54 +00:00
|
|
|
}
|
|
|
|
|
2021-08-11 15:08:52 +00:00
|
|
|
opts.Keyword = ctx.FormTrim("q")
|
2021-06-08 23:33:54 +00:00
|
|
|
opts.OrderBy = orderBy
|
|
|
|
if len(opts.Keyword) == 0 || isKeywordValid(opts.Keyword) {
|
2021-11-24 09:49:20 +00:00
|
|
|
users, count, err = user_model.SearchUsers(opts)
|
2021-06-08 23:33:54 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("SearchUsers", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Data["Keyword"] = opts.Keyword
|
|
|
|
ctx.Data["Total"] = count
|
|
|
|
ctx.Data["Users"] = users
|
2021-11-28 14:11:58 +00:00
|
|
|
ctx.Data["UsersTwoFaStatus"] = user_model.UserList(users).GetTwoFaStatus()
|
2021-06-08 23:33:54 +00:00
|
|
|
ctx.Data["ShowUserEmail"] = setting.UI.ShowUserEmail
|
|
|
|
ctx.Data["IsRepoIndexerEnabled"] = setting.Indexer.RepoIndexerEnabled
|
|
|
|
|
|
|
|
pager := context.NewPagination(int(count), opts.PageSize, opts.Page, 5)
|
|
|
|
pager.SetDefaultParams(ctx)
|
2022-03-02 15:30:14 +00:00
|
|
|
for paramKey, paramVal := range opts.ExtraParamStrings {
|
|
|
|
pager.AddParamString(paramKey, paramVal)
|
|
|
|
}
|
2021-06-08 23:33:54 +00:00
|
|
|
ctx.Data["Page"] = pager
|
|
|
|
|
|
|
|
ctx.HTML(http.StatusOK, tplName)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Users render explore users page
|
|
|
|
func Users(ctx *context.Context) {
|
|
|
|
if setting.Service.Explore.DisableUsersPage {
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/explore/repos")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Title"] = ctx.Tr("explore")
|
|
|
|
ctx.Data["PageIsExplore"] = true
|
|
|
|
ctx.Data["PageIsExploreUsers"] = true
|
|
|
|
ctx.Data["IsRepoIndexerEnabled"] = setting.Indexer.RepoIndexerEnabled
|
|
|
|
|
2021-11-24 09:49:20 +00:00
|
|
|
RenderUserSearch(ctx, &user_model.SearchUserOptions{
|
2021-06-08 23:33:54 +00:00
|
|
|
Actor: ctx.User,
|
2021-11-24 09:49:20 +00:00
|
|
|
Type: user_model.UserTypeIndividual,
|
2021-09-24 11:32:56 +00:00
|
|
|
ListOptions: db.ListOptions{PageSize: setting.UI.ExplorePagingNum},
|
2021-06-08 23:33:54 +00:00
|
|
|
IsActive: util.OptionalBoolTrue,
|
|
|
|
Visible: []structs.VisibleType{structs.VisibleTypePublic, structs.VisibleTypeLimited, structs.VisibleTypePrivate},
|
|
|
|
}, tplExploreUsers)
|
|
|
|
}
|