2023-03-12 12:28:18 +00:00
|
|
|
// Copyright 2023 The Forgejo Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package setting
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2023-06-09 20:18:15 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2023-03-12 12:28:18 +00:00
|
|
|
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"
|
|
|
|
|
2023-06-09 20:18:15 +00:00
|
|
|
blockedUsers, err := user_model.ListBlockedUsers(ctx, ctx.Doer.ID, db.ListOptions{})
|
2023-03-12 12:28:18 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("ListBlockedUsers", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["BlockedUsers"] = blockedUsers
|
|
|
|
ctx.HTML(http.StatusOK, tplSettingsBlockedUsers)
|
|
|
|
}
|
2023-06-09 08:07:03 +00:00
|
|
|
|
|
|
|
// 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")
|
|
|
|
}
|