2021-06-09 01:33:54 +02:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-06-09 01:33:54 +02:00
|
|
|
|
|
|
|
package explore
|
|
|
|
|
|
|
|
import (
|
2021-09-24 13:32:56 +02:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-11-24 10:49:20 +01:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-06-09 01:33:54 +02: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 08:03:22 +01:00
|
|
|
if ctx.Doer != nil {
|
2021-06-09 01:33:54 +02:00
|
|
|
visibleTypes = append(visibleTypes, structs.VisibleTypeLimited, structs.VisibleTypePrivate)
|
|
|
|
}
|
|
|
|
|
2023-05-06 16:04:55 +02:00
|
|
|
if ctx.FormString("sort") == "" {
|
2023-11-09 11:11:45 +01:00
|
|
|
ctx.SetFormString("sort", setting.UI.ExploreDefaultSort)
|
2023-05-06 16:04:55 +02:00
|
|
|
}
|
|
|
|
|
2021-11-24 10:49:20 +01:00
|
|
|
RenderUserSearch(ctx, &user_model.SearchUserOptions{
|
2022-03-22 08:03:22 +01:00
|
|
|
Actor: ctx.Doer,
|
2021-11-24 10:49:20 +01:00
|
|
|
Type: user_model.UserTypeOrganization,
|
2021-09-24 13:32:56 +02:00
|
|
|
ListOptions: db.ListOptions{PageSize: setting.UI.ExplorePagingNum},
|
2021-06-09 01:33:54 +02:00
|
|
|
Visible: visibleTypes,
|
2023-08-11 22:07:04 +02:00
|
|
|
}, tplExploreUsers)
|
2021-06-09 01:33:54 +02:00
|
|
|
}
|