mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-27 04:21:11 +00:00 
			
		
		
		
	This PR touches the most interesting part of the "template refactoring".
1. Unclear variable type. Especially for "web/feed/convert.go":
sometimes it uses text, sometimes it uses HTML.
2. Assign text content to "RenderedContent" field, for example: `
project.RenderedContent = project.Description` in web/org/projects.go
3. Assign rendered content to text field, for example: `r.Note =
rendered content` in web/repo/release.go
4. (possible) Incorrectly calling `{{Str2html
.PackageDescriptor.Metadata.ReleaseNotes}}` in
package/content/nuget.tmpl, I guess the name Str2html misleads
developers to use it to "render string to html", but it only sanitizes.
if ReleaseNotes really contains HTML, then this is not a problem.
(cherry picked from commit e71eb8930a5d0f60874b038c223498b41ad65592)
Conflicts:
	modules/templates/util_string.go
	trivial context conflict
		
	
			
		
			
				
	
	
		
			87 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2021 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package feed
 | |
| 
 | |
| import (
 | |
| 	"time"
 | |
| 
 | |
| 	activities_model "code.gitea.io/gitea/models/activities"
 | |
| 	"code.gitea.io/gitea/modules/markup"
 | |
| 	"code.gitea.io/gitea/modules/markup/markdown"
 | |
| 	"code.gitea.io/gitea/services/context"
 | |
| 
 | |
| 	"github.com/gorilla/feeds"
 | |
| )
 | |
| 
 | |
| // ShowUserFeedRSS show user activity as RSS feed
 | |
| func ShowUserFeedRSS(ctx *context.Context) {
 | |
| 	showUserFeed(ctx, "rss")
 | |
| }
 | |
| 
 | |
| // ShowUserFeedAtom show user activity as Atom feed
 | |
| func ShowUserFeedAtom(ctx *context.Context) {
 | |
| 	showUserFeed(ctx, "atom")
 | |
| }
 | |
| 
 | |
| // showUserFeed show user activity as RSS / Atom feed
 | |
| func showUserFeed(ctx *context.Context, formatType string) {
 | |
| 	includePrivate := ctx.IsSigned && (ctx.Doer.IsAdmin || ctx.Doer.ID == ctx.ContextUser.ID)
 | |
| 
 | |
| 	actions, _, err := activities_model.GetFeeds(ctx, activities_model.GetFeedsOptions{
 | |
| 		RequestedUser:   ctx.ContextUser,
 | |
| 		Actor:           ctx.Doer,
 | |
| 		IncludePrivate:  includePrivate,
 | |
| 		OnlyPerformedBy: !ctx.ContextUser.IsOrganization(),
 | |
| 		IncludeDeleted:  false,
 | |
| 		Date:            ctx.FormString("date"),
 | |
| 	})
 | |
| 	if err != nil {
 | |
| 		ctx.ServerError("GetFeeds", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	ctxUserDescription, err := markdown.RenderString(&markup.RenderContext{
 | |
| 		Ctx: ctx,
 | |
| 		Links: markup.Links{
 | |
| 			Base: ctx.ContextUser.HTMLURL(),
 | |
| 		},
 | |
| 		Metas: map[string]string{
 | |
| 			"user": ctx.ContextUser.GetDisplayName(),
 | |
| 		},
 | |
| 	}, ctx.ContextUser.Description)
 | |
| 	if err != nil {
 | |
| 		ctx.ServerError("RenderString", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	feed := &feeds.Feed{
 | |
| 		Title:       ctx.Locale.TrString("home.feed_of", ctx.ContextUser.DisplayName()),
 | |
| 		Link:        &feeds.Link{Href: ctx.ContextUser.HTMLURL()},
 | |
| 		Description: string(ctxUserDescription),
 | |
| 		Created:     time.Now(),
 | |
| 	}
 | |
| 
 | |
| 	feed.Items, err = feedActionsToFeedItems(ctx, actions)
 | |
| 	if err != nil {
 | |
| 		ctx.ServerError("convert feed", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	writeFeed(ctx, feed, formatType)
 | |
| }
 | |
| 
 | |
| // writeFeed write a feeds.Feed as atom or rss to ctx.Resp
 | |
| func writeFeed(ctx *context.Context, feed *feeds.Feed, formatType string) {
 | |
| 	if formatType == "atom" {
 | |
| 		ctx.Resp.Header().Set("Content-Type", "application/atom+xml;charset=utf-8")
 | |
| 		if err := feed.WriteAtom(ctx.Resp); err != nil {
 | |
| 			ctx.ServerError("Render Atom failed", err)
 | |
| 		}
 | |
| 	} else {
 | |
| 		ctx.Resp.Header().Set("Content-Type", "application/rss+xml;charset=utf-8")
 | |
| 		if err := feed.WriteRss(ctx.Resp); err != nil {
 | |
| 			ctx.ServerError("Render RSS failed", err)
 | |
| 		}
 | |
| 	}
 | |
| }
 |