mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-30 06:38:37 -04:00 
			
		
		
		
	Fix missing code in the user profile (#29865)
fix #29820 deleted by https://github.com/go-gitea/gitea/pull/29248/files#diff-2b0b591787f16325539485e648a09ab6d3177f47dc129cfe84a35ffe141dfd19L39-L62, which causing malfunction of follow/unfollow and missing description in the user profile page.
This commit is contained in:
		| @@ -16,6 +16,8 @@ import ( | |||||||
| 	"code.gitea.io/gitea/modules/git" | 	"code.gitea.io/gitea/modules/git" | ||||||
| 	"code.gitea.io/gitea/modules/gitrepo" | 	"code.gitea.io/gitea/modules/gitrepo" | ||||||
| 	"code.gitea.io/gitea/modules/log" | 	"code.gitea.io/gitea/modules/log" | ||||||
|  | 	"code.gitea.io/gitea/modules/markup" | ||||||
|  | 	"code.gitea.io/gitea/modules/markup/markdown" | ||||||
| 	"code.gitea.io/gitea/modules/optional" | 	"code.gitea.io/gitea/modules/optional" | ||||||
| 	"code.gitea.io/gitea/modules/setting" | 	"code.gitea.io/gitea/modules/setting" | ||||||
| 	"code.gitea.io/gitea/services/context" | 	"code.gitea.io/gitea/services/context" | ||||||
| @@ -34,6 +36,7 @@ func prepareContextForCommonProfile(ctx *context.Context) { | |||||||
| func PrepareContextForProfileBigAvatar(ctx *context.Context) { | func PrepareContextForProfileBigAvatar(ctx *context.Context) { | ||||||
| 	prepareContextForCommonProfile(ctx) | 	prepareContextForCommonProfile(ctx) | ||||||
|  |  | ||||||
|  | 	ctx.Data["IsFollowing"] = ctx.Doer != nil && user_model.IsFollowing(ctx, ctx.Doer.ID, ctx.ContextUser.ID) | ||||||
| 	ctx.Data["ShowUserEmail"] = setting.UI.ShowUserEmail && ctx.ContextUser.Email != "" && ctx.IsSigned && !ctx.ContextUser.KeepEmailPrivate | 	ctx.Data["ShowUserEmail"] = setting.UI.ShowUserEmail && ctx.ContextUser.Email != "" && ctx.IsSigned && !ctx.ContextUser.KeepEmailPrivate | ||||||
| 	if setting.Service.UserLocationMapURL != "" { | 	if setting.Service.UserLocationMapURL != "" { | ||||||
| 		ctx.Data["ContextUserLocationMapURL"] = setting.Service.UserLocationMapURL + url.QueryEscape(ctx.ContextUser.Location) | 		ctx.Data["ContextUserLocationMapURL"] = setting.Service.UserLocationMapURL + url.QueryEscape(ctx.ContextUser.Location) | ||||||
| @@ -45,6 +48,17 @@ func PrepareContextForProfileBigAvatar(ctx *context.Context) { | |||||||
| 		return | 		return | ||||||
| 	} | 	} | ||||||
| 	ctx.Data["OpenIDs"] = openIDs | 	ctx.Data["OpenIDs"] = openIDs | ||||||
|  | 	if len(ctx.ContextUser.Description) != 0 { | ||||||
|  | 		content, err := markdown.RenderString(&markup.RenderContext{ | ||||||
|  | 			Metas: map[string]string{"mode": "document"}, | ||||||
|  | 			Ctx:   ctx, | ||||||
|  | 		}, ctx.ContextUser.Description) | ||||||
|  | 		if err != nil { | ||||||
|  | 			ctx.ServerError("RenderString", err) | ||||||
|  | 			return | ||||||
|  | 		} | ||||||
|  | 		ctx.Data["RenderedDescription"] = content | ||||||
|  | 	} | ||||||
|  |  | ||||||
| 	showPrivate := ctx.IsSigned && (ctx.Doer.IsAdmin || ctx.Doer.ID == ctx.ContextUser.ID) | 	showPrivate := ctx.IsSigned && (ctx.Doer.IsAdmin || ctx.Doer.ID == ctx.ContextUser.ID) | ||||||
| 	orgs, err := db.Find[organization.Organization](ctx, organization.FindOrgOptions{ | 	orgs, err := db.Find[organization.Organization](ctx, organization.FindOrgOptions{ | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user