mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 14:59:06 +00:00
73776d6195
- Follow up for: #540, #802 - Add API routes for user blocking from user and organization perspective. - The new routes have integration testing. - The new model functions have unit tests. - Actually quite boring to write and to read this pull request. (cherry picked from commitf3afaf15c7
) (cherry picked from commit6d754db3e5
) (cherry picked from commitd0fc8bc9d3
) (cherry picked from commit9a53b0d1a0
) (cherry picked from commit44a2a4fd48
) (cherry picked from commit182025db9c
) (cherry picked from commit558a35963e
)
46 lines
1.3 KiB
Go
46 lines
1.3 KiB
Go
// Copyright 2023 The Forgejo Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package setting
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"code.gitea.io/gitea/models/db"
|
|
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/setting"
|
|
)
|
|
|
|
const (
|
|
tplSettingsBlockedUsers base.TplName = "user/settings/blocked_users"
|
|
)
|
|
|
|
// BlockedUsers render the blocked users list page.
|
|
func BlockedUsers(ctx *context.Context) {
|
|
ctx.Data["Title"] = ctx.Tr("settings.blocked_users")
|
|
ctx.Data["PageIsBlockedUsers"] = true
|
|
ctx.Data["BaseLink"] = setting.AppSubURL + "/user/settings/blocked_users"
|
|
ctx.Data["BaseLinkNew"] = setting.AppSubURL + "/user/settings/blocked_users"
|
|
|
|
blockedUsers, err := user_model.ListBlockedUsers(ctx, ctx.Doer.ID, db.ListOptions{})
|
|
if err != nil {
|
|
ctx.ServerError("ListBlockedUsers", err)
|
|
return
|
|
}
|
|
|
|
ctx.Data["BlockedUsers"] = blockedUsers
|
|
ctx.HTML(http.StatusOK, tplSettingsBlockedUsers)
|
|
}
|
|
|
|
// UnblockUser unblocks a particular user for the doer.
|
|
func UnblockUser(ctx *context.Context) {
|
|
if err := user_model.UnblockUser(ctx, ctx.Doer.ID, ctx.FormInt64("user_id")); err != nil {
|
|
ctx.ServerError("UnblockUser", err)
|
|
return
|
|
}
|
|
|
|
ctx.Flash.Success(ctx.Tr("settings.user_unblock_success"))
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/blocked_users")
|
|
}
|