mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
bc0d2c8ada
* support for repos * refactor * advertise the feeds via meta tags * allow feed suffix and feed header * optimize performance
45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package feed
|
|
|
|
import (
|
|
"time"
|
|
|
|
"code.gitea.io/gitea/models"
|
|
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 := models.GetFeeds(ctx, models.GetFeedsOptions{
|
|
RequestedRepo: repo,
|
|
Actor: ctx.User,
|
|
IncludePrivate: true,
|
|
Date: ctx.FormString("date"),
|
|
})
|
|
if err != nil {
|
|
ctx.ServerError("GetFeeds", err)
|
|
return
|
|
}
|
|
|
|
feed := &feeds.Feed{
|
|
Title: ctx.Tr("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)
|
|
}
|