mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	Clarify when "string" should be used (and be escaped), and when "template.HTML" should be used (no need to escape) And help PRs like #29059 , to render the error messages correctly. (cherry picked from commit f3eb835886031df7a562abc123c3f6011c81eca8) Conflicts: modules/web/middleware/binding.go routers/web/feed/convert.go tests/integration/branches_test.go tests/integration/repo_branch_test.go trivial context conflicts
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2022 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package feed
 | 
						|
 | 
						|
import (
 | 
						|
	"time"
 | 
						|
 | 
						|
	activities_model "code.gitea.io/gitea/models/activities"
 | 
						|
	repo_model "code.gitea.io/gitea/models/repo"
 | 
						|
	"code.gitea.io/gitea/modules/context"
 | 
						|
 | 
						|
	"github.com/gorilla/feeds"
 | 
						|
)
 | 
						|
 | 
						|
// ShowRepoFeed shows user activity on the repo as RSS / Atom feed
 | 
						|
func ShowRepoFeed(ctx *context.Context, repo *repo_model.Repository, formatType string) {
 | 
						|
	actions, _, err := activities_model.GetFeeds(ctx, activities_model.GetFeedsOptions{
 | 
						|
		RequestedRepo:  repo,
 | 
						|
		Actor:          ctx.Doer,
 | 
						|
		IncludePrivate: true,
 | 
						|
		Date:           ctx.FormString("date"),
 | 
						|
	})
 | 
						|
	if err != nil {
 | 
						|
		ctx.ServerError("GetFeeds", err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	feed := &feeds.Feed{
 | 
						|
		Title:       ctx.Locale.TrString("home.feed_of", repo.FullName()),
 | 
						|
		Link:        &feeds.Link{Href: repo.HTMLURL()},
 | 
						|
		Description: repo.Description,
 | 
						|
		Created:     time.Now(),
 | 
						|
	}
 | 
						|
 | 
						|
	feed.Items, err = feedActionsToFeedItems(ctx, actions)
 | 
						|
	if err != nil {
 | 
						|
		ctx.ServerError("convert feed", err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	writeFeed(ctx, feed, formatType)
 | 
						|
}
 |