2021-06-08 23:33:54 +00:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-06-08 23:33:54 +00:00
|
|
|
|
|
|
|
package explore
|
|
|
|
|
|
|
|
import (
|
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/context"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/modules/structs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Organizations render explore organizations page
|
|
|
|
func Organizations(ctx *context.Context) {
|
|
|
|
ctx.Data["UsersIsDisabled"] = setting.Service.Explore.DisableUsersPage
|
|
|
|
ctx.Data["Title"] = ctx.Tr("explore")
|
|
|
|
ctx.Data["PageIsExplore"] = true
|
|
|
|
ctx.Data["PageIsExploreOrganizations"] = true
|
|
|
|
ctx.Data["IsRepoIndexerEnabled"] = setting.Indexer.RepoIndexerEnabled
|
|
|
|
|
|
|
|
visibleTypes := []structs.VisibleType{structs.VisibleTypePublic}
|
2022-03-22 07:03:22 +00:00
|
|
|
if ctx.Doer != nil {
|
2021-06-08 23:33:54 +00:00
|
|
|
visibleTypes = append(visibleTypes, structs.VisibleTypeLimited, structs.VisibleTypePrivate)
|
|
|
|
}
|
|
|
|
|
2023-05-06 14:04:55 +00:00
|
|
|
if ctx.FormString("sort") == "" {
|
|
|
|
ctx.SetFormString("sort", UserSearchDefaultSortType)
|
|
|
|
}
|
|
|
|
|
2021-11-24 09:49:20 +00:00
|
|
|
RenderUserSearch(ctx, &user_model.SearchUserOptions{
|
2022-03-22 07:03:22 +00:00
|
|
|
Actor: ctx.Doer,
|
2021-11-24 09:49:20 +00:00
|
|
|
Type: user_model.UserTypeOrganization,
|
2021-09-24 11:32:56 +00:00
|
|
|
ListOptions: db.ListOptions{PageSize: setting.UI.ExplorePagingNum},
|
2021-06-08 23:33:54 +00:00
|
|
|
Visible: visibleTypes,
|
2023-08-11 20:07:04 +00:00
|
|
|
}, tplExploreUsers)
|
2021-06-08 23:33:54 +00:00
|
|
|
}
|