mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-27 01:24:54 +01:00 
			
		
		
		
	Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
		
			
				
	
	
		
			36 lines
		
	
	
		
			970 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			970 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2021 The Gitea Authors.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package user
 | |
| 
 | |
| import (
 | |
| 	"net/http"
 | |
| 
 | |
| 	user_model "code.gitea.io/gitea/models/user"
 | |
| 	"code.gitea.io/gitea/modules/context"
 | |
| )
 | |
| 
 | |
| // GetUserByParamsName get user by name
 | |
| func GetUserByParamsName(ctx *context.APIContext, name string) *user_model.User {
 | |
| 	username := ctx.Params(name)
 | |
| 	user, err := user_model.GetUserByName(ctx, username)
 | |
| 	if err != nil {
 | |
| 		if user_model.IsErrUserNotExist(err) {
 | |
| 			if redirectUserID, err2 := user_model.LookupUserRedirect(username); err2 == nil {
 | |
| 				context.RedirectToUser(ctx.Context, username, redirectUserID)
 | |
| 			} else {
 | |
| 				ctx.NotFound("GetUserByName", err)
 | |
| 			}
 | |
| 		} else {
 | |
| 			ctx.Error(http.StatusInternalServerError, "GetUserByName", err)
 | |
| 		}
 | |
| 		return nil
 | |
| 	}
 | |
| 	return user
 | |
| }
 | |
| 
 | |
| // GetUserByParams returns user whose name is presented in URL (":username").
 | |
| func GetUserByParams(ctx *context.APIContext) *user_model.User {
 | |
| 	return GetUserByParamsName(ctx, ":username")
 | |
| }
 |