2021-10-16 16:21:16 +02:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-10-16 16:21:16 +02:00
|
|
|
|
|
|
|
package feed
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
2022-08-25 04:31:57 +02:00
|
|
|
activities_model "code.gitea.io/gitea/models/activities"
|
2023-04-04 05:39:47 +02:00
|
|
|
"code.gitea.io/gitea/modules/markup"
|
|
|
|
"code.gitea.io/gitea/modules/markup/markdown"
|
2024-02-27 08:12:22 +01:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2021-10-16 16:21:16 +02:00
|
|
|
|
|
|
|
"github.com/gorilla/feeds"
|
|
|
|
)
|
|
|
|
|
2022-03-26 10:04:22 +01:00
|
|
|
// 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) {
|
2022-10-07 23:06:04 +02:00
|
|
|
includePrivate := ctx.IsSigned && (ctx.Doer.IsAdmin || ctx.Doer.ID == ctx.ContextUser.ID)
|
|
|
|
|
2023-02-24 22:15:10 +01:00
|
|
|
actions, _, err := activities_model.GetFeeds(ctx, activities_model.GetFeedsOptions{
|
2022-03-26 10:04:22 +01:00
|
|
|
RequestedUser: ctx.ContextUser,
|
2022-03-22 08:03:22 +01:00
|
|
|
Actor: ctx.Doer,
|
2022-10-07 23:06:04 +02:00
|
|
|
IncludePrivate: includePrivate,
|
2022-03-26 10:04:22 +01:00
|
|
|
OnlyPerformedBy: !ctx.ContextUser.IsOrganization(),
|
2021-10-16 16:21:16 +02:00
|
|
|
IncludeDeleted: false,
|
|
|
|
Date: ctx.FormString("date"),
|
|
|
|
})
|
2022-03-13 17:40:47 +01:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetFeeds", err)
|
2021-10-16 16:21:16 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-04-04 05:39:47 +02:00
|
|
|
ctxUserDescription, err := markdown.RenderString(&markup.RenderContext{
|
2024-01-15 09:49:24 +01:00
|
|
|
Ctx: ctx,
|
|
|
|
Links: markup.Links{
|
|
|
|
Base: ctx.ContextUser.HTMLURL(),
|
|
|
|
},
|
2023-04-04 05:39:47 +02:00
|
|
|
Metas: map[string]string{
|
|
|
|
"user": ctx.ContextUser.GetDisplayName(),
|
|
|
|
},
|
|
|
|
}, ctx.ContextUser.Description)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("RenderString", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-10-16 16:21:16 +02:00
|
|
|
feed := &feeds.Feed{
|
2024-02-14 22:48:45 +01:00
|
|
|
Title: ctx.Locale.TrString("home.feed_of", ctx.ContextUser.DisplayName()),
|
2022-03-26 10:04:22 +01:00
|
|
|
Link: &feeds.Link{Href: ctx.ContextUser.HTMLURL()},
|
2024-03-01 08:11:51 +01:00
|
|
|
Description: string(ctxUserDescription),
|
2021-10-16 16:21:16 +02:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|