 d50efa626a
			
		
	
	
	d50efa626a
	
	
	
		
			
			Fixes #3595 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/3601 Reviewed-by: Otto <otto@codeberg.org> Co-authored-by: JakobDev <jakobdev@gmx.de> Co-committed-by: JakobDev <jakobdev@gmx.de>
		
			
				
	
	
		
			85 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2023 The Forgejo Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package setting
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"net/http"
 | |
| 	"strings"
 | |
| 
 | |
| 	"code.gitea.io/gitea/models/db"
 | |
| 	user_model "code.gitea.io/gitea/models/user"
 | |
| 	shared_user "code.gitea.io/gitea/routers/web/shared/user"
 | |
| 	"code.gitea.io/gitea/services/context"
 | |
| 	user_service "code.gitea.io/gitea/services/user"
 | |
| )
 | |
| 
 | |
| const tplBlockedUsers = "org/settings/blocked_users"
 | |
| 
 | |
| // BlockedUsers renders the blocked users page.
 | |
| func BlockedUsers(ctx *context.Context) {
 | |
| 	ctx.Data["Title"] = ctx.Tr("settings.blocked_users")
 | |
| 	ctx.Data["PageIsSettingsBlockedUsers"] = true
 | |
| 
 | |
| 	blockedUsers, err := user_model.ListBlockedUsers(ctx, ctx.Org.Organization.ID, db.ListOptions{})
 | |
| 	if err != nil {
 | |
| 		ctx.ServerError("ListBlockedUsers", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	err = shared_user.LoadHeaderCount(ctx)
 | |
| 	if err != nil {
 | |
| 		ctx.ServerError("LoadHeaderCount", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	ctx.Data["BlockedUsers"] = blockedUsers
 | |
| 
 | |
| 	ctx.HTML(http.StatusOK, tplBlockedUsers)
 | |
| }
 | |
| 
 | |
| // BlockedUsersBlock blocks a particular user from the organization.
 | |
| func BlockedUsersBlock(ctx *context.Context) {
 | |
| 	uname := strings.ToLower(ctx.FormString("uname"))
 | |
| 	u, err := user_model.GetUserByName(ctx, uname)
 | |
| 	if err != nil {
 | |
| 		ctx.ServerError("GetUserByName", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if u.IsOrganization() {
 | |
| 		ctx.ServerError("IsOrganization", fmt.Errorf("%s is an organization not a user", u.Name))
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if err := user_service.BlockUser(ctx, ctx.Org.Organization.ID, u.ID); err != nil {
 | |
| 		ctx.ServerError("BlockUser", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	ctx.Flash.Success(ctx.Tr("settings.user_block_success"))
 | |
| 	ctx.Redirect(ctx.Org.OrgLink + "/settings/blocked_users")
 | |
| }
 | |
| 
 | |
| // BlockedUsersUnblock unblocks a particular user from the organization.
 | |
| func BlockedUsersUnblock(ctx *context.Context) {
 | |
| 	u, err := user_model.GetUserByID(ctx, ctx.FormInt64("user_id"))
 | |
| 	if err != nil {
 | |
| 		ctx.ServerError("GetUserByID", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if u.IsOrganization() {
 | |
| 		ctx.ServerError("IsOrganization", fmt.Errorf("%s is an organization not a user", u.Name))
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if err := user_model.UnblockUser(ctx, ctx.Org.Organization.ID, u.ID); err != nil {
 | |
| 		ctx.ServerError("UnblockUser", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	ctx.Flash.Success(ctx.Tr("settings.user_unblock_success"))
 | |
| 	ctx.Redirect(ctx.Org.OrgLink + "/settings/blocked_users")
 | |
| }
 |