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